You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
;;; load-relative-autoloads.el --- automatically extracted autoloads;;;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "load-relative" "load-relative.el" (0 0 0 0));;; Generated autoloads from load-relative.el
(autoload '__FILE__ "load-relative" "\
Return the string name of file/buffer that is currently begin executed.
The first approach for getting this information is perhaps themost pervasive and reliable. But it the most low-level and notpart of a public API, so it might change in futureimplementations. This method uses the name that is recorded byreadevalloop of `lread.c' as the car of variable`current-load-list'.
Failing that, we use `load-file-name' which should work in somesubset of the same places that the first method works. However`load-file-name' will be nil for code that is eval'd. To coverthose cases, we try function `buffer-file-name' which is initiallycorrect, for eval'd code, but will change and may be wrong if thecode sets or switches buffers after the initial execution.
As a last resort, you can pass in SYMBOL which should be somesymbol that has been previously defined if none of the abovemethods work we will use the file-name value find via`symbol-file'.
\(fn &optional SYMBOL)" nil nil)
(autoload 'find-file-noselect-relative "load-relative" "\
Read relative FILENAME into a buffer and return the buffer.If a buffer exists visiting FILENAME, return that one, butverify that the file has not changed since visited or saved.The buffer is not selected, just returned to the caller.Optional second arg NOWARN non-nil means suppress any warning messages.Optional third arg RAWFILE non-nil means the file is read literally.Optional fourth arg WILDCARDS non-nil means do wildcard processingand visit all the matching files. When wildcards are actuallyused and expanded, return a list of buffers that are visitingthe various files.
\(fn FILENAME &optional NOWARN RAWFILE WILDCARDS)" nil nil)
(autoload 'with-relative-file "load-relative" "\
Read the relative FILE into a temporary buffer and evaluate BODYin this buffer.
\(fn FILE &rest BODY)" nil t)
(function-put 'with-relative-file 'lisp-indent-function '1)
(autoload 'load-relative "load-relative" "\
Load an Emacs Lisp file relative to Emacs Lisp code that is inthe process of being loaded or eval'd.
FILE-OR-LIST is either a string or a list of strings containingfiles that you want to loaded. If SYMBOL is given, the location ofof the file of where that was defined (as given by `symbol-file' is usedif other methods of finding __FILE__ don't work.
\(fn FILE-OR-LIST &optional SYMBOL)" nil nil)
(autoload 'require-relative "load-relative" "\
Run `require' on an Emacs Lisp file relative to the Emacs Lisp codethat is in the process of being loaded or eval'd. The symbol used in requireis the base file name (without directory or file extension) treated as asymbol.
WARNING: it is best to to run this function before anybuffer-setting or buffer changing operations.
\(fn RELATIVE-FILE &optional OPT-FILE OPT-PREFIX)" nil nil)
(autoload 'require-relative-list "load-relative" "\
Run `require-relative' on each name in LIST which should be a list ofstrings, each string being the relative name of file you want to run.
\(fn LIST &optional OPT-PREFIX)" nil t)
(autoload 'provide-me "load-relative" "\
Call `provide' with the feature's symbol name made fromsource-code's file basename sans extension. For example if youwrite (provide-me) inside file ~/lisp/foo.el, this is the same aswriting: (provide \\='foo).
With a prefix, that prefix is prepended to the `provide' So inthe previous example, if you write (provide-me \"bar-\") this is thesame as writing (provide \\='bar-foo).
\(fn &optional PREFIX)" nil t)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "load-relative" '("autoload-relative")))
;;;***;;;### (autoloads nil nil ("el-get-install.el" "load-relative-pkg.el");;;;;; (0 0 0 0))
;;;***;; Local Variables:;; version-control: never;; no-byte-compile: t;; no-update-autoloads: t;; coding: utf-8;; End:;;; load-relative-autoloads.el ends here
|