diff options
| author | Po Lu | 2022-08-06 10:22:41 +0800 |
|---|---|---|
| committer | Po Lu | 2022-08-06 10:22:41 +0800 |
| commit | 4e091c8ddf6bf421a4dd0210a3a4b77a3ecf24f5 (patch) | |
| tree | 22db2231f4ea6af1f0df21fb70ed45c09894df1c /lisp/ldefs-boot.el | |
| parent | ef0546ffcdab57fa947efb2a255adec4f61efacd (diff) | |
| download | emacs-4e091c8ddf6bf421a4dd0210a3a4b77a3ecf24f5.tar.gz emacs-4e091c8ddf6bf421a4dd0210a3a4b77a3ecf24f5.zip | |
; Update ldefs-boot.el
Diffstat (limited to 'lisp/ldefs-boot.el')
| -rw-r--r-- | lisp/ldefs-boot.el | 165 |
1 files changed, 62 insertions, 103 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 85985399dbc..353ac443e36 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -825,7 +825,7 @@ it is disabled. | |||
| 825 | 825 | ||
| 826 | ;;; Generated autoloads from net/ange-ftp.el | 826 | ;;; Generated autoloads from net/ange-ftp.el |
| 827 | 827 | ||
| 828 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | 828 | (define-obsolete-function-alias 'ange-ftp-re-read-dir #'ange-ftp-reread-dir "29.1") |
| 829 | (autoload 'ange-ftp-reread-dir "ange-ftp" "\ | 829 | (autoload 'ange-ftp-reread-dir "ange-ftp" "\ |
| 830 | Reread remote directory DIR to update the directory cache. | 830 | Reread remote directory DIR to update the directory cache. |
| 831 | The implementation of remote FTP file names caches directory contents | 831 | The implementation of remote FTP file names caches directory contents |
| @@ -1426,6 +1426,10 @@ Special commands: | |||
| 1426 | How many seconds passwords are cached, or nil to disable expiring. | 1426 | How many seconds passwords are cached, or nil to disable expiring. |
| 1427 | Overrides `password-cache-expiry' through a let-binding.") | 1427 | Overrides `password-cache-expiry' through a let-binding.") |
| 1428 | (custom-autoload 'auth-source-cache-expiry "auth-source" t) | 1428 | (custom-autoload 'auth-source-cache-expiry "auth-source" t) |
| 1429 | (autoload 'auth-source-netrc-parse-all "auth-source" "\ | ||
| 1430 | Parse FILE and return all entries. | ||
| 1431 | |||
| 1432 | (fn FILE)" nil nil) | ||
| 1429 | (autoload 'authinfo-mode "auth-source" "\ | 1433 | (autoload 'authinfo-mode "auth-source" "\ |
| 1430 | Mode for editing .authinfo/.netrc files. | 1434 | Mode for editing .authinfo/.netrc files. |
| 1431 | 1435 | ||
| @@ -1534,60 +1538,6 @@ it is disabled. | |||
| 1534 | (register-definition-prefixes "autoinsert" '("auto-insert")) | 1538 | (register-definition-prefixes "autoinsert" '("auto-insert")) |
| 1535 | 1539 | ||
| 1536 | 1540 | ||
| 1537 | ;;; Generated autoloads from emacs-lisp/autoload.el | ||
| 1538 | |||
| 1539 | (put 'autoload-ensure-writable 'risky-local-variable t) | ||
| 1540 | (autoload 'update-file-autoloads "autoload" "\ | ||
| 1541 | Update the autoloads for FILE. | ||
| 1542 | If prefix arg SAVE-AFTER is non-nil, save the buffer too. | ||
| 1543 | |||
| 1544 | If FILE binds `generated-autoload-file' as a file-local variable, | ||
| 1545 | autoloads are written into that file. Otherwise, the autoloads | ||
| 1546 | file is determined by OUTFILE. If called interactively, prompt | ||
| 1547 | for OUTFILE; if called from Lisp with OUTFILE nil, use the | ||
| 1548 | existing value of `generated-autoload-file'. | ||
| 1549 | |||
| 1550 | Return FILE if there was no autoload cookie in it, else nil. | ||
| 1551 | |||
| 1552 | (fn FILE &optional SAVE-AFTER OUTFILE)" t nil) | ||
| 1553 | (autoload 'update-directory-autoloads "autoload" "\ | ||
| 1554 | Update autoload definitions for Lisp files in the directories DIRS. | ||
| 1555 | In an interactive call, you must give one argument, the name of a | ||
| 1556 | single directory. In a call from Lisp, you can supply multiple | ||
| 1557 | directories as separate arguments, but this usage is discouraged. | ||
| 1558 | |||
| 1559 | The function does NOT recursively descend into subdirectories of the | ||
| 1560 | directory or directories specified. | ||
| 1561 | |||
| 1562 | In an interactive call, prompt for a default output file for the | ||
| 1563 | autoload definitions. When called from Lisp, use the existing | ||
| 1564 | value of `generated-autoload-file'. If any Lisp file binds | ||
| 1565 | `generated-autoload-file' as a file-local variable, write its | ||
| 1566 | autoloads into the specified file instead. | ||
| 1567 | |||
| 1568 | (fn &rest DIRS)" t nil) | ||
| 1569 | (make-obsolete 'update-directory-autoloads 'make-directory-autoloads "28.1") | ||
| 1570 | (autoload 'make-directory-autoloads "autoload" "\ | ||
| 1571 | Update autoload definitions for Lisp files in the directories DIRS. | ||
| 1572 | DIR can be either a single directory or a list of | ||
| 1573 | directories. (The latter usage is discouraged.) | ||
| 1574 | |||
| 1575 | The autoloads will be written to OUTPUT-FILE. If any Lisp file | ||
| 1576 | binds `generated-autoload-file' as a file-local variable, write | ||
| 1577 | its autoloads into the specified file instead. | ||
| 1578 | |||
| 1579 | The function does NOT recursively descend into subdirectories of the | ||
| 1580 | directory or directories specified. | ||
| 1581 | |||
| 1582 | (fn DIR OUTPUT-FILE)" t nil) | ||
| 1583 | (autoload 'batch-update-autoloads "autoload" "\ | ||
| 1584 | Update loaddefs.el autoloads in batch mode. | ||
| 1585 | Calls `update-directory-autoloads' on the command line arguments. | ||
| 1586 | Definitions are written to `generated-autoload-file' (which | ||
| 1587 | should be non-nil)." nil nil) | ||
| 1588 | (register-definition-prefixes "autoload" '("autoload-" "batch-update-autoloads--summary" "generate-" "make-autoload" "no-update-autoloads")) | ||
| 1589 | |||
| 1590 | |||
| 1591 | ;;; Generated autoloads from autorevert.el | 1541 | ;;; Generated autoloads from autorevert.el |
| 1592 | 1542 | ||
| 1593 | (autoload 'auto-revert-mode "autorevert" "\ | 1543 | (autoload 'auto-revert-mode "autorevert" "\ |
| @@ -5064,6 +5014,8 @@ evaluate `compilation-shell-minor-mode'. | |||
| 5064 | The mode's hook is called both when the mode is enabled and when | 5014 | The mode's hook is called both when the mode is enabled and when |
| 5065 | it is disabled. | 5015 | it is disabled. |
| 5066 | 5016 | ||
| 5017 | \\{compilation-shell-minor-mode-map} | ||
| 5018 | |||
| 5067 | (fn &optional ARG)" t nil) | 5019 | (fn &optional ARG)" t nil) |
| 5068 | (autoload 'compilation-minor-mode "compile" "\ | 5020 | (autoload 'compilation-minor-mode "compile" "\ |
| 5069 | Toggle Compilation minor mode. | 5021 | Toggle Compilation minor mode. |
| @@ -5087,6 +5039,8 @@ evaluate `compilation-minor-mode'. | |||
| 5087 | The mode's hook is called both when the mode is enabled and when | 5039 | The mode's hook is called both when the mode is enabled and when |
| 5088 | it is disabled. | 5040 | it is disabled. |
| 5089 | 5041 | ||
| 5042 | \\{compilation-minor-mode-map} | ||
| 5043 | |||
| 5090 | (fn &optional ARG)" t nil) | 5044 | (fn &optional ARG)" t nil) |
| 5091 | (autoload 'compilation-next-error-function "compile" "\ | 5045 | (autoload 'compilation-next-error-function "compile" "\ |
| 5092 | Advance to the next error message and visit the file where the error was. | 5046 | Advance to the next error message and visit the file where the error was. |
| @@ -6131,7 +6085,7 @@ omitted, a buffer named *Custom Themes* is used. | |||
| 6131 | 6085 | ||
| 6132 | ;;; Generated autoloads from cedet/ede/custom.el | 6086 | ;;; Generated autoloads from cedet/ede/custom.el |
| 6133 | 6087 | ||
| 6134 | (register-definition-prefixes "ede/custom" '("ede-" "eieio-ede-old-variables")) | 6088 | (register-definition-prefixes "ede/custom" '("ede-")) |
| 6135 | 6089 | ||
| 6136 | 6090 | ||
| 6137 | ;;; Generated autoloads from vc/cvs-status.el | 6091 | ;;; Generated autoloads from vc/cvs-status.el |
| @@ -7460,7 +7414,7 @@ Like \\[dired-jump] (`dired-jump') but in other window. | |||
| 7460 | 7414 | ||
| 7461 | ;;; Generated autoloads from dired-aux.el | 7415 | ;;; Generated autoloads from dired-aux.el |
| 7462 | 7416 | ||
| 7463 | (register-definition-prefixes "dired-aux" '("dired-" "minibuffer-default-add-dired-shell-commands")) | 7417 | (register-definition-prefixes "dired-aux" '("dired-")) |
| 7464 | 7418 | ||
| 7465 | 7419 | ||
| 7466 | ;;; Generated autoloads from dired-x.el | 7420 | ;;; Generated autoloads from dired-x.el |
| @@ -8438,7 +8392,7 @@ A second call of this function without changing point inserts the next match. | |||
| 8438 | A call with prefix PREFIX reads the symbol to insert from the minibuffer with | 8392 | A call with prefix PREFIX reads the symbol to insert from the minibuffer with |
| 8439 | completion. | 8393 | completion. |
| 8440 | 8394 | ||
| 8441 | (fn PREFIX)" '("P") nil) | 8395 | (fn PREFIX)" t nil) |
| 8442 | (autoload 'ebrowse-tags-loop-continue "ebrowse" "\ | 8396 | (autoload 'ebrowse-tags-loop-continue "ebrowse" "\ |
| 8443 | Repeat last operation on files in tree. | 8397 | Repeat last operation on files in tree. |
| 8444 | FIRST-TIME non-nil means this is not a repetition, but the first time. | 8398 | FIRST-TIME non-nil means this is not a repetition, but the first time. |
| @@ -9362,7 +9316,7 @@ displayed." t nil) | |||
| 9362 | 9316 | ||
| 9363 | ;;; Generated autoloads from eshell/em-extpipe.el | 9317 | ;;; Generated autoloads from eshell/em-extpipe.el |
| 9364 | 9318 | ||
| 9365 | (register-definition-prefixes "em-extpipe" '("em-extpipe--or-with-catch" "eshell-")) | 9319 | (register-definition-prefixes "em-extpipe" '("eshell-")) |
| 9366 | 9320 | ||
| 9367 | 9321 | ||
| 9368 | ;;; Generated autoloads from eshell/em-glob.el | 9322 | ;;; Generated autoloads from eshell/em-glob.el |
| @@ -9975,7 +9929,7 @@ When present, ID should be an opaque object used to identify the | |||
| 9975 | connection unequivocally. This is rarely needed and not available | 9929 | connection unequivocally. This is rarely needed and not available |
| 9976 | interactively. | 9930 | interactively. |
| 9977 | 9931 | ||
| 9978 | (fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) ID)" '((erc-select-read-args)) nil) | 9932 | (fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) ID)" t nil) |
| 9979 | (defalias 'erc-select #'erc) | 9933 | (defalias 'erc-select #'erc) |
| 9980 | (autoload 'erc-tls "erc" "\ | 9934 | (autoload 'erc-tls "erc" "\ |
| 9981 | ERC is a powerful, modular, and extensible IRC client. | 9935 | ERC is a powerful, modular, and extensible IRC client. |
| @@ -10022,7 +9976,7 @@ symbol composed of letters from the Latin alphabet.) This option is | |||
| 10022 | generally unneeded, however. See info node `(erc) Connecting' for use | 9976 | generally unneeded, however. See info node `(erc) Connecting' for use |
| 10023 | cases. Not available interactively. | 9977 | cases. Not available interactively. |
| 10024 | 9978 | ||
| 10025 | (fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) CLIENT-CERTIFICATE ID)" '((let ((erc-default-port erc-default-port-tls)) (erc-select-read-args))) nil) | 9979 | (fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) CLIENT-CERTIFICATE ID)" t nil) |
| 10026 | (autoload 'erc-handle-irc-url "erc" "\ | 9980 | (autoload 'erc-handle-irc-url "erc" "\ |
| 10027 | Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD. | 9981 | Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD. |
| 10028 | If ERC is already connected to HOST:PORT, simply /join CHANNEL. | 9982 | If ERC is already connected to HOST:PORT, simply /join CHANNEL. |
| @@ -10238,7 +10192,9 @@ it has to be wrapped in `(eval (quote ...))'. | |||
| 10238 | If NAME is already defined as a test and Emacs is running | 10192 | If NAME is already defined as a test and Emacs is running |
| 10239 | in batch mode, an error is signalled. | 10193 | in batch mode, an error is signalled. |
| 10240 | 10194 | ||
| 10241 | (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil 'macro) | 10195 | (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil t) |
| 10196 | (function-put 'ert-deftest 'doc-string-elt 3) | ||
| 10197 | (function-put 'ert-deftest 'lisp-indent-function 2) | ||
| 10242 | (autoload 'ert-run-tests-batch "ert" "\ | 10198 | (autoload 'ert-run-tests-batch "ert" "\ |
| 10243 | Run the tests specified by SELECTOR, printing results to the terminal. | 10199 | Run the tests specified by SELECTOR, printing results to the terminal. |
| 10244 | 10200 | ||
| @@ -11908,7 +11864,7 @@ where the first string in the value of the variable `find-ls-option' | |||
| 11908 | specifies what to use in place of \"-ls\" as the final argument. | 11864 | specifies what to use in place of \"-ls\" as the final argument. |
| 11909 | 11865 | ||
| 11910 | (fn DIR REGEXP)" t nil) | 11866 | (fn DIR REGEXP)" t nil) |
| 11911 | (register-definition-prefixes "find-dired" '("find-" "kill-find" "lookfor-dired")) | 11867 | (register-definition-prefixes "find-dired" '("find-" "kill-find")) |
| 11912 | 11868 | ||
| 11913 | 11869 | ||
| 11914 | ;;; Generated autoloads from find-file.el | 11870 | ;;; Generated autoloads from find-file.el |
| @@ -12319,6 +12275,8 @@ evaluate `flymake-mode'. | |||
| 12319 | The mode's hook is called both when the mode is enabled and when | 12275 | The mode's hook is called both when the mode is enabled and when |
| 12320 | it is disabled. | 12276 | it is disabled. |
| 12321 | 12277 | ||
| 12278 | \\{flymake-mode-map} | ||
| 12279 | |||
| 12322 | (fn &optional ARG)" t nil) | 12280 | (fn &optional ARG)" t nil) |
| 12323 | (autoload 'flymake-mode-on "flymake" "\ | 12281 | (autoload 'flymake-mode-on "flymake" "\ |
| 12324 | Turn Flymake mode on." nil nil) | 12282 | Turn Flymake mode on." nil nil) |
| @@ -13085,7 +13043,7 @@ detailed description of this mode. | |||
| 13085 | +-----------------------------------+----------------------------------+ | 13043 | +-----------------------------------+----------------------------------+ |
| 13086 | 13044 | ||
| 13087 | (fn COMMAND-LINE)" t nil) | 13045 | (fn COMMAND-LINE)" t nil) |
| 13088 | (register-definition-prefixes "gdb-mi" '("breakpoint" "def-gdb-" "gdb" "gud-" "hollow-right-triangle" "nil")) | 13046 | (register-definition-prefixes "gdb-mi" '("breakpoint" "def-gdb-" "gdb" "gud-" "hollow-right-triangle")) |
| 13089 | 13047 | ||
| 13090 | 13048 | ||
| 13091 | ;;; Generated autoloads from emacs-lisp/generator.el | 13049 | ;;; Generated autoloads from emacs-lisp/generator.el |
| @@ -13409,7 +13367,7 @@ CLEAN is obsolete and ignored. | |||
| 13409 | 13367 | ||
| 13410 | (autoload 'gnus-article-prepare-display "gnus-art" "\ | 13368 | (autoload 'gnus-article-prepare-display "gnus-art" "\ |
| 13411 | Make the current buffer look like a nice article." nil nil) | 13369 | Make the current buffer look like a nice article." nil nil) |
| 13412 | (register-definition-prefixes "gnus-art" '(":keymap" "article-" "gnus-")) | 13370 | (register-definition-prefixes "gnus-art" '("article-" "gnus-")) |
| 13413 | 13371 | ||
| 13414 | 13372 | ||
| 13415 | ;;; Generated autoloads from gnus/gnus-async.el | 13373 | ;;; Generated autoloads from gnus/gnus-async.el |
| @@ -13649,7 +13607,7 @@ The arguments have the same meaning as those of | |||
| 13649 | `gnus-read-ephemeral-bug-group', which see. | 13607 | `gnus-read-ephemeral-bug-group', which see. |
| 13650 | 13608 | ||
| 13651 | (fn IDS &optional WINDOW-CONF)" t nil) | 13609 | (fn IDS &optional WINDOW-CONF)" t nil) |
| 13652 | (register-definition-prefixes "gnus-group" '(":keymap" "gnus-")) | 13610 | (register-definition-prefixes "gnus-group" '("gnus-")) |
| 13653 | 13611 | ||
| 13654 | 13612 | ||
| 13655 | ;;; Generated autoloads from gnus/gnus-html.el | 13613 | ;;; Generated autoloads from gnus/gnus-html.el |
| @@ -13842,7 +13800,7 @@ Like `message-reply'. | |||
| 13842 | 13800 | ||
| 13843 | (fn &optional TO-ADDRESS WIDE)" t nil) | 13801 | (fn &optional TO-ADDRESS WIDE)" t nil) |
| 13844 | (define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) | 13802 | (define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| 13845 | (register-definition-prefixes "gnus-msg" '(":prefix" "gnus-")) | 13803 | (register-definition-prefixes "gnus-msg" '("gnus-")) |
| 13846 | 13804 | ||
| 13847 | 13805 | ||
| 13848 | ;;; Generated autoloads from gnus/gnus-notifications.el | 13806 | ;;; Generated autoloads from gnus/gnus-notifications.el |
| @@ -14003,7 +13961,7 @@ Handler function for record returned by `gnus-summary-bookmark-make-record'. | |||
| 14003 | BOOKMARK is a bookmark name or a bookmark record. | 13961 | BOOKMARK is a bookmark name or a bookmark record. |
| 14004 | 13962 | ||
| 14005 | (fn BOOKMARK)" nil nil) | 13963 | (fn BOOKMARK)" nil nil) |
| 14006 | (register-definition-prefixes "gnus-sum" '(":keymap" "gnus-")) | 13964 | (register-definition-prefixes "gnus-sum" '("gnus-")) |
| 14007 | 13965 | ||
| 14008 | 13966 | ||
| 14009 | ;;; Generated autoloads from gnus/gnus-topic.el | 13967 | ;;; Generated autoloads from gnus/gnus-topic.el |
| @@ -14627,7 +14585,7 @@ FUNC is a function to handle input key. | |||
| 14627 | HELP-TEXT is a text set in `hangul-input-method-help-text'. | 14585 | HELP-TEXT is a text set in `hangul-input-method-help-text'. |
| 14628 | 14586 | ||
| 14629 | (fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)" nil nil) | 14587 | (fn INPUT-METHOD FUNC HELP-TEXT &rest ARGS)" nil nil) |
| 14630 | (register-definition-prefixes "quail/hangul" '("alphabetp" "hangul" "notzerop")) | 14588 | (register-definition-prefixes "quail/hangul" '("hangul" "notzerop")) |
| 14631 | 14589 | ||
| 14632 | 14590 | ||
| 14633 | ;;; Generated autoloads from language/hanja-util.el | 14591 | ;;; Generated autoloads from language/hanja-util.el |
| @@ -15919,7 +15877,8 @@ inlined into the compiled format versions. This means that if you | |||
| 15919 | change its definition, you should explicitly call | 15877 | change its definition, you should explicitly call |
| 15920 | `ibuffer-recompile-formats'. | 15878 | `ibuffer-recompile-formats'. |
| 15921 | 15879 | ||
| 15922 | (fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil 'macro) | 15880 | (fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil t) |
| 15881 | (function-put 'define-ibuffer-column 'lisp-indent-function 'defun) | ||
| 15923 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ | 15882 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ |
| 15924 | Define a method of sorting named NAME. | 15883 | Define a method of sorting named NAME. |
| 15925 | DOCUMENTATION is the documentation of the function, which will be called | 15884 | DOCUMENTATION is the documentation of the function, which will be called |
| @@ -15930,7 +15889,9 @@ For sorting, the forms in BODY will be evaluated with `a' bound to one | |||
| 15930 | buffer object, and `b' bound to another. BODY should return a non-nil | 15889 | buffer object, and `b' bound to another. BODY should return a non-nil |
| 15931 | value if and only if `a' is \"less than\" `b'. | 15890 | value if and only if `a' is \"less than\" `b'. |
| 15932 | 15891 | ||
| 15933 | (fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil 'macro) | 15892 | (fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil t) |
| 15893 | (function-put 'define-ibuffer-sorter 'lisp-indent-function 1) | ||
| 15894 | (function-put 'define-ibuffer-sorter 'doc-string-elt 2) | ||
| 15934 | (autoload 'define-ibuffer-op "ibuf-macs" "\ | 15895 | (autoload 'define-ibuffer-op "ibuf-macs" "\ |
| 15935 | Generate a function which operates on a buffer. | 15896 | Generate a function which operates on a buffer. |
| 15936 | OP becomes the name of the function; if it doesn't begin with | 15897 | OP becomes the name of the function; if it doesn't begin with |
| @@ -15969,7 +15930,9 @@ BODY define the operation; they are forms to evaluate per each | |||
| 15969 | marked buffer. BODY is evaluated with `buf' bound to the | 15930 | marked buffer. BODY is evaluated with `buf' bound to the |
| 15970 | buffer object. | 15931 | buffer object. |
| 15971 | 15932 | ||
| 15972 | (fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil 'macro) | 15933 | (fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil t) |
| 15934 | (function-put 'define-ibuffer-op 'lisp-indent-function 2) | ||
| 15935 | (function-put 'define-ibuffer-op 'doc-string-elt 3) | ||
| 15973 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ | 15936 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ |
| 15974 | Define a filter named NAME. | 15937 | Define a filter named NAME. |
| 15975 | DOCUMENTATION is the documentation of the function. | 15938 | DOCUMENTATION is the documentation of the function. |
| @@ -15984,7 +15947,9 @@ not a particular buffer should be displayed or not. The forms in BODY | |||
| 15984 | will be evaluated with BUF bound to the buffer object, and QUALIFIER | 15947 | will be evaluated with BUF bound to the buffer object, and QUALIFIER |
| 15985 | bound to the current value of the filter. | 15948 | bound to the current value of the filter. |
| 15986 | 15949 | ||
| 15987 | (fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil 'macro) | 15950 | (fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil t) |
| 15951 | (function-put 'define-ibuffer-filter 'lisp-indent-function 2) | ||
| 15952 | (function-put 'define-ibuffer-filter 'doc-string-elt 2) | ||
| 15988 | (register-definition-prefixes "ibuf-macs" '("ibuffer-")) | 15953 | (register-definition-prefixes "ibuf-macs" '("ibuffer-")) |
| 15989 | 15954 | ||
| 15990 | 15955 | ||
| @@ -16026,7 +15991,7 @@ Call Ibuffer and set point at the line listing the current buffer. | |||
| 16026 | If optional arg OTHER-WINDOW is non-nil, then use another window. | 15991 | If optional arg OTHER-WINDOW is non-nil, then use another window. |
| 16027 | 15992 | ||
| 16028 | (fn &optional OTHER-WINDOW)" t nil) | 15993 | (fn &optional OTHER-WINDOW)" t nil) |
| 16029 | (register-definition-prefixes "ibuffer" '("filename" "ibuffer-" "locked" "mark" "mod" "name" "process" "read-only" "recency" "size")) | 15994 | (register-definition-prefixes "ibuffer" '("ibuffer-")) |
| 16030 | 15995 | ||
| 16031 | 15996 | ||
| 16032 | ;;; Generated autoloads from calendar/icalendar.el | 15997 | ;;; Generated autoloads from calendar/icalendar.el |
| @@ -18712,7 +18677,7 @@ This scans for ;;;###autoload forms and related things. | |||
| 18712 | The first element on the command line should be the (main) | 18677 | The first element on the command line should be the (main) |
| 18713 | loaddefs.el output file, and the rest are the directories to | 18678 | loaddefs.el output file, and the rest are the directories to |
| 18714 | use." nil nil) | 18679 | use." nil nil) |
| 18715 | (register-definition-prefixes "loaddefs-gen" '("autoload-" "generated-autoload-" "loaddefs-generate--")) | 18680 | (register-definition-prefixes "loaddefs-gen" '("autoload-" "generated-autoload-" "loaddefs-generate--" "no-update-autoloads")) |
| 18716 | 18681 | ||
| 18717 | 18682 | ||
| 18718 | ;;; Generated autoloads from loadhist.el | 18683 | ;;; Generated autoloads from loadhist.el |
| @@ -19739,7 +19704,7 @@ Major mode for editing Metafont sources. | |||
| 19739 | Major mode for editing MetaPost sources. | 19704 | Major mode for editing MetaPost sources. |
| 19740 | 19705 | ||
| 19741 | (fn)" t nil) | 19706 | (fn)" t nil) |
| 19742 | (register-definition-prefixes "meta-mode" '("font-lock-match-meta-declaration-item-and-skip-to-next" "meta")) | 19707 | (register-definition-prefixes "meta-mode" '("meta")) |
| 19743 | 19708 | ||
| 19744 | 19709 | ||
| 19745 | ;;; Generated autoloads from mh-e/mh-acros.el | 19710 | ;;; Generated autoloads from mh-e/mh-acros.el |
| @@ -19924,7 +19889,7 @@ perform the operation on all messages in that region. | |||
| 19924 | \\{mh-folder-mode-map} | 19889 | \\{mh-folder-mode-map} |
| 19925 | 19890 | ||
| 19926 | (fn)" t nil) | 19891 | (fn)" t nil) |
| 19927 | (register-definition-prefixes "mh-folder" '(":keymap" "mh-")) | 19892 | (register-definition-prefixes "mh-folder" '("mh-")) |
| 19928 | 19893 | ||
| 19929 | 19894 | ||
| 19930 | ;;; Generated autoloads from mh-e/mh-funcs.el | 19895 | ;;; Generated autoloads from mh-e/mh-funcs.el |
| @@ -19949,7 +19914,7 @@ perform the operation on all messages in that region. | |||
| 19949 | 19914 | ||
| 19950 | ;;; Generated autoloads from mh-e/mh-letter.el | 19915 | ;;; Generated autoloads from mh-e/mh-letter.el |
| 19951 | 19916 | ||
| 19952 | (register-definition-prefixes "mh-letter" '(":keymap" "mh-")) | 19917 | (register-definition-prefixes "mh-letter" '("mh-")) |
| 19953 | 19918 | ||
| 19954 | 19919 | ||
| 19955 | ;;; Generated autoloads from mh-e/mh-limit.el | 19920 | ;;; Generated autoloads from mh-e/mh-limit.el |
| @@ -19974,7 +19939,7 @@ perform the operation on all messages in that region. | |||
| 19974 | 19939 | ||
| 19975 | ;;; Generated autoloads from mh-e/mh-search.el | 19940 | ;;; Generated autoloads from mh-e/mh-search.el |
| 19976 | 19941 | ||
| 19977 | (register-definition-prefixes "mh-search" '(":keymap" "mh-")) | 19942 | (register-definition-prefixes "mh-search" '("mh-")) |
| 19978 | 19943 | ||
| 19979 | 19944 | ||
| 19980 | ;;; Generated autoloads from mh-e/mh-seq.el | 19945 | ;;; Generated autoloads from mh-e/mh-seq.el |
| @@ -19984,12 +19949,12 @@ perform the operation on all messages in that region. | |||
| 19984 | 19949 | ||
| 19985 | ;;; Generated autoloads from mh-e/mh-show.el | 19950 | ;;; Generated autoloads from mh-e/mh-show.el |
| 19986 | 19951 | ||
| 19987 | (register-definition-prefixes "mh-show" '(":keymap" "mh-")) | 19952 | (register-definition-prefixes "mh-show" '("mh-")) |
| 19988 | 19953 | ||
| 19989 | 19954 | ||
| 19990 | ;;; Generated autoloads from mh-e/mh-speed.el | 19955 | ;;; Generated autoloads from mh-e/mh-speed.el |
| 19991 | 19956 | ||
| 19992 | (register-definition-prefixes "mh-speed" '(":keymap" "mh-")) | 19957 | (register-definition-prefixes "mh-speed" '("mh-")) |
| 19993 | 19958 | ||
| 19994 | 19959 | ||
| 19995 | ;;; Generated autoloads from mh-e/mh-thread.el | 19960 | ;;; Generated autoloads from mh-e/mh-thread.el |
| @@ -20572,7 +20537,7 @@ To test this function, evaluate: | |||
| 20572 | 20537 | ||
| 20573 | (autoload 'mpc "mpc" "\ | 20538 | (autoload 'mpc "mpc" "\ |
| 20574 | Main entry point for MPC." t nil) | 20539 | Main entry point for MPC." t nil) |
| 20575 | (register-definition-prefixes "mpc" '("mpc-" "tag-browser-tagtypes")) | 20540 | (register-definition-prefixes "mpc" '("mpc-")) |
| 20576 | 20541 | ||
| 20577 | 20542 | ||
| 20578 | ;;; Generated autoloads from play/mpuz.el | 20543 | ;;; Generated autoloads from play/mpuz.el |
| @@ -21031,17 +20996,6 @@ Open a network connection to HOST on PORT. | |||
| 21031 | (register-definition-prefixes "net-utils" '("arp-program" "dns-lookup-program" "finger-X.500-host-regexps" "ftp-" "ifconfig-program" "ipconfig" "iwconfig-program" "net" "nslookup-" "ping-program" "route-program" "run-network-program" "smbclient" "traceroute-program" "whois-")) | 20996 | (register-definition-prefixes "net-utils" '("arp-program" "dns-lookup-program" "finger-X.500-host-regexps" "ftp-" "ifconfig-program" "ipconfig" "iwconfig-program" "net" "nslookup-" "ping-program" "route-program" "run-network-program" "smbclient" "traceroute-program" "whois-")) |
| 21032 | 20997 | ||
| 21033 | 20998 | ||
| 21034 | ;;; Generated autoloads from net/netrc.el | ||
| 21035 | |||
| 21036 | (autoload 'netrc-credentials "netrc" "\ | ||
| 21037 | Return a user name/password pair. | ||
| 21038 | Port specifications will be prioritized in the order they are | ||
| 21039 | listed in the PORTS list. | ||
| 21040 | |||
| 21041 | (fn MACHINE &rest PORTS)" nil nil) | ||
| 21042 | (register-definition-prefixes "netrc" '("netrc-")) | ||
| 21043 | |||
| 21044 | |||
| 21045 | ;;; Generated autoloads from net/network-stream.el | 20999 | ;;; Generated autoloads from net/network-stream.el |
| 21046 | 21000 | ||
| 21047 | (autoload 'open-network-stream "network-stream" "\ | 21001 | (autoload 'open-network-stream "network-stream" "\ |
| @@ -23501,7 +23455,7 @@ Various indentation styles: K&R BSD BLK GNU LW | |||
| 23501 | Turning on Perl mode runs the normal hook `perl-mode-hook'. | 23455 | Turning on Perl mode runs the normal hook `perl-mode-hook'. |
| 23502 | 23456 | ||
| 23503 | (fn)" t nil) | 23457 | (fn)" t nil) |
| 23504 | (register-definition-prefixes "perl-mode" '("indent-perl-exp" "mark-perl-function" "perl-")) | 23458 | (register-definition-prefixes "perl-mode" '("perl-")) |
| 23505 | 23459 | ||
| 23506 | 23460 | ||
| 23507 | ;;; Generated autoloads from pgtk-dnd.el | 23461 | ;;; Generated autoloads from pgtk-dnd.el |
| @@ -25378,6 +25332,8 @@ evaluate `rectangle-mark-mode'. | |||
| 25378 | The mode's hook is called both when the mode is enabled and when | 25332 | The mode's hook is called both when the mode is enabled and when |
| 25379 | it is disabled. | 25333 | it is disabled. |
| 25380 | 25334 | ||
| 25335 | \\{rectangle-mark-mode-map} | ||
| 25336 | |||
| 25381 | (fn &optional ARG)" t nil) | 25337 | (fn &optional ARG)" t nil) |
| 25382 | (register-definition-prefixes "rect" '("apply-on-rectangle" "clear-rectangle-line" "delete-" "extract-rectangle-" "killed-rectangle" "ope" "rectangle-" "spaces-string" "string-rectangle-")) | 25338 | (register-definition-prefixes "rect" '("apply-on-rectangle" "clear-rectangle-line" "delete-" "extract-rectangle-" "killed-rectangle" "ope" "rectangle-" "spaces-string" "string-rectangle-")) |
| 25383 | 25339 | ||
| @@ -26889,7 +26845,7 @@ The mode's hook is called both when the mode is enabled and when | |||
| 26889 | it is disabled. | 26845 | it is disabled. |
| 26890 | 26846 | ||
| 26891 | (fn &optional ARG)" t nil) | 26847 | (fn &optional ARG)" t nil) |
| 26892 | (register-definition-prefixes "saveplace" '("load-save-place-alist-from-file" "save-place")) | 26848 | (register-definition-prefixes "saveplace" '("save-place")) |
| 26893 | 26849 | ||
| 26894 | 26850 | ||
| 26895 | ;;; Generated autoloads from cedet/semantic/sb.el | 26851 | ;;; Generated autoloads from cedet/semantic/sb.el |
| @@ -28603,7 +28559,7 @@ explicitly, and matters only if you need the extra headers | |||
| 28603 | installed through `spam-necessary-extra-headers'. | 28559 | installed through `spam-necessary-extra-headers'. |
| 28604 | 28560 | ||
| 28605 | (fn &rest SYMBOLS)" t nil) | 28561 | (fn &rest SYMBOLS)" t nil) |
| 28606 | (register-definition-prefixes "spam" '(":keymap" "spam-")) | 28562 | (register-definition-prefixes "spam" '("spam-")) |
| 28607 | 28563 | ||
| 28608 | 28564 | ||
| 28609 | ;;; Generated autoloads from gnus/spam-report.el | 28565 | ;;; Generated autoloads from gnus/spam-report.el |
| @@ -30211,7 +30167,7 @@ converts a table into plain text without frames. It is a companion to | |||
| 30211 | 30167 | ||
| 30212 | ;;; Generated autoloads from cedet/srecode/table.el | 30168 | ;;; Generated autoloads from cedet/srecode/table.el |
| 30213 | 30169 | ||
| 30214 | (register-definition-prefixes "srecode/table" '("object-sort-list" "srecode-")) | 30170 | (register-definition-prefixes "srecode/table" '("srecode-")) |
| 30215 | 30171 | ||
| 30216 | 30172 | ||
| 30217 | ;;; Generated autoloads from emacs-lisp/tabulated-list.el | 30173 | ;;; Generated autoloads from emacs-lisp/tabulated-list.el |
| @@ -31214,7 +31170,11 @@ If DATE lacks timezone information, GMT is assumed. | |||
| 31214 | 31170 | ||
| 31215 | (fn DATE)" nil nil) | 31171 | (fn DATE)" nil nil) |
| 31216 | (defalias 'time-to-seconds 'float-time) | 31172 | (defalias 'time-to-seconds 'float-time) |
| 31217 | (defalias 'seconds-to-time 'time-convert) | 31173 | (autoload 'seconds-to-time "time-date" "\ |
| 31174 | Convert SECONDS to a proper time, like `current-time' would. | ||
| 31175 | FORM means the same as in `time-convert'. | ||
| 31176 | |||
| 31177 | (fn SECONDS &rest FORM)" nil nil) | ||
| 31218 | (autoload 'days-to-time "time-date" "\ | 31178 | (autoload 'days-to-time "time-date" "\ |
| 31219 | Convert DAYS into a time value. | 31179 | Convert DAYS into a time value. |
| 31220 | 31180 | ||
| @@ -32161,7 +32121,7 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 32161 | 2 would mean to use one half, a value of 4 would mean to use one quarter, etc. | 32121 | 2 would mean to use one half, a value of 4 would mean to use one quarter, etc. |
| 32162 | 32122 | ||
| 32163 | (fn WPM &optional WORDLEN FRAC)" t nil) | 32123 | (fn WPM &optional WORDLEN FRAC)" t nil) |
| 32164 | (register-definition-prefixes "type-break" '("timep" "type-break-")) | 32124 | (register-definition-prefixes "type-break" '("type-break-")) |
| 32165 | 32125 | ||
| 32166 | 32126 | ||
| 32167 | ;;; Generated autoloads from international/ucs-normalize.el | 32127 | ;;; Generated autoloads from international/ucs-normalize.el |
| @@ -34550,7 +34510,7 @@ Toggle Viper on/off. | |||
| 34550 | If Viper is enabled, turn it off. Otherwise, turn it on." t nil) | 34510 | If Viper is enabled, turn it off. Otherwise, turn it on." t nil) |
| 34551 | (autoload 'viper-mode "viper" "\ | 34511 | (autoload 'viper-mode "viper" "\ |
| 34552 | Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." t nil) | 34512 | Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." t nil) |
| 34553 | (register-definition-prefixes "viper" '("set-viper-state-in-major-mode" "this-major-mode-requires-vi-state" "viper-")) | 34513 | (register-definition-prefixes "viper" '("viper-")) |
| 34554 | 34514 | ||
| 34555 | 34515 | ||
| 34556 | ;;; Generated autoloads from emulation/viper-cmd.el | 34516 | ;;; Generated autoloads from emulation/viper-cmd.el |
| @@ -35497,7 +35457,7 @@ decompress the file if appropriate. See the documentation for the | |||
| 35497 | Default bookmark handler for Woman buffers. | 35457 | Default bookmark handler for Woman buffers. |
| 35498 | 35458 | ||
| 35499 | (fn BOOKMARK)" nil nil) | 35459 | (fn BOOKMARK)" nil nil) |
| 35500 | (register-definition-prefixes "woman" '("WoMan-" "menu-bar-manuals-menu" "set-woman-file-regexp" "woman")) | 35460 | (register-definition-prefixes "woman" '("WoMan-" "woman")) |
| 35501 | 35461 | ||
| 35502 | 35462 | ||
| 35503 | ;;; Generated autoloads from textmodes/word-wrap-mode.el | 35463 | ;;; Generated autoloads from textmodes/word-wrap-mode.el |
| @@ -35742,7 +35702,7 @@ to control which program to use when looking for matches. | |||
| 35742 | 35702 | ||
| 35743 | ;;; Generated autoloads from progmodes/xscheme.el | 35703 | ;;; Generated autoloads from progmodes/xscheme.el |
| 35744 | 35704 | ||
| 35745 | (register-definition-prefixes "xscheme" '("default-xscheme-runlight" "exit-scheme-interaction-mode" "global-set-scheme-interaction-buffer" "local-" "reset-scheme" "run-scheme" "scheme-" "start-scheme" "verify-xscheme-buffer" "xscheme-")) | 35705 | (register-definition-prefixes "xscheme" '("exit-scheme-interaction-mode" "global-set-scheme-interaction-buffer" "local-" "reset-scheme" "run-scheme" "scheme-" "start-scheme" "xscheme-")) |
| 35746 | 35706 | ||
| 35747 | 35707 | ||
| 35748 | ;;; Generated autoloads from nxml/xsd-regexp.el | 35708 | ;;; Generated autoloads from nxml/xsd-regexp.el |
| @@ -35855,7 +35815,6 @@ Zone out, completely." t nil) | |||
| 35855 | (provide 'loaddefs) | 35815 | (provide 'loaddefs) |
| 35856 | 35816 | ||
| 35857 | ;; Local Variables: | 35817 | ;; Local Variables: |
| 35858 | ;; no-byte-compile: t | ||
| 35859 | ;; version-control: never | 35818 | ;; version-control: never |
| 35860 | ;; no-update-autoloads: t | 35819 | ;; no-update-autoloads: t |
| 35861 | ;; coding: utf-8-emacs-unix | 35820 | ;; coding: utf-8-emacs-unix |