diff options
| author | Miles Bader | 2007-03-04 06:19:40 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-03-04 06:19:40 +0000 |
| commit | 70fff7b1002401c91fe8d6df6491e1ae1f71e02c (patch) | |
| tree | e348ed422579ef028033ea51045d35d2a8f09ba3 /lisp | |
| parent | 9e53076ea9d9f18f9fbdf28d79958691720b446f (diff) | |
| parent | d2d64bc314369ffd3f97f029e26f9650b76b8302 (diff) | |
| download | emacs-70fff7b1002401c91fe8d6df6491e1ae1f71e02c.tar.gz emacs-70fff7b1002401c91fe8d6df6491e1ae1f71e02c.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 653-661)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 203-206)
- Merge from emacs--devo--0
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-180
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 116 | ||||
| -rw-r--r-- | lisp/allout.el | 74 | ||||
| -rw-r--r-- | lisp/desktop.el | 1 | ||||
| -rw-r--r-- | lisp/files.el | 24 | ||||
| -rw-r--r-- | lisp/find-lisp.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 33 | ||||
| -rw-r--r-- | lisp/gnus/nntp.el | 27 | ||||
| -rw-r--r-- | lisp/help.el | 1 | ||||
| -rw-r--r-- | lisp/international/mule.el | 2 | ||||
| -rw-r--r-- | lisp/isearch.el | 5 | ||||
| -rw-r--r-- | lisp/ldefs-boot.el | 1323 | ||||
| -rw-r--r-- | lisp/play/gamegrid.el | 41 | ||||
| -rw-r--r-- | lisp/play/tetris.el | 48 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 9 | ||||
| -rw-r--r-- | lisp/progmodes/python.el | 23 | ||||
| -rw-r--r-- | lisp/replace.el | 62 | ||||
| -rw-r--r-- | lisp/textmodes/org.el | 52 | ||||
| -rw-r--r-- | lisp/tutorial.el | 5 | ||||
| -rw-r--r-- | lisp/version.el | 6 |
20 files changed, 1039 insertions, 828 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dc69db1d1b1..1c243b3c571 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,10 +1,120 @@ | |||
| 1 | 2007-03-03 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * international/mule.el (find-auto-coding): Don't search for | ||
| 4 | line-ending characters past the end of the tail. | ||
| 5 | |||
| 6 | 2007-03-03 Christopher Allan Webber <cwebber@dustycloud.org> (tiny change) | ||
| 7 | |||
| 8 | * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1): | ||
| 9 | Jump to the line where new score has been uploaded. | ||
| 10 | |||
| 11 | * play/tetris.el (tetris-move-bottom, tetris-move-left) | ||
| 12 | (tetris-move-right, tetris-rotate-prev, tetris-rotate-next): | ||
| 13 | Do nothing when the game is paused. | ||
| 14 | |||
| 15 | 2007-03-03 Carsten Dominik <dominik@science.uva.nl> | ||
| 16 | |||
| 17 | * textmodes/org.el (org-set-tags): Prevent slipping of point | ||
| 18 | during completion. | ||
| 19 | |||
| 20 | 2007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se> | ||
| 21 | |||
| 22 | * isearch.el (isearch-message-prefix): | ||
| 23 | Use minibuffer-prompt-properties. | ||
| 24 | |||
| 25 | 2007-03-01 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 26 | |||
| 27 | * ps-print.el: Replace (defvar VAR nil) by (defvar VAR). | ||
| 28 | (ps-setup): Print which Emacsen is running ps-print package. | ||
| 29 | |||
| 30 | 2007-03-01 Stuart Herring <herring@lanl.gov> (tiny change) | ||
| 31 | |||
| 32 | * files.el (set-auto-mode-0): Use `indirect-function'. | ||
| 33 | (hack-one-local-variable): Don't reapply current major mode. | ||
| 34 | |||
| 35 | 2007-03-01 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 36 | |||
| 37 | * progmodes/python.el (python-quote-syntax): Don't bother with | ||
| 38 | syntax-ppss-context. | ||
| 39 | (python-fill-paragraph): Make sure that fenced-string delimiters that | ||
| 40 | stand on their own line stay there | ||
| 41 | |||
| 42 | 2007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se> | ||
| 43 | |||
| 44 | * replace.el (perform-replace): Propertize message. | ||
| 45 | |||
| 46 | 2007-03-01 Carsten Dominik <dominik@science.uva.nl> | ||
| 47 | |||
| 48 | * textmodes/org.el (org-prepare-agenda-buffers): Also check for | ||
| 49 | invisible heading. | ||
| 50 | |||
| 51 | 2007-02-28 Chong Yidong <cyd@stupidchicken.com> | ||
| 52 | |||
| 53 | * net/tramp.el (tramp-file-name-handler): Revert last change. | ||
| 54 | |||
| 55 | 2007-02-28 Nick Roberts <nickrob@snap.net.nz> | ||
| 56 | |||
| 57 | * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump): | ||
| 58 | Correct doc strings. | ||
| 59 | |||
| 60 | 2007-02-28 Chong Yidong <cyd@stupidchicken.com> | ||
| 61 | |||
| 62 | * replace.el (perform-replace): Undo forward-char immediately if | ||
| 63 | non-adjacent search fails. | ||
| 64 | |||
| 65 | 2007-02-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 66 | |||
| 67 | * version.el (emacs-major-version, emacs-minor-version): | ||
| 68 | string-to-int -> string-to-number. | ||
| 69 | |||
| 70 | 2007-02-28 Juanma Barranquero <lekktu@gmail.com> | ||
| 71 | |||
| 72 | * help.el (where-is): Fail gracefully when not passed a command. | ||
| 73 | |||
| 74 | 2007-02-28 Stuart Herring <herring@lanl.gov> (tiny change) | ||
| 75 | |||
| 76 | * find-lisp.el (find-lisp-default-directory-predicate): | ||
| 77 | Fix bug: Do symlink check on expanded filename. | ||
| 78 | |||
| 79 | 2007-02-28 Carsten Dominik <dominik@science.uva.nl> | ||
| 80 | |||
| 81 | * textmodes/org.el (org-set-tags, org-table-get-field): Avoid case | ||
| 82 | changes during replacement. | ||
| 83 | (org-agenda-mode-map): Add default binding for `org-agenda-archive'. | ||
| 84 | |||
| 85 | 2007-02-28 Lars Hansen <larsh@soem.dk> | ||
| 86 | |||
| 87 | * desktop.el: Delete header line listing me as maintainer. | ||
| 88 | |||
| 89 | 2007-02-28 Glenn Morris <rgm@gnu.org> | ||
| 90 | |||
| 91 | * tutorial.el (tutorial--describe-nonstandard-key): Tweak text in | ||
| 92 | the menus case. | ||
| 93 | |||
| 94 | 2007-02-28 Chong Yidong <cyd@stupidchicken.com> | ||
| 95 | |||
| 96 | * net/tramp.el (tramp-file-name-handler): Inhibit modification | ||
| 97 | hooks to avoid confusion when combining after-change calls. | ||
| 98 | |||
| 99 | 2007-02-27 Ken Manheimer <ken.manheimer@gmail.com> | ||
| 100 | |||
| 101 | * allout.el (allout-encrypt-string): Remove inhibition of gpg-agent, | ||
| 102 | now that pgg-gpg-process-region correctly honors passed-in passphrase. | ||
| 103 | (allout-distinctive-bullets-string): Add info about bullet conventions. | ||
| 104 | (allout-mode): Add info about distinctive vs plain bullets. | ||
| 105 | |||
| 106 | 2007-02-27 Carsten Dominik <dominik@science.uva.nl> | ||
| 107 | |||
| 108 | * textmodes/org.el (org-archive-subtree): Quote variable name. | ||
| 109 | (org-agenda-get-todos): Make sure skip properties are checked correctly. | ||
| 110 | |||
| 1 | 2007-02-26 Nick Roberts <nickrob@snap.net.nz> | 111 | 2007-02-26 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 112 | ||
| 3 | * progmodes/gud.el (gud, gud-menu-map): Remove references to bash/bashdb. | 113 | * progmodes/gud.el (gud-bashdb-history, gud-bashdb-marker-filter) |
| 4 | (gud-bashdb-history, gud-bashdb-marker-filter) | ||
| 5 | (gud-bashdb-command-name, bashdb): Remove. | 114 | (gud-bashdb-command-name, bashdb): Remove. |
| 115 | (gud, gud-menu-map): Remove references to bash/bashdb. | ||
| 6 | 116 | ||
| 7 | 2007-02-26 Andrey Zhdanov <susuman@hotmail.com> (tiny change) | 117 | 2007-02-26 Andrey Zhdanov <susuman@hotmail.com> (tiny change) |
| 8 | 118 | ||
| 9 | (gud-pdb-marker-regexp): Add optional <module> keyword for Python 2.5. | 119 | (gud-pdb-marker-regexp): Add optional <module> keyword for Python 2.5. |
| 10 | 120 | ||
diff --git a/lisp/allout.el b/lisp/allout.el index c744ba367e6..2330e6df121 100644 --- a/lisp/allout.el +++ b/lisp/allout.el | |||
| @@ -324,29 +324,42 @@ of this var to take effect." | |||
| 324 | (defcustom allout-distinctive-bullets-string "*+-=>()[{}&!?#%\"X@$~_\\:;^" | 324 | (defcustom allout-distinctive-bullets-string "*+-=>()[{}&!?#%\"X@$~_\\:;^" |
| 325 | "*Persistent outline header bullets used to distinguish special topics. | 325 | "*Persistent outline header bullets used to distinguish special topics. |
| 326 | 326 | ||
| 327 | These bullets are used to distinguish topics from the run-of-the-mill | 327 | These bullets are distinguish topics with particular character. |
| 328 | ones. They are not used in the standard topic headers created by | 328 | They are not used by default in the topic creation routines, but |
| 329 | the topic-opening, shifting, and rebulleting (eg, on topic shift, | 329 | are offered as options when you modify topic creation with a |
| 330 | topic paste, blanket rebulleting) routines, but are offered among the | 330 | universal argument \(\\[universal-argument]), or during rebulleting \(\\[allout-rebullet-current-heading]). |
| 331 | choices for rebulleting. They are not altered by the above automatic | 331 | |
| 332 | rebulleting, so they can be used to characterize topics, eg: | 332 | Distinctive bullets are not cycled when topics are shifted or |
| 333 | 333 | otherwise automatically rebulleted, so their marking is | |
| 334 | `?' question topics | 334 | persistent until deliberately changed. Their significance is |
| 335 | `(' parenthetic comment (with a matching close paren inside) | 335 | purely by convention, however. Some conventions suggest |
| 336 | `[' meta-note (with a matching close ] inside) | 336 | themselves: |
| 337 | `\"' a quotation | 337 | |
| 338 | `=' value settings | 338 | `(' - open paren - an aside or incidental point |
| 339 | `~' \"more or less\" | 339 | `?' - question mark - uncertain or outright question |
| 340 | `^' see above | 340 | `!' - exclamation point/bang - emphatic |
| 341 | 341 | `[' - open square bracket - meta-note, about item instead of item's subject | |
| 342 | ... for example. (`#' typically has a special meaning to the software, | 342 | `\"' - double quote - a quotation or other citation |
| 343 | according to the value of `allout-numbered-bullet'.) | 343 | `=' - equal sign - an assignement, equating a name with some connotation |
| 344 | 344 | `^' - carat - relates to something above | |
| 345 | See `allout-plain-bullets-string' for the selection of | 345 | |
| 346 | alternating bullets. | 346 | Some are more elusive, but their rationale may be recognizable: |
| 347 | |||
| 348 | `+' - plus - pending consideration, completion | ||
| 349 | `_' - underscore - done, completed | ||
| 350 | `&' - ampersand - addendum, furthermore | ||
| 351 | |||
| 352 | \(Some other non-plain bullets have special meaning to the | ||
| 353 | software. By default: | ||
| 354 | |||
| 355 | `~' marks encryptable topics - see `allout-topic-encryption-bullet' | ||
| 356 | `#' marks auto-numbered bullets - see `allout-numbered-bullet'.) | ||
| 357 | |||
| 358 | See `allout-plain-bullets-string' for the standard, alternating | ||
| 359 | bullets. | ||
| 347 | 360 | ||
| 348 | You must run `set-allout-regexp' in order for outline mode to | 361 | You must run `set-allout-regexp' in order for outline mode to |
| 349 | reconcile to changes of this value. | 362 | adopt changes of this value. |
| 350 | 363 | ||
| 351 | DO NOT include the close-square-bracket, `]', on either of the bullet | 364 | DO NOT include the close-square-bracket, `]', on either of the bullet |
| 352 | strings." | 365 | strings." |
| @@ -1878,11 +1891,14 @@ PREFIX-PADDING: | |||
| 1878 | bullet, determining the ITEM's DEPTH. | 1891 | bullet, determining the ITEM's DEPTH. |
| 1879 | BULLET: A character at the end of the ITEM PREFIX, it must be one of | 1892 | BULLET: A character at the end of the ITEM PREFIX, it must be one of |
| 1880 | the characters listed on `allout-plain-bullets-string' or | 1893 | the characters listed on `allout-plain-bullets-string' or |
| 1881 | `allout-distinctive-bullets-string'. (See the documentation | 1894 | `allout-distinctive-bullets-string'. When creating a TOPIC, |
| 1882 | for these variables for more details.) The default choice of | 1895 | plain BULLETs are by default used, according to the DEPTH of the |
| 1883 | BULLET when generating ITEMs varies in a cycle with the DEPTH of | 1896 | TOPIC. Choice among the distinctive BULLETs is offered when you |
| 1884 | the ITEM. | 1897 | provide a universal argugment \(\\[universal-argument]) to the |
| 1885 | 1898 | TOPIC creation command, or when explictly rebulleting a TOPIC. The | |
| 1899 | significance of the various distinctive bullets is purely by | ||
| 1900 | convention. See the documentation for the above bullet strings for | ||
| 1901 | more details. | ||
| 1886 | EXPOSURE: | 1902 | EXPOSURE: |
| 1887 | The state of a TOPIC which determines the on-screen visibility | 1903 | The state of a TOPIC which determines the on-screen visibility |
| 1888 | of its OFFSPRING and contained ENTRY text. | 1904 | of its OFFSPRING and contained ENTRY text. |
| @@ -1994,6 +2010,7 @@ OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be." | |||
| 1994 | minor-mode-map-alist))) | 2010 | minor-mode-map-alist))) |
| 1995 | 2011 | ||
| 1996 | (add-to-invisibility-spec '(allout . t)) | 2012 | (add-to-invisibility-spec '(allout . t)) |
| 2013 | |||
| 1997 | (allout-add-resumptions '(line-move-ignore-invisible t)) | 2014 | (allout-add-resumptions '(line-move-ignore-invisible t)) |
| 1998 | (add-hook 'pre-command-hook 'allout-pre-command-business nil t) | 2015 | (add-hook 'pre-command-hook 'allout-pre-command-business nil t) |
| 1999 | (add-hook 'post-command-hook 'allout-post-command-business nil t) | 2016 | (add-hook 'post-command-hook 'allout-post-command-business nil t) |
| @@ -5998,10 +6015,7 @@ Returns the resulting string, or nil if the transformation fails." | |||
| 5998 | (rejections-left (- allout-encryption-ciphertext-rejection-ceiling | 6015 | (rejections-left (- allout-encryption-ciphertext-rejection-ceiling |
| 5999 | rejected)) | 6016 | rejected)) |
| 6000 | result-text status | 6017 | result-text status |
| 6001 | ;; Inhibit gpg-agent use for symmetric keys in the scope of this let: | 6018 | ) |
| 6002 | (pgg-gpg-use-agent (if (equal key-type 'keypair) | ||
| 6003 | pgg-gpg-use-agent | ||
| 6004 | nil))) | ||
| 6005 | 6019 | ||
| 6006 | (if (and fetch-pass (not passphrase)) | 6020 | (if (and fetch-pass (not passphrase)) |
| 6007 | ;; Force later fetch by evicting passphrase from the cache. | 6021 | ;; Force later fetch by evicting passphrase from the cache. |
diff --git a/lisp/desktop.el b/lisp/desktop.el index 12cd378f0f4..e72df071495 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el | |||
| @@ -4,7 +4,6 @@ | |||
| 4 | ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc. | 4 | ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Morten Welinder <terra@diku.dk> | 6 | ;; Author: Morten Welinder <terra@diku.dk> |
| 7 | ;; Maintainter: Lars Hansen <larsh@soem.dk> | ||
| 8 | ;; Keywords: convenience | 7 | ;; Keywords: convenience |
| 9 | ;; Favourite-brand-of-beer: None, I hate beer. | 8 | ;; Favourite-brand-of-beer: None, I hate beer. |
| 10 | 9 | ||
diff --git a/lisp/files.el b/lisp/files.el index adec33ef77b..719cda70739 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -2285,14 +2285,12 @@ only set the major mode, if that would change it." | |||
| 2285 | If optional arg KEEP-MODE-IF-SAME is non-nil, MODE is chased of | 2285 | If optional arg KEEP-MODE-IF-SAME is non-nil, MODE is chased of |
| 2286 | any aliases and compared to current major mode. If they are the | 2286 | any aliases and compared to current major mode. If they are the |
| 2287 | same, do nothing and return nil." | 2287 | same, do nothing and return nil." |
| 2288 | (when keep-mode-if-same | 2288 | (unless (and keep-mode-if-same |
| 2289 | (while (symbolp (symbol-function mode)) | 2289 | (eq (indirect-function mode) |
| 2290 | (setq mode (symbol-function mode))) | 2290 | (indirect-function major-mode))) |
| 2291 | (if (eq mode major-mode) | 2291 | (when mode |
| 2292 | (setq mode nil))) | 2292 | (funcall mode) |
| 2293 | (when mode | 2293 | mode))) |
| 2294 | (funcall mode) | ||
| 2295 | mode)) | ||
| 2296 | 2294 | ||
| 2297 | (defun set-auto-mode-1 () | 2295 | (defun set-auto-mode-1 () |
| 2298 | "Find the -*- spec in the buffer. | 2296 | "Find the -*- spec in the buffer. |
| @@ -2811,9 +2809,15 @@ It is dangerous if either of these conditions are met: | |||
| 2811 | ok))))))) | 2809 | ok))))))) |
| 2812 | 2810 | ||
| 2813 | (defun hack-one-local-variable (var val) | 2811 | (defun hack-one-local-variable (var val) |
| 2814 | "Set local variable VAR with value VAL." | 2812 | "Set local variable VAR with value VAL. |
| 2813 | If VAR is `mode', call `VAL-mode' as a function unless it's | ||
| 2814 | already the major mode." | ||
| 2815 | (cond ((eq var 'mode) | 2815 | (cond ((eq var 'mode) |
| 2816 | (funcall (intern (concat (downcase (symbol-name val)) "-mode")))) | 2816 | (let ((mode (intern (concat (downcase (symbol-name val)) |
| 2817 | "-mode")))) | ||
| 2818 | (unless (eq (indirect-function mode) | ||
| 2819 | (indirect-function major-mode)) | ||
| 2820 | (funcall mode)))) | ||
| 2817 | ((eq var 'eval) | 2821 | ((eq var 'eval) |
| 2818 | (save-excursion (eval val))) | 2822 | (save-excursion (eval val))) |
| 2819 | (t | 2823 | (t |
diff --git a/lisp/find-lisp.el b/lisp/find-lisp.el index 18e30ef37eb..0dd35f23514 100644 --- a/lisp/find-lisp.el +++ b/lisp/find-lisp.el | |||
| @@ -95,7 +95,7 @@ PARENT is the parent directory of DIR." | |||
| 95 | (string= dir "..") | 95 | (string= dir "..") |
| 96 | ;; Skip directories which are symlinks | 96 | ;; Skip directories which are symlinks |
| 97 | ;; Easy way to circumvent recursive loops | 97 | ;; Easy way to circumvent recursive loops |
| 98 | (file-symlink-p dir)))) | 98 | (file-symlink-p (expand-file-name dir parent))))) |
| 99 | 99 | ||
| 100 | (defun find-lisp-default-file-predicate (file dir) | 100 | (defun find-lisp-default-file-predicate (file dir) |
| 101 | "True if FILE matches `find-lisp-regexp'. | 101 | "True if FILE matches `find-lisp-regexp'. |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index c6205eac0ce..d3354bd14eb 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2007-02-28 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * message.el (message-make-in-reply-to): Quote name containing | ||
| 4 | non-ASCII characters. It will make the RFC2047 encoder cause an error | ||
| 5 | if there are special characters. Reported by NAKAJI Hiroyuki | ||
| 6 | <nakaji@kankyo-u.ac.jp>. | ||
| 7 | |||
| 8 | 2007-02-27 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 9 | |||
| 10 | * nntp.el (nntp-never-echoes-commands) | ||
| 11 | (nntp-open-connection-functions-never-echo-commands): New variables. | ||
| 12 | (nntp-send-command): Use them. | ||
| 13 | |||
| 1 | 2007-02-15 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> | 14 | 2007-02-15 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> |
| 2 | 15 | ||
| 3 | * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on | 16 | * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 0f9046756e1..55a7653dba1 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4864,13 +4864,32 @@ If NOW, use that time instead." | |||
| 4864 | (msg-id (mail-header-message-id message-reply-headers))) | 4864 | (msg-id (mail-header-message-id message-reply-headers))) |
| 4865 | (when from | 4865 | (when from |
| 4866 | (let ((name (mail-extract-address-components from))) | 4866 | (let ((name (mail-extract-address-components from))) |
| 4867 | (concat msg-id (if msg-id " (") | 4867 | (concat |
| 4868 | (or (car name) | 4868 | msg-id (if msg-id " (") |
| 4869 | (nth 1 name)) | 4869 | (if (car name) |
| 4870 | "'s message of \"" | 4870 | (if (string-match "[^\000-\177]" (car name)) |
| 4871 | (if (or (not date) (string= date "")) | 4871 | ;; Quote a string containing non-ASCII characters. |
| 4872 | "(unknown date)" date) | 4872 | ;; It will make the RFC2047 encoder cause an error |
| 4873 | "\"" (if msg-id ")"))))))) | 4873 | ;; if there are special characters. |
| 4874 | (let ((default-enable-multibyte-characters t)) | ||
| 4875 | (with-temp-buffer | ||
| 4876 | (insert (car name)) | ||
| 4877 | (goto-char (point-min)) | ||
| 4878 | (while (search-forward "\"" nil t) | ||
| 4879 | (when (prog2 | ||
| 4880 | (backward-char) | ||
| 4881 | (zerop (% (skip-chars-backward "\\\\") 2)) | ||
| 4882 | (goto-char (match-beginning 0))) | ||
| 4883 | (insert "\\")) | ||
| 4884 | (forward-char)) | ||
| 4885 | ;; Those quotes will be removed by the RFC2047 encoder. | ||
| 4886 | (concat "\"" (buffer-string) "\""))) | ||
| 4887 | (car name)) | ||
| 4888 | (nth 1 name)) | ||
| 4889 | "'s message of \"" | ||
| 4890 | (if (or (not date) (string= date "")) | ||
| 4891 | "(unknown date)" date) | ||
| 4892 | "\"" (if msg-id ")"))))))) | ||
| 4874 | 4893 | ||
| 4875 | (defun message-make-distribution () | 4894 | (defun message-make-distribution () |
| 4876 | "Make a Distribution header." | 4895 | "Make a Distribution header." |
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 867ea5419f2..25b924a93e7 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el | |||
| @@ -88,6 +88,21 @@ Indirect connections: | |||
| 88 | - `nntp-open-via-rlogin-and-telnet', | 88 | - `nntp-open-via-rlogin-and-telnet', |
| 89 | - `nntp-open-via-telnet-and-telnet'.") | 89 | - `nntp-open-via-telnet-and-telnet'.") |
| 90 | 90 | ||
| 91 | (defvoo nntp-never-echoes-commands nil | ||
| 92 | "*Non-nil means the nntp server never echoes commands. | ||
| 93 | It is reported that some nntps server doesn't echo commands. So, you | ||
| 94 | may want to set this to non-nil in the method for such a server setting | ||
| 95 | `nntp-open-connection-function' to `nntp-open-ssl-stream' for example. | ||
| 96 | Note that the `nntp-open-connection-functions-never-echo-commands' | ||
| 97 | variable overrides the nil value of this variable.") | ||
| 98 | |||
| 99 | (defvoo nntp-open-connection-functions-never-echo-commands | ||
| 100 | '(nntp-open-network-stream) | ||
| 101 | "*List of functions that never echo commands. | ||
| 102 | Add or set a function which you set to `nntp-open-connection-function' | ||
| 103 | to this list if it does not echo commands. Note that a non-nil value | ||
| 104 | of the `nntp-never-echoes-commands' variable overrides this variable.") | ||
| 105 | |||
| 91 | (defvoo nntp-pre-command nil | 106 | (defvoo nntp-pre-command nil |
| 92 | "*Pre-command to use with the various nntp-open-via-* methods. | 107 | "*Pre-command to use with the various nntp-open-via-* methods. |
| 93 | This is where you would put \"runsocks\" or stuff like that.") | 108 | This is where you would put \"runsocks\" or stuff like that.") |
| @@ -450,11 +465,15 @@ be restored and the command retried." | |||
| 450 | nntp-server-buffer | 465 | nntp-server-buffer |
| 451 | wait-for nnheader-callback-function) | 466 | wait-for nnheader-callback-function) |
| 452 | ;; If nothing to wait for, still remove possibly echo'ed commands. | 467 | ;; If nothing to wait for, still remove possibly echo'ed commands. |
| 453 | ;; We don't have echos if nntp-open-connection-function | 468 | ;; We don't have echoes if `nntp-never-echoes-commands' is non-nil |
| 454 | ;; is `nntp-open-network-stream', so we skip this in that case. | 469 | ;; or the value of `nntp-open-connection-function' is in |
| 470 | ;; `nntp-open-connection-functions-never-echo-commands', so we | ||
| 471 | ;; skip this in that cases. | ||
| 455 | (unless (or wait-for | 472 | (unless (or wait-for |
| 456 | (equal nntp-open-connection-function | 473 | nntp-never-echoes-commands |
| 457 | 'nntp-open-network-stream)) | 474 | (memq |
| 475 | nntp-open-connection-function | ||
| 476 | nntp-open-connection-functions-never-echo-commands)) | ||
| 458 | (nntp-accept-response) | 477 | (nntp-accept-response) |
| 459 | (save-excursion | 478 | (save-excursion |
| 460 | (set-buffer buffer) | 479 | (set-buffer buffer) |
diff --git a/lisp/help.el b/lisp/help.el index 8aa9ba6c46b..d0783dd0351 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -491,6 +491,7 @@ If INSERT (the prefix arg) is non-nil, insert the message in the buffer." | |||
| 491 | "Where is command: ") | 491 | "Where is command: ") |
| 492 | obarray 'commandp t)) | 492 | obarray 'commandp t)) |
| 493 | (list (if (equal val "") fn (intern val)) current-prefix-arg))) | 493 | (list (if (equal val "") fn (intern val)) current-prefix-arg))) |
| 494 | (unless definition (error "No command")) | ||
| 494 | (let ((func (indirect-function definition)) | 495 | (let ((func (indirect-function definition)) |
| 495 | (defs nil) | 496 | (defs nil) |
| 496 | (standard-output (if insert (current-buffer) t))) | 497 | (standard-output (if insert (current-buffer) t))) |
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 358c3768dc1..e3bb77b6d4f 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -1724,7 +1724,7 @@ If nothing is specified, the return value is nil." | |||
| 1724 | ;; is just "\r" and we can't use "^" nor "$" in regexp. | 1724 | ;; is just "\r" and we can't use "^" nor "$" in regexp. |
| 1725 | (when (and tail-found (or (not coding-system) (not char-trans))) | 1725 | (when (and tail-found (or (not coding-system) (not char-trans))) |
| 1726 | (goto-char tail-start) | 1726 | (goto-char tail-start) |
| 1727 | (re-search-forward "[\r\n]\^L" nil t) | 1727 | (re-search-forward "[\r\n]\^L" tail-end t) |
| 1728 | (if (re-search-forward | 1728 | (if (re-search-forward |
| 1729 | "[\r\n]\\([^[\r\n]*\\)[ \t]*Local Variables:[ \t]*\\([^\r\n]*\\)[\r\n]" | 1729 | "[\r\n]\\([^[\r\n]*\\)[ \t]*Local Variables:[ \t]*\\([^\r\n]*\\)[\r\n]" |
| 1730 | tail-end t) | 1730 | tail-end t) |
diff --git a/lisp/isearch.el b/lisp/isearch.el index e9fca098c09..76f6115fc23 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -1953,8 +1953,9 @@ If there is no completion possible, say so and continue searching." | |||
| 1953 | (concat " [" current-input-method-title "]: ") | 1953 | (concat " [" current-input-method-title "]: ") |
| 1954 | ": ") | 1954 | ": ") |
| 1955 | ))) | 1955 | ))) |
| 1956 | (propertize (concat (upcase (substring m 0 1)) (substring m 1)) | 1956 | (apply 'propertize |
| 1957 | 'face 'minibuffer-prompt))) | 1957 | (concat (upcase (substring m 0 1)) (substring m 1)) |
| 1958 | minibuffer-prompt-properties))) | ||
| 1958 | 1959 | ||
| 1959 | (defun isearch-message-suffix (&optional c-q-hack ellipsis) | 1960 | (defun isearch-message-suffix (&optional c-q-hack ellipsis) |
| 1960 | (concat (if c-q-hack "^Q" "") | 1961 | (concat (if c-q-hack "^Q" "") |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index d06b42f4d9b..be62c40bc64 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -63,14 +63,14 @@ should return a grid vector array that is the new solution. | |||
| 63 | 63 | ||
| 64 | ;;;*** | 64 | ;;;*** |
| 65 | 65 | ||
| 66 | ;;;### (autoloads nil "abbrev" "abbrev.el" (17851 10813)) | 66 | ;;;### (autoloads nil "abbrev" "abbrev.el" (17843 27858)) |
| 67 | ;;; Generated autoloads from abbrev.el | 67 | ;;; Generated autoloads from abbrev.el |
| 68 | (put 'abbrev-mode 'safe-local-variable 'booleanp) | 68 | (put 'abbrev-mode 'safe-local-variable 'booleanp) |
| 69 | 69 | ||
| 70 | ;;;*** | 70 | ;;;*** |
| 71 | 71 | ||
| 72 | ;;;### (autoloads (list-one-abbrev-table) "abbrevlist" "abbrevlist.el" | 72 | ;;;### (autoloads (list-one-abbrev-table) "abbrevlist" "abbrevlist.el" |
| 73 | ;;;;;; (17851 10813)) | 73 | ;;;;;; (17843 27858)) |
| 74 | ;;; Generated autoloads from abbrevlist.el | 74 | ;;; Generated autoloads from abbrevlist.el |
| 75 | 75 | ||
| 76 | (autoload (quote list-one-abbrev-table) "abbrevlist" "\ | 76 | (autoload (quote list-one-abbrev-table) "abbrevlist" "\ |
| @@ -81,7 +81,7 @@ Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER. | |||
| 81 | ;;;*** | 81 | ;;;*** |
| 82 | 82 | ||
| 83 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" | 83 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" |
| 84 | ;;;;;; (17851 10866)) | 84 | ;;;;;; (17843 27880)) |
| 85 | ;;; Generated autoloads from progmodes/ada-mode.el | 85 | ;;; Generated autoloads from progmodes/ada-mode.el |
| 86 | 86 | ||
| 87 | (autoload (quote ada-add-extensions) "ada-mode" "\ | 87 | (autoload (quote ada-add-extensions) "ada-mode" "\ |
| @@ -142,7 +142,7 @@ If you use ada-xref.el: | |||
| 142 | ;;;*** | 142 | ;;;*** |
| 143 | 143 | ||
| 144 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" | 144 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" |
| 145 | ;;;;;; (17851 10866)) | 145 | ;;;;;; (17843 27880)) |
| 146 | ;;; Generated autoloads from progmodes/ada-stmt.el | 146 | ;;; Generated autoloads from progmodes/ada-stmt.el |
| 147 | 147 | ||
| 148 | (autoload (quote ada-header) "ada-stmt" "\ | 148 | (autoload (quote ada-header) "ada-stmt" "\ |
| @@ -153,7 +153,7 @@ Insert a descriptive header at the top of the file. | |||
| 153 | ;;;*** | 153 | ;;;*** |
| 154 | 154 | ||
| 155 | ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" | 155 | ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" |
| 156 | ;;;;;; (17851 10866)) | 156 | ;;;;;; (17843 27880)) |
| 157 | ;;; Generated autoloads from progmodes/ada-xref.el | 157 | ;;; Generated autoloads from progmodes/ada-xref.el |
| 158 | 158 | ||
| 159 | (autoload (quote ada-find-file) "ada-xref" "\ | 159 | (autoload (quote ada-find-file) "ada-xref" "\ |
| @@ -306,7 +306,7 @@ Fix any old-style date entries in the current log file to default format. | |||
| 306 | 306 | ||
| 307 | ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice | 307 | ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice |
| 308 | ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) | 308 | ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) |
| 309 | ;;;;;; "advice" "emacs-lisp/advice.el" (17851 10852)) | 309 | ;;;;;; "advice" "emacs-lisp/advice.el" (17843 27868)) |
| 310 | ;;; Generated autoloads from emacs-lisp/advice.el | 310 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 311 | 311 | ||
| 312 | (defvar ad-redefinition-action (quote warn) "\ | 312 | (defvar ad-redefinition-action (quote warn) "\ |
| @@ -434,7 +434,7 @@ See Info node `(elisp)Advising Functions' for comprehensive documentation. | |||
| 434 | 434 | ||
| 435 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule | 435 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule |
| 436 | ;;;;;; align-highlight-rule align-current align-entire align-regexp | 436 | ;;;;;; align-highlight-rule align-current align-entire align-regexp |
| 437 | ;;;;;; align) "align" "align.el" (17851 10813)) | 437 | ;;;;;; align) "align" "align.el" (17843 27858)) |
| 438 | ;;; Generated autoloads from align.el | 438 | ;;; Generated autoloads from align.el |
| 439 | 439 | ||
| 440 | (autoload (quote align) "align" "\ | 440 | (autoload (quote align) "align" "\ |
| @@ -524,7 +524,7 @@ A replacement function for `newline-and-indent', aligning as it goes. | |||
| 524 | ;;;*** | 524 | ;;;*** |
| 525 | 525 | ||
| 526 | ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" | 526 | ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" |
| 527 | ;;;;;; (17851 10813)) | 527 | ;;;;;; (17892 53245)) |
| 528 | ;;; Generated autoloads from allout.el | 528 | ;;; Generated autoloads from allout.el |
| 529 | 529 | ||
| 530 | (put (quote allout-show-bodies) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) | 530 | (put (quote allout-show-bodies) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) |
| @@ -796,11 +796,14 @@ PREFIX-PADDING: | |||
| 796 | bullet, determining the ITEM's DEPTH. | 796 | bullet, determining the ITEM's DEPTH. |
| 797 | BULLET: A character at the end of the ITEM PREFIX, it must be one of | 797 | BULLET: A character at the end of the ITEM PREFIX, it must be one of |
| 798 | the characters listed on `allout-plain-bullets-string' or | 798 | the characters listed on `allout-plain-bullets-string' or |
| 799 | `allout-distinctive-bullets-string'. (See the documentation | 799 | `allout-distinctive-bullets-string'. When creating a TOPIC, |
| 800 | for these variables for more details.) The default choice of | 800 | plain BULLETs are by default used, according to the DEPTH of the |
| 801 | BULLET when generating ITEMs varies in a cycle with the DEPTH of | 801 | TOPIC. Choice among the distinctive BULLETs is offered when you |
| 802 | the ITEM. | 802 | provide a universal argugment (\\[universal-argument]) to the |
| 803 | 803 | TOPIC creation command, or when explictly rebulleting a TOPIC. The | |
| 804 | significance of the various distinctive bullets is purely by | ||
| 805 | convention. See the documentation for the above bullet strings for | ||
| 806 | more details. | ||
| 804 | EXPOSURE: | 807 | EXPOSURE: |
| 805 | The state of a TOPIC which determines the on-screen visibility | 808 | The state of a TOPIC which determines the on-screen visibility |
| 806 | of its OFFSPRING and contained ENTRY text. | 809 | of its OFFSPRING and contained ENTRY text. |
| @@ -849,7 +852,7 @@ Not documented | |||
| 849 | ;;;*** | 852 | ;;;*** |
| 850 | 853 | ||
| 851 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) | 854 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) |
| 852 | ;;;;;; "animate" "play/animate.el" (17851 10865)) | 855 | ;;;;;; "animate" "play/animate.el" (17843 27879)) |
| 853 | ;;; Generated autoloads from play/animate.el | 856 | ;;; Generated autoloads from play/animate.el |
| 854 | 857 | ||
| 855 | (autoload (quote animate-string) "animate" "\ | 858 | (autoload (quote animate-string) "animate" "\ |
| @@ -877,7 +880,7 @@ You can specify the one's name by NAME; the default value is \"Sarah\". | |||
| 877 | ;;;*** | 880 | ;;;*** |
| 878 | 881 | ||
| 879 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) | 882 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) |
| 880 | ;;;;;; "ansi-color" "ansi-color.el" (17851 10813)) | 883 | ;;;;;; "ansi-color" "ansi-color.el" (17843 27858)) |
| 881 | ;;; Generated autoloads from ansi-color.el | 884 | ;;; Generated autoloads from ansi-color.el |
| 882 | 885 | ||
| 883 | (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ | 886 | (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ |
| @@ -903,7 +906,7 @@ This is a good function to put in `comint-output-filter-functions'. | |||
| 903 | ;;;*** | 906 | ;;;*** |
| 904 | 907 | ||
| 905 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) | 908 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) |
| 906 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17851 10866)) | 909 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17838 58220)) |
| 907 | ;;; Generated autoloads from progmodes/antlr-mode.el | 910 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 908 | 911 | ||
| 909 | (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ | 912 | (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ |
| @@ -942,7 +945,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 942 | ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add | 945 | ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add |
| 943 | ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line | 946 | ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line |
| 944 | ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time | 947 | ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time |
| 945 | ;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17851 10850)) | 948 | ;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17843 27868)) |
| 946 | ;;; Generated autoloads from calendar/appt.el | 949 | ;;; Generated autoloads from calendar/appt.el |
| 947 | 950 | ||
| 948 | (defvar appt-issue-message t "\ | 951 | (defvar appt-issue-message t "\ |
| @@ -1030,7 +1033,7 @@ ARG is positive, otherwise off. | |||
| 1030 | 1033 | ||
| 1031 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property | 1034 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property |
| 1032 | ;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" | 1035 | ;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" |
| 1033 | ;;;;;; "apropos.el" (17851 10813)) | 1036 | ;;;;;; "apropos.el" (17843 27858)) |
| 1034 | ;;; Generated autoloads from apropos.el | 1037 | ;;; Generated autoloads from apropos.el |
| 1035 | 1038 | ||
| 1036 | (autoload (quote apropos-read-pattern) "apropos" "\ | 1039 | (autoload (quote apropos-read-pattern) "apropos" "\ |
| @@ -1126,8 +1129,8 @@ Returns list of symbols and documentation found. | |||
| 1126 | 1129 | ||
| 1127 | ;;;*** | 1130 | ;;;*** |
| 1128 | 1131 | ||
| 1129 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17851 | 1132 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17843 |
| 1130 | ;;;;;; 10814)) | 1133 | ;;;;;; 27858)) |
| 1131 | ;;; Generated autoloads from arc-mode.el | 1134 | ;;; Generated autoloads from arc-mode.el |
| 1132 | 1135 | ||
| 1133 | (autoload (quote archive-mode) "arc-mode" "\ | 1136 | (autoload (quote archive-mode) "arc-mode" "\ |
| @@ -1147,7 +1150,7 @@ archive. | |||
| 1147 | 1150 | ||
| 1148 | ;;;*** | 1151 | ;;;*** |
| 1149 | 1152 | ||
| 1150 | ;;;### (autoloads (array-mode) "array" "array.el" (17851 10814)) | 1153 | ;;;### (autoloads (array-mode) "array" "array.el" (17843 27858)) |
| 1151 | ;;; Generated autoloads from array.el | 1154 | ;;; Generated autoloads from array.el |
| 1152 | 1155 | ||
| 1153 | (autoload (quote array-mode) "array" "\ | 1156 | (autoload (quote array-mode) "array" "\ |
| @@ -1218,8 +1221,8 @@ Entering array mode calls the function `array-mode-hook'. | |||
| 1218 | 1221 | ||
| 1219 | ;;;*** | 1222 | ;;;*** |
| 1220 | 1223 | ||
| 1221 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17851 | 1224 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17843 |
| 1222 | ;;;;;; 10872)) | 1225 | ;;;;;; 27884)) |
| 1223 | ;;; Generated autoloads from textmodes/artist.el | 1226 | ;;; Generated autoloads from textmodes/artist.el |
| 1224 | 1227 | ||
| 1225 | (autoload (quote artist-mode) "artist" "\ | 1228 | (autoload (quote artist-mode) "artist" "\ |
| @@ -1424,8 +1427,8 @@ Keymap summary | |||
| 1424 | 1427 | ||
| 1425 | ;;;*** | 1428 | ;;;*** |
| 1426 | 1429 | ||
| 1427 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17851 | 1430 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17843 |
| 1428 | ;;;;;; 10866)) | 1431 | ;;;;;; 27880)) |
| 1429 | ;;; Generated autoloads from progmodes/asm-mode.el | 1432 | ;;; Generated autoloads from progmodes/asm-mode.el |
| 1430 | 1433 | ||
| 1431 | (autoload (quote asm-mode) "asm-mode" "\ | 1434 | (autoload (quote asm-mode) "asm-mode" "\ |
| @@ -1453,7 +1456,7 @@ Special commands: | |||
| 1453 | ;;;*** | 1456 | ;;;*** |
| 1454 | 1457 | ||
| 1455 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" | 1458 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" |
| 1456 | ;;;;;; (17851 10814)) | 1459 | ;;;;;; (17843 27858)) |
| 1457 | ;;; Generated autoloads from autoarg.el | 1460 | ;;; Generated autoloads from autoarg.el |
| 1458 | 1461 | ||
| 1459 | (defvar autoarg-mode nil "\ | 1462 | (defvar autoarg-mode nil "\ |
| @@ -1507,7 +1510,7 @@ etc. to supply digit arguments. | |||
| 1507 | ;;;*** | 1510 | ;;;*** |
| 1508 | 1511 | ||
| 1509 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" | 1512 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" |
| 1510 | ;;;;;; (17851 10866)) | 1513 | ;;;;;; (17843 27880)) |
| 1511 | ;;; Generated autoloads from progmodes/autoconf.el | 1514 | ;;; Generated autoloads from progmodes/autoconf.el |
| 1512 | 1515 | ||
| 1513 | (autoload (quote autoconf-mode) "autoconf" "\ | 1516 | (autoload (quote autoconf-mode) "autoconf" "\ |
| @@ -1518,7 +1521,7 @@ Major mode for editing Autoconf configure.in files. | |||
| 1518 | ;;;*** | 1521 | ;;;*** |
| 1519 | 1522 | ||
| 1520 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) | 1523 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) |
| 1521 | ;;;;;; "autoinsert" "autoinsert.el" (17851 10814)) | 1524 | ;;;;;; "autoinsert" "autoinsert.el" (17843 27858)) |
| 1522 | ;;; Generated autoloads from autoinsert.el | 1525 | ;;; Generated autoloads from autoinsert.el |
| 1523 | 1526 | ||
| 1524 | (autoload (quote auto-insert) "autoinsert" "\ | 1527 | (autoload (quote auto-insert) "autoinsert" "\ |
| @@ -1592,7 +1595,7 @@ Calls `update-directory-autoloads' on the command line arguments. | |||
| 1592 | 1595 | ||
| 1593 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode | 1596 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode |
| 1594 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) | 1597 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) |
| 1595 | ;;;;;; "autorevert" "autorevert.el" (17851 10814)) | 1598 | ;;;;;; "autorevert" "autorevert.el" (17843 27858)) |
| 1596 | ;;; Generated autoloads from autorevert.el | 1599 | ;;; Generated autoloads from autorevert.el |
| 1597 | 1600 | ||
| 1598 | (autoload (quote auto-revert-mode) "autorevert" "\ | 1601 | (autoload (quote auto-revert-mode) "autorevert" "\ |
| @@ -1661,7 +1664,7 @@ Use `auto-revert-mode' to revert a particular buffer. | |||
| 1661 | ;;;*** | 1664 | ;;;*** |
| 1662 | 1665 | ||
| 1663 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" | 1666 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" |
| 1664 | ;;;;;; "avoid.el" (17851 10814)) | 1667 | ;;;;;; "avoid.el" (17843 27858)) |
| 1665 | ;;; Generated autoloads from avoid.el | 1668 | ;;; Generated autoloads from avoid.el |
| 1666 | 1669 | ||
| 1667 | (defvar mouse-avoidance-mode nil "\ | 1670 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1702,7 +1705,7 @@ definition of \"random distance\".) | |||
| 1702 | ;;;*** | 1705 | ;;;*** |
| 1703 | 1706 | ||
| 1704 | ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" | 1707 | ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" |
| 1705 | ;;;;;; (17851 10852)) | 1708 | ;;;;;; (17843 27869)) |
| 1706 | ;;; Generated autoloads from emacs-lisp/backquote.el | 1709 | ;;; Generated autoloads from emacs-lisp/backquote.el |
| 1707 | 1710 | ||
| 1708 | (autoload (quote backquote) "backquote" "\ | 1711 | (autoload (quote backquote) "backquote" "\ |
| @@ -1727,7 +1730,7 @@ Vectors work just like lists. Nested backquotes are permitted. | |||
| 1727 | ;;;*** | 1730 | ;;;*** |
| 1728 | 1731 | ||
| 1729 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" | 1732 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" |
| 1730 | ;;;;;; (17851 10815)) | 1733 | ;;;;;; (17843 27858)) |
| 1731 | ;;; Generated autoloads from battery.el | 1734 | ;;; Generated autoloads from battery.el |
| 1732 | (put 'battery-mode-line-string 'risky-local-variable t) | 1735 | (put 'battery-mode-line-string 'risky-local-variable t) |
| 1733 | 1736 | ||
| @@ -1759,7 +1762,7 @@ seconds. | |||
| 1759 | ;;;*** | 1762 | ;;;*** |
| 1760 | 1763 | ||
| 1761 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) | 1764 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) |
| 1762 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17851 10852)) | 1765 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17843 27869)) |
| 1763 | ;;; Generated autoloads from emacs-lisp/benchmark.el | 1766 | ;;; Generated autoloads from emacs-lisp/benchmark.el |
| 1764 | 1767 | ||
| 1765 | (autoload (quote benchmark-run) "benchmark" "\ | 1768 | (autoload (quote benchmark-run) "benchmark" "\ |
| @@ -1854,7 +1857,7 @@ if that value is non-nil. | |||
| 1854 | 1857 | ||
| 1855 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external | 1858 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external |
| 1856 | ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" | 1859 | ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" |
| 1857 | ;;;;;; (17851 10856)) | 1860 | ;;;;;; (17843 27871)) |
| 1858 | ;;; Generated autoloads from gnus/binhex.el | 1861 | ;;; Generated autoloads from gnus/binhex.el |
| 1859 | 1862 | ||
| 1860 | (defconst binhex-begin-line "^:...............................................................$") | 1863 | (defconst binhex-begin-line "^:...............................................................$") |
| @@ -1877,8 +1880,8 @@ Binhex decode region between START and END. | |||
| 1877 | 1880 | ||
| 1878 | ;;;*** | 1881 | ;;;*** |
| 1879 | 1882 | ||
| 1880 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17851 | 1883 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17843 |
| 1881 | ;;;;;; 10865)) | 1884 | ;;;;;; 27879)) |
| 1882 | ;;; Generated autoloads from play/blackbox.el | 1885 | ;;; Generated autoloads from play/blackbox.el |
| 1883 | 1886 | ||
| 1884 | (autoload (quote blackbox) "blackbox" "\ | 1887 | (autoload (quote blackbox) "blackbox" "\ |
| @@ -2000,7 +2003,7 @@ a reflection. | |||
| 2000 | ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save | 2003 | ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save |
| 2001 | ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename | 2004 | ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename |
| 2002 | ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump | 2005 | ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump |
| 2003 | ;;;;;; bookmark-set) "bookmark" "bookmark.el" (17851 10815)) | 2006 | ;;;;;; bookmark-set) "bookmark" "bookmark.el" (17843 27858)) |
| 2004 | ;;; Generated autoloads from bookmark.el | 2007 | ;;; Generated autoloads from bookmark.el |
| 2005 | (define-key ctl-x-map "rb" 'bookmark-jump) | 2008 | (define-key ctl-x-map "rb" 'bookmark-jump) |
| 2006 | (define-key ctl-x-map "rm" 'bookmark-set) | 2009 | (define-key ctl-x-map "rm" 'bookmark-set) |
| @@ -2190,7 +2193,7 @@ deletion, or > if it is flagged for displaying. | |||
| 2190 | ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file | 2193 | ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file |
| 2191 | ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point | 2194 | ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point |
| 2192 | ;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) | 2195 | ;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) |
| 2193 | ;;;;;; "browse-url" "net/browse-url.el" (17851 10863)) | 2196 | ;;;;;; "browse-url" "net/browse-url.el" (17843 27879)) |
| 2194 | ;;; Generated autoloads from net/browse-url.el | 2197 | ;;; Generated autoloads from net/browse-url.el |
| 2195 | 2198 | ||
| 2196 | (defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\ | 2199 | (defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\ |
| @@ -2521,8 +2524,8 @@ Default to the URL around or before point. | |||
| 2521 | 2524 | ||
| 2522 | ;;;*** | 2525 | ;;;*** |
| 2523 | 2526 | ||
| 2524 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17851 | 2527 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17843 |
| 2525 | ;;;;;; 10865)) | 2528 | ;;;;;; 27879)) |
| 2526 | ;;; Generated autoloads from play/bruce.el | 2529 | ;;; Generated autoloads from play/bruce.el |
| 2527 | 2530 | ||
| 2528 | (autoload (quote bruce) "bruce" "\ | 2531 | (autoload (quote bruce) "bruce" "\ |
| @@ -2538,7 +2541,7 @@ Return a vector containing the lines from `bruce-phrases-file'. | |||
| 2538 | ;;;*** | 2541 | ;;;*** |
| 2539 | 2542 | ||
| 2540 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) | 2543 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) |
| 2541 | ;;;;;; "bs" "bs.el" (17851 10816)) | 2544 | ;;;;;; "bs" "bs.el" (17843 27858)) |
| 2542 | ;;; Generated autoloads from bs.el | 2545 | ;;; Generated autoloads from bs.el |
| 2543 | 2546 | ||
| 2544 | (autoload (quote bs-cycle-next) "bs" "\ | 2547 | (autoload (quote bs-cycle-next) "bs" "\ |
| @@ -2579,8 +2582,8 @@ name of buffer configuration. | |||
| 2579 | ;;;*** | 2582 | ;;;*** |
| 2580 | 2583 | ||
| 2581 | ;;;### (autoloads (insert-text-button make-text-button insert-button | 2584 | ;;;### (autoloads (insert-text-button make-text-button insert-button |
| 2582 | ;;;;;; make-button define-button-type) "button" "button.el" (17851 | 2585 | ;;;;;; make-button define-button-type) "button" "button.el" (17843 |
| 2583 | ;;;;;; 10816)) | 2586 | ;;;;;; 27858)) |
| 2584 | ;;; Generated autoloads from button.el | 2587 | ;;; Generated autoloads from button.el |
| 2585 | 2588 | ||
| 2586 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ | 2589 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ |
| @@ -2774,7 +2777,7 @@ and corresponding effects. | |||
| 2774 | 2777 | ||
| 2775 | ;;;*** | 2778 | ;;;*** |
| 2776 | 2779 | ||
| 2777 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17851 10850)) | 2780 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17843 27868)) |
| 2778 | ;;; Generated autoloads from calendar/cal-dst.el | 2781 | ;;; Generated autoloads from calendar/cal-dst.el |
| 2779 | 2782 | ||
| 2780 | (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) | 2783 | (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) |
| @@ -2784,7 +2787,7 @@ and corresponding effects. | |||
| 2784 | ;;;*** | 2787 | ;;;*** |
| 2785 | 2788 | ||
| 2786 | ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" | 2789 | ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" |
| 2787 | ;;;;;; (17851 10850)) | 2790 | ;;;;;; (17843 27868)) |
| 2788 | ;;; Generated autoloads from calendar/cal-hebrew.el | 2791 | ;;; Generated autoloads from calendar/cal-hebrew.el |
| 2789 | 2792 | ||
| 2790 | (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ | 2793 | (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ |
| @@ -2799,7 +2802,7 @@ from the cursor position. | |||
| 2799 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle | 2802 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle |
| 2800 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc | 2803 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc |
| 2801 | ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" | 2804 | ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" |
| 2802 | ;;;;;; (17851 10850)) | 2805 | ;;;;;; (17843 27868)) |
| 2803 | ;;; Generated autoloads from calc/calc.el | 2806 | ;;; Generated autoloads from calc/calc.el |
| 2804 | 2807 | ||
| 2805 | (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ | 2808 | (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ |
| @@ -2906,7 +2909,7 @@ See the documentation for `calculator-mode' for more information. | |||
| 2906 | ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially | 2909 | ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially |
| 2907 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar | 2910 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar |
| 2908 | ;;;;;; view-diary-entries-initially calendar-offset) "calendar" | 2911 | ;;;;;; view-diary-entries-initially calendar-offset) "calendar" |
| 2909 | ;;;;;; "calendar/calendar.el" (17851 10851)) | 2912 | ;;;;;; "calendar/calendar.el" (17843 27868)) |
| 2910 | ;;; Generated autoloads from calendar/calendar.el | 2913 | ;;; Generated autoloads from calendar/calendar.el |
| 2911 | 2914 | ||
| 2912 | (defvar calendar-offset 0 "\ | 2915 | (defvar calendar-offset 0 "\ |
| @@ -3479,7 +3482,7 @@ movement commands will not work correctly.") | |||
| 3479 | ;;;*** | 3482 | ;;;*** |
| 3480 | 3483 | ||
| 3481 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" | 3484 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" |
| 3482 | ;;;;;; "gnus/canlock.el" (17851 10856)) | 3485 | ;;;;;; "gnus/canlock.el" (17843 27871)) |
| 3483 | ;;; Generated autoloads from gnus/canlock.el | 3486 | ;;; Generated autoloads from gnus/canlock.el |
| 3484 | 3487 | ||
| 3485 | (autoload (quote canlock-insert-header) "canlock" "\ | 3488 | (autoload (quote canlock-insert-header) "canlock" "\ |
| @@ -3496,8 +3499,8 @@ it fails. | |||
| 3496 | 3499 | ||
| 3497 | ;;;*** | 3500 | ;;;*** |
| 3498 | 3501 | ||
| 3499 | ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (17851 | 3502 | ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (17843 |
| 3500 | ;;;;;; 10866)) | 3503 | ;;;;;; 27880)) |
| 3501 | ;;; Generated autoloads from progmodes/cc-compat.el | 3504 | ;;; Generated autoloads from progmodes/cc-compat.el |
| 3502 | (put 'c-indent-level 'safe-local-variable 'integerp) | 3505 | (put 'c-indent-level 'safe-local-variable 'integerp) |
| 3503 | 3506 | ||
| @@ -3516,7 +3519,7 @@ Return the syntactic context of the current line. | |||
| 3516 | 3519 | ||
| 3517 | ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode | 3520 | ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode |
| 3518 | ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" | 3521 | ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" |
| 3519 | ;;;;;; (17851 10867)) | 3522 | ;;;;;; (17843 27880)) |
| 3520 | ;;; Generated autoloads from progmodes/cc-mode.el | 3523 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3521 | 3524 | ||
| 3522 | (autoload (quote c-initialize-cc-mode) "cc-mode" "\ | 3525 | (autoload (quote c-initialize-cc-mode) "cc-mode" "\ |
| @@ -3674,7 +3677,7 @@ Key bindings: | |||
| 3674 | ;;;*** | 3677 | ;;;*** |
| 3675 | 3678 | ||
| 3676 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" | 3679 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" |
| 3677 | ;;;;;; "progmodes/cc-styles.el" (17851 10867)) | 3680 | ;;;;;; "progmodes/cc-styles.el" (17843 27880)) |
| 3678 | ;;; Generated autoloads from progmodes/cc-styles.el | 3681 | ;;; Generated autoloads from progmodes/cc-styles.el |
| 3679 | 3682 | ||
| 3680 | (autoload (quote c-set-style) "cc-styles" "\ | 3683 | (autoload (quote c-set-style) "cc-styles" "\ |
| @@ -3725,8 +3728,8 @@ and exists only for compatibility reasons. | |||
| 3725 | 3728 | ||
| 3726 | ;;;*** | 3729 | ;;;*** |
| 3727 | 3730 | ||
| 3728 | ;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17851 | 3731 | ;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17843 |
| 3729 | ;;;;;; 10867)) | 3732 | ;;;;;; 27880)) |
| 3730 | ;;; Generated autoloads from progmodes/cc-subword.el | 3733 | ;;; Generated autoloads from progmodes/cc-subword.el |
| 3731 | (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) | 3734 | (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) |
| 3732 | 3735 | ||
| @@ -3742,7 +3745,7 @@ and exists only for compatibility reasons. | |||
| 3742 | 3745 | ||
| 3743 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program | 3746 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program |
| 3744 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" | 3747 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" |
| 3745 | ;;;;;; (17851 10860)) | 3748 | ;;;;;; (17843 27876)) |
| 3746 | ;;; Generated autoloads from international/ccl.el | 3749 | ;;; Generated autoloads from international/ccl.el |
| 3747 | 3750 | ||
| 3748 | (autoload (quote ccl-compile) "ccl" "\ | 3751 | (autoload (quote ccl-compile) "ccl" "\ |
| @@ -4001,7 +4004,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 4001 | ;;;*** | 4004 | ;;;*** |
| 4002 | 4005 | ||
| 4003 | ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" | 4006 | ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" |
| 4004 | ;;;;;; (17851 10867)) | 4007 | ;;;;;; (17843 27880)) |
| 4005 | ;;; Generated autoloads from progmodes/cfengine.el | 4008 | ;;; Generated autoloads from progmodes/cfengine.el |
| 4006 | 4009 | ||
| 4007 | (autoload (quote cfengine-mode) "cfengine" "\ | 4010 | (autoload (quote cfengine-mode) "cfengine" "\ |
| @@ -4023,7 +4026,7 @@ to the action header. | |||
| 4023 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer | 4026 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer |
| 4024 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive | 4027 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive |
| 4025 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" | 4028 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" |
| 4026 | ;;;;;; (17851 10852)) | 4029 | ;;;;;; (17843 27869)) |
| 4027 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 4030 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 4028 | 4031 | ||
| 4029 | (autoload (quote checkdoc) "checkdoc" "\ | 4032 | (autoload (quote checkdoc) "checkdoc" "\ |
| @@ -4206,8 +4209,8 @@ checking of documentation strings. | |||
| 4206 | ;;;*** | 4209 | ;;;*** |
| 4207 | 4210 | ||
| 4208 | ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer | 4211 | ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer |
| 4209 | ;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17851 | 4212 | ;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17843 |
| 4210 | ;;;;;; 10861)) | 4213 | ;;;;;; 27877)) |
| 4211 | ;;; Generated autoloads from language/china-util.el | 4214 | ;;; Generated autoloads from language/china-util.el |
| 4212 | 4215 | ||
| 4213 | (autoload (quote decode-hz-region) "china-util" "\ | 4216 | (autoload (quote decode-hz-region) "china-util" "\ |
| @@ -4235,7 +4238,7 @@ Encode the text in the current buffer to HZ. | |||
| 4235 | ;;;*** | 4238 | ;;;*** |
| 4236 | 4239 | ||
| 4237 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) | 4240 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) |
| 4238 | ;;;;;; "chistory" "chistory.el" (17851 10817)) | 4241 | ;;;;;; "chistory" "chistory.el" (17843 27858)) |
| 4239 | ;;; Generated autoloads from chistory.el | 4242 | ;;; Generated autoloads from chistory.el |
| 4240 | 4243 | ||
| 4241 | (autoload (quote repeat-matching-complex-command) "chistory" "\ | 4244 | (autoload (quote repeat-matching-complex-command) "chistory" "\ |
| @@ -4274,7 +4277,7 @@ and runs the normal hook `command-history-hook'. | |||
| 4274 | 4277 | ||
| 4275 | ;;;*** | 4278 | ;;;*** |
| 4276 | 4279 | ||
| 4277 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17851 10852)) | 4280 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17843 27869)) |
| 4278 | ;;; Generated autoloads from emacs-lisp/cl.el | 4281 | ;;; Generated autoloads from emacs-lisp/cl.el |
| 4279 | 4282 | ||
| 4280 | (defvar custom-print-functions nil "\ | 4283 | (defvar custom-print-functions nil "\ |
| @@ -4290,7 +4293,7 @@ a future Emacs interpreter will be able to use it.") | |||
| 4290 | ;;;*** | 4293 | ;;;*** |
| 4291 | 4294 | ||
| 4292 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" | 4295 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" |
| 4293 | ;;;;;; (17851 10852)) | 4296 | ;;;;;; (17843 27869)) |
| 4294 | ;;; Generated autoloads from emacs-lisp/cl-indent.el | 4297 | ;;; Generated autoloads from emacs-lisp/cl-indent.el |
| 4295 | 4298 | ||
| 4296 | (autoload (quote common-lisp-indent-function) "cl-indent" "\ | 4299 | (autoload (quote common-lisp-indent-function) "cl-indent" "\ |
| @@ -4301,7 +4304,7 @@ Not documented | |||
| 4301 | ;;;*** | 4304 | ;;;*** |
| 4302 | 4305 | ||
| 4303 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" | 4306 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" |
| 4304 | ;;;;;; (17851 10867)) | 4307 | ;;;;;; (17843 27880)) |
| 4305 | ;;; Generated autoloads from progmodes/cmacexp.el | 4308 | ;;; Generated autoloads from progmodes/cmacexp.el |
| 4306 | 4309 | ||
| 4307 | (autoload (quote c-macro-expand) "cmacexp" "\ | 4310 | (autoload (quote c-macro-expand) "cmacexp" "\ |
| @@ -4321,8 +4324,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. | |||
| 4321 | 4324 | ||
| 4322 | ;;;*** | 4325 | ;;;*** |
| 4323 | 4326 | ||
| 4324 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17851 | 4327 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17843 |
| 4325 | ;;;;;; 10817)) | 4328 | ;;;;;; 27858)) |
| 4326 | ;;; Generated autoloads from cmuscheme.el | 4329 | ;;; Generated autoloads from cmuscheme.el |
| 4327 | 4330 | ||
| 4328 | (autoload (quote run-scheme) "cmuscheme" "\ | 4331 | (autoload (quote run-scheme) "cmuscheme" "\ |
| @@ -4345,7 +4348,7 @@ is run). | |||
| 4345 | 4348 | ||
| 4346 | ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage | 4349 | ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage |
| 4347 | ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) | 4350 | ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) |
| 4348 | ;;;;;; "codepage" "international/codepage.el" (17851 10860)) | 4351 | ;;;;;; "codepage" "international/codepage.el" (17843 27876)) |
| 4349 | ;;; Generated autoloads from international/codepage.el | 4352 | ;;; Generated autoloads from international/codepage.el |
| 4350 | 4353 | ||
| 4351 | (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ | 4354 | (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ |
| @@ -4404,7 +4407,7 @@ read/written by MS-DOS software, or for display on the MS-DOS terminal. | |||
| 4404 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list | 4407 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list |
| 4405 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command | 4408 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command |
| 4406 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" | 4409 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" |
| 4407 | ;;;;;; (17856 42110)) | 4410 | ;;;;;; (17892 53316)) |
| 4408 | ;;; Generated autoloads from comint.el | 4411 | ;;; Generated autoloads from comint.el |
| 4409 | 4412 | ||
| 4410 | (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ | 4413 | (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ |
| @@ -4494,8 +4497,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. | |||
| 4494 | 4497 | ||
| 4495 | ;;;*** | 4498 | ;;;*** |
| 4496 | 4499 | ||
| 4497 | ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17851 | 4500 | ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17843 |
| 4498 | ;;;;;; 10817)) | 4501 | ;;;;;; 27858)) |
| 4499 | ;;; Generated autoloads from compare-w.el | 4502 | ;;; Generated autoloads from compare-w.el |
| 4500 | 4503 | ||
| 4501 | (autoload (quote compare-windows) "compare-w" "\ | 4504 | (autoload (quote compare-windows) "compare-w" "\ |
| @@ -4532,7 +4535,7 @@ on third call it again advances points to the next difference and so on. | |||
| 4532 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start | 4535 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start |
| 4533 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path | 4536 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path |
| 4534 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) | 4537 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) |
| 4535 | ;;;;;; "compile" "progmodes/compile.el" (17851 10867)) | 4538 | ;;;;;; "compile" "progmodes/compile.el" (17843 27880)) |
| 4536 | ;;; Generated autoloads from progmodes/compile.el | 4539 | ;;; Generated autoloads from progmodes/compile.el |
| 4537 | 4540 | ||
| 4538 | (defvar compilation-mode-hook nil "\ | 4541 | (defvar compilation-mode-hook nil "\ |
| @@ -4694,7 +4697,7 @@ This is the value of `next-error-function' in Compilation buffers. | |||
| 4694 | ;;;*** | 4697 | ;;;*** |
| 4695 | 4698 | ||
| 4696 | ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" | 4699 | ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" |
| 4697 | ;;;;;; (17851 10818)) | 4700 | ;;;;;; (17843 27858)) |
| 4698 | ;;; Generated autoloads from complete.el | 4701 | ;;; Generated autoloads from complete.el |
| 4699 | 4702 | ||
| 4700 | (defvar partial-completion-mode nil "\ | 4703 | (defvar partial-completion-mode nil "\ |
| @@ -4736,7 +4739,7 @@ second TAB brings up the `*Completions*' buffer. | |||
| 4736 | ;;;*** | 4739 | ;;;*** |
| 4737 | 4740 | ||
| 4738 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" | 4741 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" |
| 4739 | ;;;;;; (17851 10818)) | 4742 | ;;;;;; (17843 27858)) |
| 4740 | ;;; Generated autoloads from completion.el | 4743 | ;;; Generated autoloads from completion.el |
| 4741 | 4744 | ||
| 4742 | (defvar dynamic-completion-mode nil "\ | 4745 | (defvar dynamic-completion-mode nil "\ |
| @@ -4758,7 +4761,7 @@ Enable dynamic word-completion. | |||
| 4758 | ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after | 4761 | ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after |
| 4759 | ;;;;;; find-composition compose-chars decompose-string compose-string | 4762 | ;;;;;; find-composition compose-chars decompose-string compose-string |
| 4760 | ;;;;;; decompose-region compose-region encode-composition-rule) | 4763 | ;;;;;; decompose-region compose-region encode-composition-rule) |
| 4761 | ;;;;;; "composite" "composite.el" (17851 10818)) | 4764 | ;;;;;; "composite" "composite.el" (17843 27858)) |
| 4762 | ;;; Generated autoloads from composite.el | 4765 | ;;; Generated autoloads from composite.el |
| 4763 | 4766 | ||
| 4764 | (defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\ | 4767 | (defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\ |
| @@ -4980,7 +4983,7 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored. | |||
| 4980 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode | 4983 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode |
| 4981 | ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode | 4984 | ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode |
| 4982 | ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" | 4985 | ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" |
| 4983 | ;;;;;; (17851 10872)) | 4986 | ;;;;;; (17843 27885)) |
| 4984 | ;;; Generated autoloads from textmodes/conf-mode.el | 4987 | ;;; Generated autoloads from textmodes/conf-mode.el |
| 4985 | 4988 | ||
| 4986 | (autoload (quote conf-mode) "conf-mode" "\ | 4989 | (autoload (quote conf-mode) "conf-mode" "\ |
| @@ -5136,7 +5139,7 @@ For details see `conf-mode'. Example: | |||
| 5136 | ;;;*** | 5139 | ;;;*** |
| 5137 | 5140 | ||
| 5138 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) | 5141 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) |
| 5139 | ;;;;;; "cookie1" "play/cookie1.el" (17851 10865)) | 5142 | ;;;;;; "cookie1" "play/cookie1.el" (17843 27879)) |
| 5140 | ;;; Generated autoloads from play/cookie1.el | 5143 | ;;; Generated autoloads from play/cookie1.el |
| 5141 | 5144 | ||
| 5142 | (autoload (quote cookie) "cookie1" "\ | 5145 | (autoload (quote cookie) "cookie1" "\ |
| @@ -5168,7 +5171,7 @@ Randomly permute the elements of VECTOR (all permutations equally likely). | |||
| 5168 | ;;;*** | 5171 | ;;;*** |
| 5169 | 5172 | ||
| 5170 | ;;;### (autoloads (copyright copyright-fix-years copyright-update) | 5173 | ;;;### (autoloads (copyright copyright-fix-years copyright-update) |
| 5171 | ;;;;;; "copyright" "emacs-lisp/copyright.el" (17851 10852)) | 5174 | ;;;;;; "copyright" "emacs-lisp/copyright.el" (17843 27869)) |
| 5172 | ;;; Generated autoloads from emacs-lisp/copyright.el | 5175 | ;;; Generated autoloads from emacs-lisp/copyright.el |
| 5173 | 5176 | ||
| 5174 | (autoload (quote copyright-update) "copyright" "\ | 5177 | (autoload (quote copyright-update) "copyright" "\ |
| @@ -5196,7 +5199,7 @@ Insert a copyright by $ORGANIZATION notice at cursor. | |||
| 5196 | ;;;*** | 5199 | ;;;*** |
| 5197 | 5200 | ||
| 5198 | ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) | 5201 | ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) |
| 5199 | ;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (17851 10867)) | 5202 | ;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (17843 27881)) |
| 5200 | ;;; Generated autoloads from progmodes/cperl-mode.el | 5203 | ;;; Generated autoloads from progmodes/cperl-mode.el |
| 5201 | 5204 | ||
| 5202 | (autoload (quote cperl-mode) "cperl-mode" "\ | 5205 | (autoload (quote cperl-mode) "cperl-mode" "\ |
| @@ -5387,7 +5390,7 @@ Run a `perldoc' on the word around point. | |||
| 5387 | ;;;*** | 5390 | ;;;*** |
| 5388 | 5391 | ||
| 5389 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" | 5392 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" |
| 5390 | ;;;;;; (17851 10867)) | 5393 | ;;;;;; (17843 27881)) |
| 5391 | ;;; Generated autoloads from progmodes/cpp.el | 5394 | ;;; Generated autoloads from progmodes/cpp.el |
| 5392 | 5395 | ||
| 5393 | (autoload (quote cpp-highlight-buffer) "cpp" "\ | 5396 | (autoload (quote cpp-highlight-buffer) "cpp" "\ |
| @@ -5406,7 +5409,7 @@ Edit display information for cpp conditionals. | |||
| 5406 | ;;;*** | 5409 | ;;;*** |
| 5407 | 5410 | ||
| 5408 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" | 5411 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" |
| 5409 | ;;;;;; (17851 10853)) | 5412 | ;;;;;; (17843 27869)) |
| 5410 | ;;; Generated autoloads from emulation/crisp.el | 5413 | ;;; Generated autoloads from emulation/crisp.el |
| 5411 | 5414 | ||
| 5412 | (defvar crisp-mode nil "\ | 5415 | (defvar crisp-mode nil "\ |
| @@ -5430,7 +5433,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. | |||
| 5430 | ;;;*** | 5433 | ;;;*** |
| 5431 | 5434 | ||
| 5432 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" | 5435 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" |
| 5433 | ;;;;;; (17851 10852)) | 5436 | ;;;;;; (17843 27869)) |
| 5434 | ;;; Generated autoloads from emacs-lisp/crm.el | 5437 | ;;; Generated autoloads from emacs-lisp/crm.el |
| 5435 | 5438 | ||
| 5436 | (autoload (quote completing-read-multiple) "crm" "\ | 5439 | (autoload (quote completing-read-multiple) "crm" "\ |
| @@ -5466,7 +5469,7 @@ INHERIT-INPUT-METHOD. | |||
| 5466 | ;;;*** | 5469 | ;;;*** |
| 5467 | 5470 | ||
| 5468 | ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" | 5471 | ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" |
| 5469 | ;;;;;; (17853 23392)) | 5472 | ;;;;;; (17889 58740)) |
| 5470 | ;;; Generated autoloads from emulation/cua-base.el | 5473 | ;;; Generated autoloads from emulation/cua-base.el |
| 5471 | 5474 | ||
| 5472 | (defvar cua-mode nil "\ | 5475 | (defvar cua-mode nil "\ |
| @@ -5534,7 +5537,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | |||
| 5534 | ;;;;;; customize-mode customize customize-save-variable customize-set-variable | 5537 | ;;;;;; customize-mode customize customize-save-variable customize-set-variable |
| 5535 | ;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically | 5538 | ;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically |
| 5536 | ;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el" | 5539 | ;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el" |
| 5537 | ;;;;;; (17851 10819)) | 5540 | ;;;;;; (17889 58740)) |
| 5538 | ;;; Generated autoloads from cus-edit.el | 5541 | ;;; Generated autoloads from cus-edit.el |
| 5539 | 5542 | ||
| 5540 | (defvar custom-browse-sort-alphabetically nil "\ | 5543 | (defvar custom-browse-sort-alphabetically nil "\ |
| @@ -5838,7 +5841,7 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5838 | ;;;*** | 5841 | ;;;*** |
| 5839 | 5842 | ||
| 5840 | ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces | 5843 | ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces |
| 5841 | ;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17851 10821)) | 5844 | ;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17843 27858)) |
| 5842 | ;;; Generated autoloads from cus-face.el | 5845 | ;;; Generated autoloads from cus-face.el |
| 5843 | 5846 | ||
| 5844 | (autoload (quote custom-declare-face) "cus-face" "\ | 5847 | (autoload (quote custom-declare-face) "cus-face" "\ |
| @@ -5908,7 +5911,7 @@ This means reset FACE to its value in FROM-THEME. | |||
| 5908 | ;;;*** | 5911 | ;;;*** |
| 5909 | 5912 | ||
| 5910 | ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" | 5913 | ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" |
| 5911 | ;;;;;; (17851 10821)) | 5914 | ;;;;;; (17843 27858)) |
| 5912 | ;;; Generated autoloads from cus-theme.el | 5915 | ;;; Generated autoloads from cus-theme.el |
| 5913 | 5916 | ||
| 5914 | (autoload (quote customize-create-theme) "cus-theme" "\ | 5917 | (autoload (quote customize-create-theme) "cus-theme" "\ |
| @@ -5919,7 +5922,7 @@ Create a custom theme. | |||
| 5919 | ;;;*** | 5922 | ;;;*** |
| 5920 | 5923 | ||
| 5921 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" | 5924 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" |
| 5922 | ;;;;;; (17851 10822)) | 5925 | ;;;;;; (17843 27858)) |
| 5923 | ;;; Generated autoloads from cvs-status.el | 5926 | ;;; Generated autoloads from cvs-status.el |
| 5924 | 5927 | ||
| 5925 | (autoload (quote cvs-status-mode) "cvs-status" "\ | 5928 | (autoload (quote cvs-status-mode) "cvs-status" "\ |
| @@ -5973,7 +5976,7 @@ in which `turn-on-cwarn-mode-if-enabled' turns it on. | |||
| 5973 | 5976 | ||
| 5974 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char | 5977 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char |
| 5975 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" | 5978 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" |
| 5976 | ;;;;;; (17851 10861)) | 5979 | ;;;;;; (17843 27877)) |
| 5977 | ;;; Generated autoloads from language/cyril-util.el | 5980 | ;;; Generated autoloads from language/cyril-util.el |
| 5978 | 5981 | ||
| 5979 | (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ | 5982 | (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ |
| @@ -6002,7 +6005,7 @@ If the argument is nil, we return the display table to its standard state. | |||
| 6002 | ;;;*** | 6005 | ;;;*** |
| 6003 | 6006 | ||
| 6004 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" | 6007 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" |
| 6005 | ;;;;;; (17851 10822)) | 6008 | ;;;;;; (17843 27858)) |
| 6006 | ;;; Generated autoloads from dabbrev.el | 6009 | ;;; Generated autoloads from dabbrev.el |
| 6007 | (define-key esc-map "/" 'dabbrev-expand) | 6010 | (define-key esc-map "/" 'dabbrev-expand) |
| 6008 | (define-key esc-map [?\C-/] 'dabbrev-completion) | 6011 | (define-key esc-map [?\C-/] 'dabbrev-completion) |
| @@ -6046,8 +6049,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. | |||
| 6046 | 6049 | ||
| 6047 | ;;;*** | 6050 | ;;;*** |
| 6048 | 6051 | ||
| 6049 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17851 | 6052 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17843 |
| 6050 | ;;;;;; 10867)) | 6053 | ;;;;;; 27881)) |
| 6051 | ;;; Generated autoloads from progmodes/dcl-mode.el | 6054 | ;;; Generated autoloads from progmodes/dcl-mode.el |
| 6052 | 6055 | ||
| 6053 | (autoload (quote dcl-mode) "dcl-mode" "\ | 6056 | (autoload (quote dcl-mode) "dcl-mode" "\ |
| @@ -6174,7 +6177,7 @@ There is some minimal font-lock support (see vars | |||
| 6174 | ;;;*** | 6177 | ;;;*** |
| 6175 | 6178 | ||
| 6176 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" | 6179 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" |
| 6177 | ;;;;;; "emacs-lisp/debug.el" (17851 10852)) | 6180 | ;;;;;; "emacs-lisp/debug.el" (17843 27869)) |
| 6178 | ;;; Generated autoloads from emacs-lisp/debug.el | 6181 | ;;; Generated autoloads from emacs-lisp/debug.el |
| 6179 | 6182 | ||
| 6180 | (setq debugger (quote debug)) | 6183 | (setq debugger (quote debug)) |
| @@ -6218,7 +6221,7 @@ To specify a nil argument interactively, exit with an empty minibuffer. | |||
| 6218 | ;;;*** | 6221 | ;;;*** |
| 6219 | 6222 | ||
| 6220 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" | 6223 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" |
| 6221 | ;;;;;; (17851 10865)) | 6224 | ;;;;;; (17843 27879)) |
| 6222 | ;;; Generated autoloads from play/decipher.el | 6225 | ;;; Generated autoloads from play/decipher.el |
| 6223 | 6226 | ||
| 6224 | (autoload (quote decipher) "decipher" "\ | 6227 | (autoload (quote decipher) "decipher" "\ |
| @@ -6247,8 +6250,8 @@ The most useful commands are: | |||
| 6247 | ;;;*** | 6250 | ;;;*** |
| 6248 | 6251 | ||
| 6249 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region | 6252 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region |
| 6250 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17851 | 6253 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17843 |
| 6251 | ;;;;;; 10822)) | 6254 | ;;;;;; 27858)) |
| 6252 | ;;; Generated autoloads from delim-col.el | 6255 | ;;; Generated autoloads from delim-col.el |
| 6253 | 6256 | ||
| 6254 | (autoload (quote delimit-columns-customize) "delim-col" "\ | 6257 | (autoload (quote delimit-columns-customize) "delim-col" "\ |
| @@ -6272,8 +6275,8 @@ START and END delimits the corners of text rectangle. | |||
| 6272 | 6275 | ||
| 6273 | ;;;*** | 6276 | ;;;*** |
| 6274 | 6277 | ||
| 6275 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17851 | 6278 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17843 |
| 6276 | ;;;;;; 10867)) | 6279 | ;;;;;; 27881)) |
| 6277 | ;;; Generated autoloads from progmodes/delphi.el | 6280 | ;;; Generated autoloads from progmodes/delphi.el |
| 6278 | 6281 | ||
| 6279 | (autoload (quote delphi-mode) "delphi" "\ | 6282 | (autoload (quote delphi-mode) "delphi" "\ |
| @@ -6323,8 +6326,8 @@ no args, if that value is non-nil. | |||
| 6323 | 6326 | ||
| 6324 | ;;;*** | 6327 | ;;;*** |
| 6325 | 6328 | ||
| 6326 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17851 | 6329 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17843 |
| 6327 | ;;;;;; 10822)) | 6330 | ;;;;;; 27858)) |
| 6328 | ;;; Generated autoloads from delsel.el | 6331 | ;;; Generated autoloads from delsel.el |
| 6329 | 6332 | ||
| 6330 | (defalias (quote pending-delete-mode) (quote delete-selection-mode)) | 6333 | (defalias (quote pending-delete-mode) (quote delete-selection-mode)) |
| @@ -6353,7 +6356,7 @@ any selection. | |||
| 6353 | ;;;*** | 6356 | ;;;*** |
| 6354 | 6357 | ||
| 6355 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) | 6358 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) |
| 6356 | ;;;;;; "derived" "emacs-lisp/derived.el" (17851 10852)) | 6359 | ;;;;;; "derived" "emacs-lisp/derived.el" (17843 27869)) |
| 6357 | ;;; Generated autoloads from emacs-lisp/derived.el | 6360 | ;;; Generated autoloads from emacs-lisp/derived.el |
| 6358 | 6361 | ||
| 6359 | (autoload (quote define-derived-mode) "derived" "\ | 6362 | (autoload (quote define-derived-mode) "derived" "\ |
| @@ -6444,7 +6447,7 @@ as well as widgets, buttons, overlays, and text properties. | |||
| 6444 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir | 6447 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir |
| 6445 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save | 6448 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save |
| 6446 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" | 6449 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" |
| 6447 | ;;;;;; "desktop.el" (17851 10822)) | 6450 | ;;;;;; "desktop.el" (17893 52879)) |
| 6448 | ;;; Generated autoloads from desktop.el | 6451 | ;;; Generated autoloads from desktop.el |
| 6449 | 6452 | ||
| 6450 | (defvar desktop-save-mode nil "\ | 6453 | (defvar desktop-save-mode nil "\ |
| @@ -6627,7 +6630,7 @@ Revert to the last loaded desktop. | |||
| 6627 | 6630 | ||
| 6628 | ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article | 6631 | ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article |
| 6629 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) | 6632 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) |
| 6630 | ;;;;;; "deuglify" "gnus/deuglify.el" (17851 10856)) | 6633 | ;;;;;; "deuglify" "gnus/deuglify.el" (17843 27871)) |
| 6631 | ;;; Generated autoloads from gnus/deuglify.el | 6634 | ;;; Generated autoloads from gnus/deuglify.el |
| 6632 | 6635 | ||
| 6633 | (autoload (quote gnus-article-outlook-unwrap-lines) "deuglify" "\ | 6636 | (autoload (quote gnus-article-outlook-unwrap-lines) "deuglify" "\ |
| @@ -6660,7 +6663,7 @@ Deuglify broken Outlook (Express) articles and redisplay. | |||
| 6660 | ;;;*** | 6663 | ;;;*** |
| 6661 | 6664 | ||
| 6662 | ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) | 6665 | ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) |
| 6663 | ;;;;;; "devan-util" "language/devan-util.el" (17851 10861)) | 6666 | ;;;;;; "devan-util" "language/devan-util.el" (17843 27877)) |
| 6664 | ;;; Generated autoloads from language/devan-util.el | 6667 | ;;; Generated autoloads from language/devan-util.el |
| 6665 | 6668 | ||
| 6666 | (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") | 6669 | (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") |
| @@ -6678,7 +6681,7 @@ Not documented | |||
| 6678 | ;;;*** | 6681 | ;;;*** |
| 6679 | 6682 | ||
| 6680 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" | 6683 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" |
| 6681 | ;;;;;; "calendar/diary-lib.el" (17851 10852)) | 6684 | ;;;;;; "calendar/diary-lib.el" (17843 27868)) |
| 6682 | ;;; Generated autoloads from calendar/diary-lib.el | 6685 | ;;; Generated autoloads from calendar/diary-lib.el |
| 6683 | 6686 | ||
| 6684 | (autoload (quote diary) "diary-lib" "\ | 6687 | (autoload (quote diary) "diary-lib" "\ |
| @@ -6724,7 +6727,7 @@ Major mode for editing the diary file. | |||
| 6724 | ;;;*** | 6727 | ;;;*** |
| 6725 | 6728 | ||
| 6726 | ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" | 6729 | ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" |
| 6727 | ;;;;;; "diff.el" (17851 10822)) | 6730 | ;;;;;; "diff.el" (17843 27859)) |
| 6728 | ;;; Generated autoloads from diff.el | 6731 | ;;; Generated autoloads from diff.el |
| 6729 | 6732 | ||
| 6730 | (defvar diff-switches "-c" "\ | 6733 | (defvar diff-switches "-c" "\ |
| @@ -6758,7 +6761,7 @@ With prefix arg, prompt for diff switches. | |||
| 6758 | ;;;*** | 6761 | ;;;*** |
| 6759 | 6762 | ||
| 6760 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" | 6763 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" |
| 6761 | ;;;;;; (17867 21034)) | 6764 | ;;;;;; (17892 53316)) |
| 6762 | ;;; Generated autoloads from diff-mode.el | 6765 | ;;; Generated autoloads from diff-mode.el |
| 6763 | 6766 | ||
| 6764 | (autoload (quote diff-mode) "diff-mode" "\ | 6767 | (autoload (quote diff-mode) "diff-mode" "\ |
| @@ -7437,7 +7440,7 @@ For absolute symlinks, use \\[dired-do-symlink]. | |||
| 7437 | 7440 | ||
| 7438 | ;;;*** | 7441 | ;;;*** |
| 7439 | 7442 | ||
| 7440 | ;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17851 10823)) | 7443 | ;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17843 27859)) |
| 7441 | ;;; Generated autoloads from dirtrack.el | 7444 | ;;; Generated autoloads from dirtrack.el |
| 7442 | 7445 | ||
| 7443 | (autoload (quote dirtrack) "dirtrack" "\ | 7446 | (autoload (quote dirtrack) "dirtrack" "\ |
| @@ -7456,8 +7459,8 @@ You can enable directory tracking by adding this function to | |||
| 7456 | 7459 | ||
| 7457 | ;;;*** | 7460 | ;;;*** |
| 7458 | 7461 | ||
| 7459 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17851 | 7462 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17843 |
| 7460 | ;;;;;; 10852)) | 7463 | ;;;;;; 27869)) |
| 7461 | ;;; Generated autoloads from emacs-lisp/disass.el | 7464 | ;;; Generated autoloads from emacs-lisp/disass.el |
| 7462 | 7465 | ||
| 7463 | (autoload (quote disassemble) "disass" "\ | 7466 | (autoload (quote disassemble) "disass" "\ |
| @@ -7592,7 +7595,7 @@ for users who call this function in `.emacs'. | |||
| 7592 | ;;;*** | 7595 | ;;;*** |
| 7593 | 7596 | ||
| 7594 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" | 7597 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" |
| 7595 | ;;;;;; (17851 10865)) | 7598 | ;;;;;; (17843 27879)) |
| 7596 | ;;; Generated autoloads from play/dissociate.el | 7599 | ;;; Generated autoloads from play/dissociate.el |
| 7597 | 7600 | ||
| 7598 | (autoload (quote dissociated-press) "dissociate" "\ | 7601 | (autoload (quote dissociated-press) "dissociate" "\ |
| @@ -7608,7 +7611,7 @@ Default is 2. | |||
| 7608 | 7611 | ||
| 7609 | ;;;*** | 7612 | ;;;*** |
| 7610 | 7613 | ||
| 7611 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17851 10823)) | 7614 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17843 27859)) |
| 7612 | ;;; Generated autoloads from dnd.el | 7615 | ;;; Generated autoloads from dnd.el |
| 7613 | 7616 | ||
| 7614 | (defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file) ("^\\(https?\\|ftp\\|file\\|nfs\\)://" . dnd-open-file))) "\ | 7617 | (defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file) ("^\\(https?\\|ftp\\|file\\|nfs\\)://" . dnd-open-file))) "\ |
| @@ -7629,7 +7632,7 @@ if some action was made, or nil if the URL is ignored.") | |||
| 7629 | ;;;*** | 7632 | ;;;*** |
| 7630 | 7633 | ||
| 7631 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" | 7634 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" |
| 7632 | ;;;;;; "textmodes/dns-mode.el" (17851 10872)) | 7635 | ;;;;;; "textmodes/dns-mode.el" (17843 27885)) |
| 7633 | ;;; Generated autoloads from textmodes/dns-mode.el | 7636 | ;;; Generated autoloads from textmodes/dns-mode.el |
| 7634 | 7637 | ||
| 7635 | (autoload (quote dns-mode) "dns-mode" "\ | 7638 | (autoload (quote dns-mode) "dns-mode" "\ |
| @@ -7653,7 +7656,7 @@ Locate SOA record and increment the serial field. | |||
| 7653 | 7656 | ||
| 7654 | ;;;*** | 7657 | ;;;*** |
| 7655 | 7658 | ||
| 7656 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17851 10865)) | 7659 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17843 27879)) |
| 7657 | ;;; Generated autoloads from play/doctor.el | 7660 | ;;; Generated autoloads from play/doctor.el |
| 7658 | 7661 | ||
| 7659 | (autoload (quote doctor) "doctor" "\ | 7662 | (autoload (quote doctor) "doctor" "\ |
| @@ -7664,7 +7667,7 @@ Switch to *doctor* buffer and start giving psychotherapy. | |||
| 7664 | ;;;*** | 7667 | ;;;*** |
| 7665 | 7668 | ||
| 7666 | ;;;### (autoloads (double-mode double-mode) "double" "double.el" | 7669 | ;;;### (autoloads (double-mode double-mode) "double" "double.el" |
| 7667 | ;;;;;; (17851 10823)) | 7670 | ;;;;;; (17843 27859)) |
| 7668 | ;;; Generated autoloads from double.el | 7671 | ;;; Generated autoloads from double.el |
| 7669 | 7672 | ||
| 7670 | (defvar double-mode nil "\ | 7673 | (defvar double-mode nil "\ |
| @@ -7685,7 +7688,7 @@ when pressed twice. See variable `double-map' for details. | |||
| 7685 | 7688 | ||
| 7686 | ;;;*** | 7689 | ;;;*** |
| 7687 | 7690 | ||
| 7688 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17851 10865)) | 7691 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17843 27880)) |
| 7689 | ;;; Generated autoloads from play/dunnet.el | 7692 | ;;; Generated autoloads from play/dunnet.el |
| 7690 | 7693 | ||
| 7691 | (autoload (quote dunnet) "dunnet" "\ | 7694 | (autoload (quote dunnet) "dunnet" "\ |
| @@ -7696,7 +7699,7 @@ Switch to *dungeon* buffer and start game. | |||
| 7696 | ;;;*** | 7699 | ;;;*** |
| 7697 | 7700 | ||
| 7698 | ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" | 7701 | ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" |
| 7699 | ;;;;;; (17851 10856)) | 7702 | ;;;;;; (17843 27871)) |
| 7700 | ;;; Generated autoloads from gnus/earcon.el | 7703 | ;;; Generated autoloads from gnus/earcon.el |
| 7701 | 7704 | ||
| 7702 | (autoload (quote gnus-earcon-display) "earcon" "\ | 7705 | (autoload (quote gnus-earcon-display) "earcon" "\ |
| @@ -7802,8 +7805,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 7802 | ;;;*** | 7805 | ;;;*** |
| 7803 | 7806 | ||
| 7804 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define | 7807 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define |
| 7805 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17851 | 7808 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17843 |
| 7806 | ;;;;;; 10852)) | 7809 | ;;;;;; 27869)) |
| 7807 | ;;; Generated autoloads from emacs-lisp/easymenu.el | 7810 | ;;; Generated autoloads from emacs-lisp/easymenu.el |
| 7808 | 7811 | ||
| 7809 | (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) | 7812 | (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) |
| @@ -8371,7 +8374,7 @@ Display statistics for a class tree. | |||
| 8371 | ;;;*** | 8374 | ;;;*** |
| 8372 | 8375 | ||
| 8373 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" | 8376 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" |
| 8374 | ;;;;;; (17851 10823)) | 8377 | ;;;;;; (17843 27859)) |
| 8375 | ;;; Generated autoloads from ebuff-menu.el | 8378 | ;;; Generated autoloads from ebuff-menu.el |
| 8376 | 8379 | ||
| 8377 | (autoload (quote electric-buffer-list) "ebuff-menu" "\ | 8380 | (autoload (quote electric-buffer-list) "ebuff-menu" "\ |
| @@ -8396,7 +8399,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 8396 | ;;;*** | 8399 | ;;;*** |
| 8397 | 8400 | ||
| 8398 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" | 8401 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" |
| 8399 | ;;;;;; "echistory.el" (17851 10823)) | 8402 | ;;;;;; "echistory.el" (17843 27859)) |
| 8400 | ;;; Generated autoloads from echistory.el | 8403 | ;;; Generated autoloads from echistory.el |
| 8401 | 8404 | ||
| 8402 | (autoload (quote Electric-command-history-redo-expression) "echistory" "\ | 8405 | (autoload (quote Electric-command-history-redo-expression) "echistory" "\ |
| @@ -8409,7 +8412,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 8409 | 8412 | ||
| 8410 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form | 8413 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form |
| 8411 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" | 8414 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" |
| 8412 | ;;;;;; "emacs-lisp/edebug.el" (17851 10852)) | 8415 | ;;;;;; "emacs-lisp/edebug.el" (17843 27869)) |
| 8413 | ;;; Generated autoloads from emacs-lisp/edebug.el | 8416 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 8414 | 8417 | ||
| 8415 | (defvar edebug-all-defs nil "\ | 8418 | (defvar edebug-all-defs nil "\ |
| @@ -8714,7 +8717,7 @@ With optional NODE, goes to that node. | |||
| 8714 | ;;;*** | 8717 | ;;;*** |
| 8715 | 8718 | ||
| 8716 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" | 8719 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" |
| 8717 | ;;;;;; (17851 10823)) | 8720 | ;;;;;; (17843 27859)) |
| 8718 | ;;; Generated autoloads from ediff-help.el | 8721 | ;;; Generated autoloads from ediff-help.el |
| 8719 | 8722 | ||
| 8720 | (autoload (quote ediff-customize) "ediff-help" "\ | 8723 | (autoload (quote ediff-customize) "ediff-help" "\ |
| @@ -8724,7 +8727,7 @@ Not documented | |||
| 8724 | 8727 | ||
| 8725 | ;;;*** | 8728 | ;;;*** |
| 8726 | 8729 | ||
| 8727 | ;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17851 10823)) | 8730 | ;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17843 27859)) |
| 8728 | ;;; Generated autoloads from ediff-hook.el | 8731 | ;;; Generated autoloads from ediff-hook.el |
| 8729 | 8732 | ||
| 8730 | (defvar ediff-window-setup-function) | 8733 | (defvar ediff-window-setup-function) |
| @@ -8737,7 +8740,7 @@ Not documented | |||
| 8737 | ;;;*** | 8740 | ;;;*** |
| 8738 | 8741 | ||
| 8739 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" | 8742 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" |
| 8740 | ;;;;;; (17851 10823)) | 8743 | ;;;;;; (17843 27859)) |
| 8741 | ;;; Generated autoloads from ediff-mult.el | 8744 | ;;; Generated autoloads from ediff-mult.el |
| 8742 | 8745 | ||
| 8743 | (autoload (quote ediff-show-registry) "ediff-mult" "\ | 8746 | (autoload (quote ediff-show-registry) "ediff-mult" "\ |
| @@ -8771,7 +8774,7 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. | |||
| 8771 | 8774 | ||
| 8772 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro | 8775 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro |
| 8773 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" | 8776 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" |
| 8774 | ;;;;;; (17851 10823)) | 8777 | ;;;;;; (17843 27859)) |
| 8775 | ;;; Generated autoloads from edmacro.el | 8778 | ;;; Generated autoloads from edmacro.el |
| 8776 | 8779 | ||
| 8777 | (defvar edmacro-eight-bits nil "\ | 8780 | (defvar edmacro-eight-bits nil "\ |
| @@ -8824,7 +8827,7 @@ or nil, use a compact 80-column format. | |||
| 8824 | ;;;*** | 8827 | ;;;*** |
| 8825 | 8828 | ||
| 8826 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" | 8829 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" |
| 8827 | ;;;;;; "emulation/edt.el" (17851 10853)) | 8830 | ;;;;;; "emulation/edt.el" (17843 27869)) |
| 8828 | ;;; Generated autoloads from emulation/edt.el | 8831 | ;;; Generated autoloads from emulation/edt.el |
| 8829 | 8832 | ||
| 8830 | (autoload (quote edt-set-scroll-margins) "edt" "\ | 8833 | (autoload (quote edt-set-scroll-margins) "edt" "\ |
| @@ -8879,7 +8882,7 @@ Not documented | |||
| 8879 | ;;;*** | 8882 | ;;;*** |
| 8880 | 8883 | ||
| 8881 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) | 8884 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) |
| 8882 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17851 10853)) | 8885 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17843 27869)) |
| 8883 | ;;; Generated autoloads from emacs-lisp/eldoc.el | 8886 | ;;; Generated autoloads from emacs-lisp/eldoc.el |
| 8884 | 8887 | ||
| 8885 | (defvar eldoc-minor-mode-string " ElDoc" "\ | 8888 | (defvar eldoc-minor-mode-string " ElDoc" "\ |
| @@ -8917,8 +8920,8 @@ Emacs Lisp mode) that support Eldoc.") | |||
| 8917 | 8920 | ||
| 8918 | ;;;*** | 8921 | ;;;*** |
| 8919 | 8922 | ||
| 8920 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17851 | 8923 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17843 |
| 8921 | ;;;;;; 10826)) | 8924 | ;;;;;; 27859)) |
| 8922 | ;;; Generated autoloads from elide-head.el | 8925 | ;;; Generated autoloads from elide-head.el |
| 8923 | 8926 | ||
| 8924 | (autoload (quote elide-head) "elide-head" "\ | 8927 | (autoload (quote elide-head) "elide-head" "\ |
| @@ -8934,7 +8937,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. | |||
| 8934 | ;;;*** | 8937 | ;;;*** |
| 8935 | 8938 | ||
| 8936 | ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" | 8939 | ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" |
| 8937 | ;;;;;; (17851 10853)) | 8940 | ;;;;;; (17843 27869)) |
| 8938 | ;;; Generated autoloads from emacs-lisp/elint.el | 8941 | ;;; Generated autoloads from emacs-lisp/elint.el |
| 8939 | 8942 | ||
| 8940 | (autoload (quote elint-initialize) "elint" "\ | 8943 | (autoload (quote elint-initialize) "elint" "\ |
| @@ -8945,8 +8948,8 @@ Initialize elint. | |||
| 8945 | ;;;*** | 8948 | ;;;*** |
| 8946 | 8949 | ||
| 8947 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list | 8950 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list |
| 8948 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17851 | 8951 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17843 |
| 8949 | ;;;;;; 10853)) | 8952 | ;;;;;; 27869)) |
| 8950 | ;;; Generated autoloads from emacs-lisp/elp.el | 8953 | ;;; Generated autoloads from emacs-lisp/elp.el |
| 8951 | 8954 | ||
| 8952 | (autoload (quote elp-instrument-function) "elp" "\ | 8955 | (autoload (quote elp-instrument-function) "elp" "\ |
| @@ -8980,7 +8983,7 @@ displayed. | |||
| 8980 | ;;;*** | 8983 | ;;;*** |
| 8981 | 8984 | ||
| 8982 | ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" | 8985 | ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" |
| 8983 | ;;;;;; (17851 10861)) | 8986 | ;;;;;; (17843 27878)) |
| 8984 | ;;; Generated autoloads from mail/emacsbug.el | 8987 | ;;; Generated autoloads from mail/emacsbug.el |
| 8985 | 8988 | ||
| 8986 | (autoload (quote report-emacs-bug) "emacsbug" "\ | 8989 | (autoload (quote report-emacs-bug) "emacsbug" "\ |
| @@ -9073,7 +9076,7 @@ Not documented | |||
| 9073 | ;;;*** | 9076 | ;;;*** |
| 9074 | 9077 | ||
| 9075 | ;;;### (autoloads (encoded-kbd-mode) "encoded-kb" "international/encoded-kb.el" | 9078 | ;;;### (autoloads (encoded-kbd-mode) "encoded-kb" "international/encoded-kb.el" |
| 9076 | ;;;;;; (17851 10860)) | 9079 | ;;;;;; (17843 27876)) |
| 9077 | ;;; Generated autoloads from international/encoded-kb.el | 9080 | ;;; Generated autoloads from international/encoded-kb.el |
| 9078 | 9081 | ||
| 9079 | (defvar encoded-kbd-mode nil "\ | 9082 | (defvar encoded-kbd-mode nil "\ |
| @@ -9102,7 +9105,7 @@ as a multilingual text encoded in a coding system set by | |||
| 9102 | ;;;*** | 9105 | ;;;*** |
| 9103 | 9106 | ||
| 9104 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) | 9107 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) |
| 9105 | ;;;;;; "enriched" "textmodes/enriched.el" (17851 10872)) | 9108 | ;;;;;; "enriched" "textmodes/enriched.el" (17843 27885)) |
| 9106 | ;;; Generated autoloads from textmodes/enriched.el | 9109 | ;;; Generated autoloads from textmodes/enriched.el |
| 9107 | 9110 | ||
| 9108 | (autoload (quote enriched-mode) "enriched" "\ | 9111 | (autoload (quote enriched-mode) "enriched" "\ |
| @@ -9133,7 +9136,7 @@ Not documented | |||
| 9133 | ;;;*** | 9136 | ;;;*** |
| 9134 | 9137 | ||
| 9135 | ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" | 9138 | ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" |
| 9136 | ;;;;;; "erc/erc.el" (17851 10855)) | 9139 | ;;;;;; "erc/erc.el" (17838 58220)) |
| 9137 | ;;; Generated autoloads from erc/erc.el | 9140 | ;;; Generated autoloads from erc/erc.el |
| 9138 | 9141 | ||
| 9139 | (autoload (quote erc-select-read-args) "erc" "\ | 9142 | (autoload (quote erc-select-read-args) "erc" "\ |
| @@ -9169,14 +9172,14 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | |||
| 9169 | 9172 | ||
| 9170 | ;;;*** | 9173 | ;;;*** |
| 9171 | 9174 | ||
| 9172 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17851 | 9175 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17843 |
| 9173 | ;;;;;; 10855)) | 9176 | ;;;;;; 27870)) |
| 9174 | ;;; Generated autoloads from erc/erc-autoaway.el | 9177 | ;;; Generated autoloads from erc/erc-autoaway.el |
| 9175 | (autoload 'erc-autoaway-mode "erc-autoaway") | 9178 | (autoload 'erc-autoaway-mode "erc-autoaway") |
| 9176 | 9179 | ||
| 9177 | ;;;*** | 9180 | ;;;*** |
| 9178 | 9181 | ||
| 9179 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17851 10855)) | 9182 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17843 27870)) |
| 9180 | ;;; Generated autoloads from erc/erc-button.el | 9183 | ;;; Generated autoloads from erc/erc-button.el |
| 9181 | (autoload 'erc-button-mode "erc-button" nil t) | 9184 | (autoload 'erc-button-mode "erc-button" nil t) |
| 9182 | 9185 | ||
| @@ -9188,14 +9191,14 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | |||
| 9188 | 9191 | ||
| 9189 | ;;;*** | 9192 | ;;;*** |
| 9190 | 9193 | ||
| 9191 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17851 10855)) | 9194 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17843 27870)) |
| 9192 | ;;; Generated autoloads from erc/erc-compat.el | 9195 | ;;; Generated autoloads from erc/erc-compat.el |
| 9193 | (autoload 'erc-define-minor-mode "erc-compat") | 9196 | (autoload 'erc-define-minor-mode "erc-compat") |
| 9194 | 9197 | ||
| 9195 | ;;;*** | 9198 | ;;;*** |
| 9196 | 9199 | ||
| 9197 | ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) | 9200 | ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) |
| 9198 | ;;;;;; "erc-dcc" "erc/erc-dcc.el" (17851 10855)) | 9201 | ;;;;;; "erc-dcc" "erc/erc-dcc.el" (17843 27870)) |
| 9199 | ;;; Generated autoloads from erc/erc-dcc.el | 9202 | ;;; Generated autoloads from erc/erc-dcc.el |
| 9200 | 9203 | ||
| 9201 | (autoload (quote erc-cmd-DCC) "erc-dcc" "\ | 9204 | (autoload (quote erc-cmd-DCC) "erc-dcc" "\ |
| @@ -9227,7 +9230,7 @@ that subcommand. | |||
| 9227 | ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list | 9230 | ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list |
| 9228 | ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action | 9231 | ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action |
| 9229 | ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" | 9232 | ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" |
| 9230 | ;;;;;; (17851 10855)) | 9233 | ;;;;;; (17843 27870)) |
| 9231 | ;;; Generated autoloads from erc/erc-ezbounce.el | 9234 | ;;; Generated autoloads from erc/erc-ezbounce.el |
| 9232 | 9235 | ||
| 9233 | (autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ | 9236 | (autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ |
| @@ -9289,8 +9292,8 @@ Add EZBouncer convenience functions to ERC. | |||
| 9289 | 9292 | ||
| 9290 | ;;;*** | 9293 | ;;;*** |
| 9291 | 9294 | ||
| 9292 | ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17851 | 9295 | ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17843 |
| 9293 | ;;;;;; 10855)) | 9296 | ;;;;;; 27870)) |
| 9294 | ;;; Generated autoloads from erc/erc-fill.el | 9297 | ;;; Generated autoloads from erc/erc-fill.el |
| 9295 | (autoload 'erc-fill-mode "erc-fill" nil t) | 9298 | (autoload 'erc-fill-mode "erc-fill" nil t) |
| 9296 | 9299 | ||
| @@ -9302,15 +9305,15 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. | |||
| 9302 | 9305 | ||
| 9303 | ;;;*** | 9306 | ;;;*** |
| 9304 | 9307 | ||
| 9305 | ;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (17851 | 9308 | ;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (17843 |
| 9306 | ;;;;;; 10855)) | 9309 | ;;;;;; 27870)) |
| 9307 | ;;; Generated autoloads from erc/erc-hecomplete.el | 9310 | ;;; Generated autoloads from erc/erc-hecomplete.el |
| 9308 | (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t) | 9311 | (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t) |
| 9309 | 9312 | ||
| 9310 | ;;;*** | 9313 | ;;;*** |
| 9311 | 9314 | ||
| 9312 | ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" | 9315 | ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" |
| 9313 | ;;;;;; "erc/erc-identd.el" (17851 10855)) | 9316 | ;;;;;; "erc/erc-identd.el" (17843 27870)) |
| 9314 | ;;; Generated autoloads from erc/erc-identd.el | 9317 | ;;; Generated autoloads from erc/erc-identd.el |
| 9315 | (autoload 'erc-identd-mode "erc-identd") | 9318 | (autoload 'erc-identd-mode "erc-identd") |
| 9316 | 9319 | ||
| @@ -9332,7 +9335,7 @@ Not documented | |||
| 9332 | ;;;*** | 9335 | ;;;*** |
| 9333 | 9336 | ||
| 9334 | ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" | 9337 | ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" |
| 9335 | ;;;;;; (17851 10855)) | 9338 | ;;;;;; (17843 27870)) |
| 9336 | ;;; Generated autoloads from erc/erc-imenu.el | 9339 | ;;; Generated autoloads from erc/erc-imenu.el |
| 9337 | 9340 | ||
| 9338 | (autoload (quote erc-create-imenu-index) "erc-imenu" "\ | 9341 | (autoload (quote erc-create-imenu-index) "erc-imenu" "\ |
| @@ -9342,14 +9345,14 @@ Not documented | |||
| 9342 | 9345 | ||
| 9343 | ;;;*** | 9346 | ;;;*** |
| 9344 | 9347 | ||
| 9345 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (17851 10855)) | 9348 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (17843 27870)) |
| 9346 | ;;; Generated autoloads from erc/erc-join.el | 9349 | ;;; Generated autoloads from erc/erc-join.el |
| 9347 | (autoload 'erc-autojoin-mode "erc-join" nil t) | 9350 | (autoload 'erc-autojoin-mode "erc-join" nil t) |
| 9348 | 9351 | ||
| 9349 | ;;;*** | 9352 | ;;;*** |
| 9350 | 9353 | ||
| 9351 | ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" | 9354 | ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" |
| 9352 | ;;;;;; "erc/erc-log.el" (17851 10855)) | 9355 | ;;;;;; "erc/erc-log.el" (17843 27870)) |
| 9353 | ;;; Generated autoloads from erc/erc-log.el | 9356 | ;;; Generated autoloads from erc/erc-log.el |
| 9354 | (autoload 'erc-log-mode "erc-log" nil t) | 9357 | (autoload 'erc-log-mode "erc-log" nil t) |
| 9355 | 9358 | ||
| @@ -9381,7 +9384,7 @@ You can save every individual message by putting this function on | |||
| 9381 | ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host | 9384 | ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host |
| 9382 | ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool | 9385 | ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool |
| 9383 | ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" | 9386 | ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" |
| 9384 | ;;;;;; (17851 10855)) | 9387 | ;;;;;; (17843 27870)) |
| 9385 | ;;; Generated autoloads from erc/erc-match.el | 9388 | ;;; Generated autoloads from erc/erc-match.el |
| 9386 | (autoload 'erc-match-mode "erc-match") | 9389 | (autoload 'erc-match-mode "erc-match") |
| 9387 | 9390 | ||
| @@ -9427,14 +9430,14 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. | |||
| 9427 | 9430 | ||
| 9428 | ;;;*** | 9431 | ;;;*** |
| 9429 | 9432 | ||
| 9430 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (17851 10855)) | 9433 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (17843 27870)) |
| 9431 | ;;; Generated autoloads from erc/erc-menu.el | 9434 | ;;; Generated autoloads from erc/erc-menu.el |
| 9432 | (autoload 'erc-menu-mode "erc-menu" nil t) | 9435 | (autoload 'erc-menu-mode "erc-menu" nil t) |
| 9433 | 9436 | ||
| 9434 | ;;;*** | 9437 | ;;;*** |
| 9435 | 9438 | ||
| 9436 | ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" | 9439 | ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" |
| 9437 | ;;;;;; (17851 10855)) | 9440 | ;;;;;; (17843 27870)) |
| 9438 | ;;; Generated autoloads from erc/erc-netsplit.el | 9441 | ;;; Generated autoloads from erc/erc-netsplit.el |
| 9439 | (autoload 'erc-netsplit-mode "erc-netsplit") | 9442 | (autoload 'erc-netsplit-mode "erc-netsplit") |
| 9440 | 9443 | ||
| @@ -9446,7 +9449,7 @@ Show who's gone. | |||
| 9446 | ;;;*** | 9449 | ;;;*** |
| 9447 | 9450 | ||
| 9448 | ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" | 9451 | ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" |
| 9449 | ;;;;;; "erc/erc-networks.el" (17851 10855)) | 9452 | ;;;;;; "erc/erc-networks.el" (17843 27870)) |
| 9450 | ;;; Generated autoloads from erc/erc-networks.el | 9453 | ;;; Generated autoloads from erc/erc-networks.el |
| 9451 | 9454 | ||
| 9452 | (autoload (quote erc-determine-network) "erc-networks" "\ | 9455 | (autoload (quote erc-determine-network) "erc-networks" "\ |
| @@ -9464,7 +9467,7 @@ Interactively select a server to connect to using `erc-server-alist'. | |||
| 9464 | ;;;*** | 9467 | ;;;*** |
| 9465 | 9468 | ||
| 9466 | ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" | 9469 | ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" |
| 9467 | ;;;;;; "erc/erc-notify.el" (17851 10855)) | 9470 | ;;;;;; "erc/erc-notify.el" (17843 27870)) |
| 9468 | ;;; Generated autoloads from erc/erc-notify.el | 9471 | ;;; Generated autoloads from erc/erc-notify.el |
| 9469 | (autoload 'erc-notify-mode "erc-notify" nil t) | 9472 | (autoload 'erc-notify-mode "erc-notify" nil t) |
| 9470 | 9473 | ||
| @@ -9482,33 +9485,33 @@ Not documented | |||
| 9482 | 9485 | ||
| 9483 | ;;;*** | 9486 | ;;;*** |
| 9484 | 9487 | ||
| 9485 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17851 10855)) | 9488 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17843 27870)) |
| 9486 | ;;; Generated autoloads from erc/erc-page.el | 9489 | ;;; Generated autoloads from erc/erc-page.el |
| 9487 | (autoload 'erc-page-mode "erc-page") | 9490 | (autoload 'erc-page-mode "erc-page") |
| 9488 | 9491 | ||
| 9489 | ;;;*** | 9492 | ;;;*** |
| 9490 | 9493 | ||
| 9491 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17851 | 9494 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17843 |
| 9492 | ;;;;;; 10855)) | 9495 | ;;;;;; 27870)) |
| 9493 | ;;; Generated autoloads from erc/erc-pcomplete.el | 9496 | ;;; Generated autoloads from erc/erc-pcomplete.el |
| 9494 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) | 9497 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) |
| 9495 | 9498 | ||
| 9496 | ;;;*** | 9499 | ;;;*** |
| 9497 | 9500 | ||
| 9498 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17851 10855)) | 9501 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17843 27870)) |
| 9499 | ;;; Generated autoloads from erc/erc-replace.el | 9502 | ;;; Generated autoloads from erc/erc-replace.el |
| 9500 | (autoload 'erc-replace-mode "erc-replace") | 9503 | (autoload 'erc-replace-mode "erc-replace") |
| 9501 | 9504 | ||
| 9502 | ;;;*** | 9505 | ;;;*** |
| 9503 | 9506 | ||
| 9504 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17851 10855)) | 9507 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17843 27870)) |
| 9505 | ;;; Generated autoloads from erc/erc-ring.el | 9508 | ;;; Generated autoloads from erc/erc-ring.el |
| 9506 | (autoload 'erc-ring-mode "erc-ring" nil t) | 9509 | (autoload 'erc-ring-mode "erc-ring" nil t) |
| 9507 | 9510 | ||
| 9508 | ;;;*** | 9511 | ;;;*** |
| 9509 | 9512 | ||
| 9510 | ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) | 9513 | ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) |
| 9511 | ;;;;;; "erc-services" "erc/erc-services.el" (17851 10855)) | 9514 | ;;;;;; "erc-services" "erc/erc-services.el" (17843 27870)) |
| 9512 | ;;; Generated autoloads from erc/erc-services.el | 9515 | ;;; Generated autoloads from erc/erc-services.el |
| 9513 | (autoload 'erc-services-mode "erc-services" nil t) | 9516 | (autoload 'erc-services-mode "erc-services" nil t) |
| 9514 | 9517 | ||
| @@ -9525,14 +9528,14 @@ When called interactively, read the password using `read-passwd'. | |||
| 9525 | 9528 | ||
| 9526 | ;;;*** | 9529 | ;;;*** |
| 9527 | 9530 | ||
| 9528 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17851 10855)) | 9531 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17843 27870)) |
| 9529 | ;;; Generated autoloads from erc/erc-sound.el | 9532 | ;;; Generated autoloads from erc/erc-sound.el |
| 9530 | (autoload 'erc-sound-mode "erc-sound") | 9533 | (autoload 'erc-sound-mode "erc-sound") |
| 9531 | 9534 | ||
| 9532 | ;;;*** | 9535 | ;;;*** |
| 9533 | 9536 | ||
| 9534 | ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" | 9537 | ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" |
| 9535 | ;;;;;; (17851 10855)) | 9538 | ;;;;;; (17843 27870)) |
| 9536 | ;;; Generated autoloads from erc/erc-speedbar.el | 9539 | ;;; Generated autoloads from erc/erc-speedbar.el |
| 9537 | 9540 | ||
| 9538 | (autoload (quote erc-speedbar-browser) "erc-speedbar" "\ | 9541 | (autoload (quote erc-speedbar-browser) "erc-speedbar" "\ |
| @@ -9543,20 +9546,20 @@ This will add a speedbar major display mode. | |||
| 9543 | 9546 | ||
| 9544 | ;;;*** | 9547 | ;;;*** |
| 9545 | 9548 | ||
| 9546 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17851 | 9549 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17843 |
| 9547 | ;;;;;; 10855)) | 9550 | ;;;;;; 27870)) |
| 9548 | ;;; Generated autoloads from erc/erc-spelling.el | 9551 | ;;; Generated autoloads from erc/erc-spelling.el |
| 9549 | (autoload 'erc-spelling-mode "erc-spelling" nil t) | 9552 | (autoload 'erc-spelling-mode "erc-spelling" nil t) |
| 9550 | 9553 | ||
| 9551 | ;;;*** | 9554 | ;;;*** |
| 9552 | 9555 | ||
| 9553 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17851 10855)) | 9556 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17843 27870)) |
| 9554 | ;;; Generated autoloads from erc/erc-stamp.el | 9557 | ;;; Generated autoloads from erc/erc-stamp.el |
| 9555 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) | 9558 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) |
| 9556 | 9559 | ||
| 9557 | ;;;*** | 9560 | ;;;*** |
| 9558 | 9561 | ||
| 9559 | ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17851 10855)) | 9562 | ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17843 27870)) |
| 9560 | ;;; Generated autoloads from erc/erc-track.el | 9563 | ;;; Generated autoloads from erc/erc-track.el |
| 9561 | (autoload 'erc-track-mode "erc-track" nil t) | 9564 | (autoload 'erc-track-mode "erc-track" nil t) |
| 9562 | (autoload 'erc-track-when-inactive-mode "erc-track" nil t) | 9565 | (autoload 'erc-track-when-inactive-mode "erc-track" nil t) |
| @@ -9564,7 +9567,7 @@ This will add a speedbar major display mode. | |||
| 9564 | ;;;*** | 9567 | ;;;*** |
| 9565 | 9568 | ||
| 9566 | ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) | 9569 | ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) |
| 9567 | ;;;;;; "erc-truncate" "erc/erc-truncate.el" (17851 10855)) | 9570 | ;;;;;; "erc-truncate" "erc/erc-truncate.el" (17843 27870)) |
| 9568 | ;;; Generated autoloads from erc/erc-truncate.el | 9571 | ;;; Generated autoloads from erc/erc-truncate.el |
| 9569 | (autoload 'erc-truncate-mode "erc-truncate" nil t) | 9572 | (autoload 'erc-truncate-mode "erc-truncate" nil t) |
| 9570 | 9573 | ||
| @@ -9584,7 +9587,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'. | |||
| 9584 | ;;;*** | 9587 | ;;;*** |
| 9585 | 9588 | ||
| 9586 | ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" | 9589 | ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" |
| 9587 | ;;;;;; (17851 10855)) | 9590 | ;;;;;; (17843 27870)) |
| 9588 | ;;; Generated autoloads from erc/erc-xdcc.el | 9591 | ;;; Generated autoloads from erc/erc-xdcc.el |
| 9589 | 9592 | ||
| 9590 | (autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ | 9593 | (autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ |
| @@ -9594,8 +9597,8 @@ Add a file to `erc-xdcc-files'. | |||
| 9594 | 9597 | ||
| 9595 | ;;;*** | 9598 | ;;;*** |
| 9596 | 9599 | ||
| 9597 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17851 | 9600 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17843 |
| 9598 | ;;;;;; 10856)) | 9601 | ;;;;;; 27870)) |
| 9599 | ;;; Generated autoloads from eshell/esh-mode.el | 9602 | ;;; Generated autoloads from eshell/esh-mode.el |
| 9600 | 9603 | ||
| 9601 | (autoload (quote eshell-mode) "esh-mode" "\ | 9604 | (autoload (quote eshell-mode) "esh-mode" "\ |
| @@ -9607,8 +9610,8 @@ Emacs shell interactive mode. | |||
| 9607 | 9610 | ||
| 9608 | ;;;*** | 9611 | ;;;*** |
| 9609 | 9612 | ||
| 9610 | ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17851 | 9613 | ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17843 |
| 9611 | ;;;;;; 10856)) | 9614 | ;;;;;; 27870)) |
| 9612 | ;;; Generated autoloads from eshell/esh-test.el | 9615 | ;;; Generated autoloads from eshell/esh-test.el |
| 9613 | 9616 | ||
| 9614 | (autoload (quote eshell-test) "esh-test" "\ | 9617 | (autoload (quote eshell-test) "esh-test" "\ |
| @@ -9619,7 +9622,7 @@ Test Eshell to verify that it works as expected. | |||
| 9619 | ;;;*** | 9622 | ;;;*** |
| 9620 | 9623 | ||
| 9621 | ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command | 9624 | ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command |
| 9622 | ;;;;;; eshell) "eshell" "eshell/eshell.el" (17851 10856)) | 9625 | ;;;;;; eshell) "eshell" "eshell/eshell.el" (17843 27870)) |
| 9623 | ;;; Generated autoloads from eshell/eshell.el | 9626 | ;;; Generated autoloads from eshell/eshell.el |
| 9624 | 9627 | ||
| 9625 | (autoload (quote eshell) "eshell" "\ | 9628 | (autoload (quote eshell) "eshell" "\ |
| @@ -9665,7 +9668,7 @@ Please include any configuration details that might be involved. | |||
| 9665 | ;;;;;; visit-tags-table tags-table-mode find-tag-default-function | 9668 | ;;;;;; visit-tags-table tags-table-mode find-tag-default-function |
| 9666 | ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list | 9669 | ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list |
| 9667 | ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" | 9670 | ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" |
| 9668 | ;;;;;; (17851 10867)) | 9671 | ;;;;;; (17843 27881)) |
| 9669 | ;;; Generated autoloads from progmodes/etags.el | 9672 | ;;; Generated autoloads from progmodes/etags.el |
| 9670 | 9673 | ||
| 9671 | (defvar tags-file-name nil "\ | 9674 | (defvar tags-file-name nil "\ |
| @@ -9967,7 +9970,7 @@ for \\[find-tag] (which see). | |||
| 9967 | ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker | 9970 | ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker |
| 9968 | ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker | 9971 | ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker |
| 9969 | ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) | 9972 | ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) |
| 9970 | ;;;;;; "ethio-util" "language/ethio-util.el" (17851 10861)) | 9973 | ;;;;;; "ethio-util" "language/ethio-util.el" (17843 27877)) |
| 9971 | ;;; Generated autoloads from language/ethio-util.el | 9974 | ;;; Generated autoloads from language/ethio-util.el |
| 9972 | 9975 | ||
| 9973 | (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ | 9976 | (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ |
| @@ -10162,7 +10165,7 @@ Transcribe Ethiopic characters in ASCII depending on the file extension. | |||
| 10162 | 10165 | ||
| 10163 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline | 10166 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline |
| 10164 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" | 10167 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" |
| 10165 | ;;;;;; (17851 10863)) | 10168 | ;;;;;; (17843 27879)) |
| 10166 | ;;; Generated autoloads from net/eudc.el | 10169 | ;;; Generated autoloads from net/eudc.el |
| 10167 | 10170 | ||
| 10168 | (autoload (quote eudc-set-server) "eudc" "\ | 10171 | (autoload (quote eudc-set-server) "eudc" "\ |
| @@ -10218,7 +10221,7 @@ This does nothing except loading eudc by autoload side-effect. | |||
| 10218 | 10221 | ||
| 10219 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline | 10222 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline |
| 10220 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) | 10223 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) |
| 10221 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (17851 10863)) | 10224 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (17843 27879)) |
| 10222 | ;;; Generated autoloads from net/eudc-bob.el | 10225 | ;;; Generated autoloads from net/eudc-bob.el |
| 10223 | 10226 | ||
| 10224 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ | 10227 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ |
| @@ -10254,7 +10257,7 @@ Display a button for the JPEG DATA. | |||
| 10254 | ;;;*** | 10257 | ;;;*** |
| 10255 | 10258 | ||
| 10256 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) | 10259 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) |
| 10257 | ;;;;;; "eudc-export" "net/eudc-export.el" (17851 10863)) | 10260 | ;;;;;; "eudc-export" "net/eudc-export.el" (17843 27879)) |
| 10258 | ;;; Generated autoloads from net/eudc-export.el | 10261 | ;;; Generated autoloads from net/eudc-export.el |
| 10259 | 10262 | ||
| 10260 | (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ | 10263 | (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ |
| @@ -10271,7 +10274,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. | |||
| 10271 | ;;;*** | 10274 | ;;;*** |
| 10272 | 10275 | ||
| 10273 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" | 10276 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" |
| 10274 | ;;;;;; (17851 10863)) | 10277 | ;;;;;; (17843 27879)) |
| 10275 | ;;; Generated autoloads from net/eudc-hotlist.el | 10278 | ;;; Generated autoloads from net/eudc-hotlist.el |
| 10276 | 10279 | ||
| 10277 | (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ | 10280 | (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ |
| @@ -10281,8 +10284,8 @@ Edit the hotlist of directory servers in a specialized buffer. | |||
| 10281 | 10284 | ||
| 10282 | ;;;*** | 10285 | ;;;*** |
| 10283 | 10286 | ||
| 10284 | ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (17851 | 10287 | ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (17843 |
| 10285 | ;;;;;; 10853)) | 10288 | ;;;;;; 27869)) |
| 10286 | ;;; Generated autoloads from emacs-lisp/ewoc.el | 10289 | ;;; Generated autoloads from emacs-lisp/ewoc.el |
| 10287 | 10290 | ||
| 10288 | (autoload (quote ewoc-create) "ewoc" "\ | 10291 | (autoload (quote ewoc-create) "ewoc" "\ |
| @@ -10311,7 +10314,7 @@ fourth arg NOSEP non-nil inhibits this. | |||
| 10311 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p | 10314 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p |
| 10312 | ;;;;;; executable-self-display executable-set-magic executable-interpret | 10315 | ;;;;;; executable-self-display executable-set-magic executable-interpret |
| 10313 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" | 10316 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" |
| 10314 | ;;;;;; (17851 10867)) | 10317 | ;;;;;; (17843 27881)) |
| 10315 | ;;; Generated autoloads from progmodes/executable.el | 10318 | ;;; Generated autoloads from progmodes/executable.el |
| 10316 | 10319 | ||
| 10317 | (autoload (quote executable-command-find-posix-p) "executable" "\ | 10320 | (autoload (quote executable-command-find-posix-p) "executable" "\ |
| @@ -10353,7 +10356,7 @@ file modes. | |||
| 10353 | ;;;*** | 10356 | ;;;*** |
| 10354 | 10357 | ||
| 10355 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot | 10358 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot |
| 10356 | ;;;;;; expand-add-abbrevs) "expand" "expand.el" (17851 10827)) | 10359 | ;;;;;; expand-add-abbrevs) "expand" "expand.el" (17843 27859)) |
| 10357 | ;;; Generated autoloads from expand.el | 10360 | ;;; Generated autoloads from expand.el |
| 10358 | 10361 | ||
| 10359 | (autoload (quote expand-add-abbrevs) "expand" "\ | 10362 | (autoload (quote expand-add-abbrevs) "expand" "\ |
| @@ -10396,7 +10399,7 @@ This is used only in conjunction with `expand-add-abbrevs'. | |||
| 10396 | 10399 | ||
| 10397 | ;;;*** | 10400 | ;;;*** |
| 10398 | 10401 | ||
| 10399 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17851 10867)) | 10402 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17843 27881)) |
| 10400 | ;;; Generated autoloads from progmodes/f90.el | 10403 | ;;; Generated autoloads from progmodes/f90.el |
| 10401 | 10404 | ||
| 10402 | (autoload (quote f90-mode) "f90" "\ | 10405 | (autoload (quote f90-mode) "f90" "\ |
| @@ -10463,7 +10466,7 @@ with no args, if that value is non-nil. | |||
| 10463 | ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only | 10466 | ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only |
| 10464 | ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu | 10467 | ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu |
| 10465 | ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) | 10468 | ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) |
| 10466 | ;;;;;; "facemenu" "facemenu.el" (17851 10827)) | 10469 | ;;;;;; "facemenu" "facemenu.el" (17843 27859)) |
| 10467 | ;;; Generated autoloads from facemenu.el | 10470 | ;;; Generated autoloads from facemenu.el |
| 10468 | (define-key global-map "\M-o" 'facemenu-keymap) | 10471 | (define-key global-map "\M-o" 'facemenu-keymap) |
| 10469 | (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) | 10472 | (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) |
| @@ -10632,7 +10635,7 @@ argument BUFFER-NAME is nil, it defaults to *Colors*. | |||
| 10632 | 10635 | ||
| 10633 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue | 10636 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue |
| 10634 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts | 10637 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts |
| 10635 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17753 42784)) | 10638 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17889 58740)) |
| 10636 | ;;; Generated autoloads from mail/feedmail.el | 10639 | ;;; Generated autoloads from mail/feedmail.el |
| 10637 | 10640 | ||
| 10638 | (autoload (quote feedmail-send-it) "feedmail" "\ | 10641 | (autoload (quote feedmail-send-it) "feedmail" "\ |
| @@ -10686,7 +10689,7 @@ you can set `feedmail-queue-reminder-alist' to nil. | |||
| 10686 | ;;;*** | 10689 | ;;;*** |
| 10687 | 10690 | ||
| 10688 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu | 10691 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu |
| 10689 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17851 10827)) | 10692 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17838 58217)) |
| 10690 | ;;; Generated autoloads from ffap.el | 10693 | ;;; Generated autoloads from ffap.el |
| 10691 | 10694 | ||
| 10692 | (autoload (quote ffap-next) "ffap" "\ | 10695 | (autoload (quote ffap-next) "ffap" "\ |
| @@ -10745,7 +10748,7 @@ Evaluate the forms in variable `ffap-bindings'. | |||
| 10745 | ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively | 10748 | ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively |
| 10746 | ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find | 10749 | ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find |
| 10747 | ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) | 10750 | ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) |
| 10748 | ;;;;;; "filecache" "filecache.el" (17851 10827)) | 10751 | ;;;;;; "filecache" "filecache.el" (17843 27859)) |
| 10749 | ;;; Generated autoloads from filecache.el | 10752 | ;;; Generated autoloads from filecache.el |
| 10750 | 10753 | ||
| 10751 | (autoload (quote file-cache-add-directory) "filecache" "\ | 10754 | (autoload (quote file-cache-add-directory) "filecache" "\ |
| @@ -10804,8 +10807,8 @@ the name is considered already unique; only the second substitution | |||
| 10804 | 10807 | ||
| 10805 | ;;;*** | 10808 | ;;;*** |
| 10806 | 10809 | ||
| 10807 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17851 | 10810 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17843 |
| 10808 | ;;;;;; 10827)) | 10811 | ;;;;;; 27860)) |
| 10809 | ;;; Generated autoloads from filesets.el | 10812 | ;;; Generated autoloads from filesets.el |
| 10810 | 10813 | ||
| 10811 | (autoload (quote filesets-init) "filesets" "\ | 10814 | (autoload (quote filesets-init) "filesets" "\ |
| @@ -10824,7 +10827,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 10824 | 10827 | ||
| 10825 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options | 10828 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options |
| 10826 | ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" | 10829 | ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" |
| 10827 | ;;;;;; (17851 10827)) | 10830 | ;;;;;; (17843 27860)) |
| 10828 | ;;; Generated autoloads from find-dired.el | 10831 | ;;; Generated autoloads from find-dired.el |
| 10829 | 10832 | ||
| 10830 | (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ | 10833 | (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ |
| @@ -10885,7 +10888,7 @@ Thus ARG can also contain additional grep options. | |||
| 10885 | 10888 | ||
| 10886 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file | 10889 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file |
| 10887 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" | 10890 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" |
| 10888 | ;;;;;; (17851 10828)) | 10891 | ;;;;;; (17843 27860)) |
| 10889 | ;;; Generated autoloads from find-file.el | 10892 | ;;; Generated autoloads from find-file.el |
| 10890 | 10893 | ||
| 10891 | (defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (buffer-substring (match-beginning 2) (match-end 2))))) "\ | 10894 | (defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (buffer-substring (match-beginning 2) (match-end 2))))) "\ |
| @@ -10979,7 +10982,7 @@ Visit the file you click on in another window. | |||
| 10979 | ;;;;;; find-variable find-variable-noselect find-function-other-frame | 10982 | ;;;;;; find-variable find-variable-noselect find-function-other-frame |
| 10980 | ;;;;;; find-function-other-window find-function find-function-noselect | 10983 | ;;;;;; find-function-other-window find-function find-function-noselect |
| 10981 | ;;;;;; find-function-search-for-symbol find-library) "find-func" | 10984 | ;;;;;; find-function-search-for-symbol find-library) "find-func" |
| 10982 | ;;;;;; "emacs-lisp/find-func.el" (17851 10853)) | 10985 | ;;;;;; "emacs-lisp/find-func.el" (17843 27869)) |
| 10983 | ;;; Generated autoloads from emacs-lisp/find-func.el | 10986 | ;;; Generated autoloads from emacs-lisp/find-func.el |
| 10984 | 10987 | ||
| 10985 | (autoload (quote find-library) "find-func" "\ | 10988 | (autoload (quote find-library) "find-func" "\ |
| @@ -11133,7 +11136,7 @@ Define some key bindings for the find-function family of functions. | |||
| 11133 | ;;;*** | 11136 | ;;;*** |
| 11134 | 11137 | ||
| 11135 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories | 11138 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories |
| 11136 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17851 10828)) | 11139 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17893 52879)) |
| 11137 | ;;; Generated autoloads from find-lisp.el | 11140 | ;;; Generated autoloads from find-lisp.el |
| 11138 | 11141 | ||
| 11139 | (autoload (quote find-lisp-find-dired) "find-lisp" "\ | 11142 | (autoload (quote find-lisp-find-dired) "find-lisp" "\ |
| @@ -11154,7 +11157,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP. | |||
| 11154 | ;;;*** | 11157 | ;;;*** |
| 11155 | 11158 | ||
| 11156 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) | 11159 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) |
| 11157 | ;;;;;; "finder" "finder.el" (17851 10828)) | 11160 | ;;;;;; "finder" "finder.el" (17843 27860)) |
| 11158 | ;;; Generated autoloads from finder.el | 11161 | ;;; Generated autoloads from finder.el |
| 11159 | 11162 | ||
| 11160 | (autoload (quote finder-list-keywords) "finder" "\ | 11163 | (autoload (quote finder-list-keywords) "finder" "\ |
| @@ -11176,7 +11179,7 @@ Find packages matching a given keyword. | |||
| 11176 | ;;;*** | 11179 | ;;;*** |
| 11177 | 11180 | ||
| 11178 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" | 11181 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" |
| 11179 | ;;;;;; "flow-ctrl.el" (17851 10828)) | 11182 | ;;;;;; "flow-ctrl.el" (17843 27860)) |
| 11180 | ;;; Generated autoloads from flow-ctrl.el | 11183 | ;;; Generated autoloads from flow-ctrl.el |
| 11181 | 11184 | ||
| 11182 | (autoload (quote enable-flow-control) "flow-ctrl" "\ | 11185 | (autoload (quote enable-flow-control) "flow-ctrl" "\ |
| @@ -11198,7 +11201,7 @@ to get the effect of a C-q. | |||
| 11198 | ;;;*** | 11201 | ;;;*** |
| 11199 | 11202 | ||
| 11200 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" | 11203 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" |
| 11201 | ;;;;;; (17851 10856)) | 11204 | ;;;;;; (17843 27871)) |
| 11202 | ;;; Generated autoloads from gnus/flow-fill.el | 11205 | ;;; Generated autoloads from gnus/flow-fill.el |
| 11203 | 11206 | ||
| 11204 | (autoload (quote fill-flowed-encode) "flow-fill" "\ | 11207 | (autoload (quote fill-flowed-encode) "flow-fill" "\ |
| @@ -11238,7 +11241,7 @@ Turn flymake mode off. | |||
| 11238 | 11241 | ||
| 11239 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off | 11242 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off |
| 11240 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) | 11243 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) |
| 11241 | ;;;;;; "flyspell" "textmodes/flyspell.el" (17851 10872)) | 11244 | ;;;;;; "flyspell" "textmodes/flyspell.el" (17843 27885)) |
| 11242 | ;;; Generated autoloads from textmodes/flyspell.el | 11245 | ;;; Generated autoloads from textmodes/flyspell.el |
| 11243 | 11246 | ||
| 11244 | (autoload (quote flyspell-prog-mode) "flyspell" "\ | 11247 | (autoload (quote flyspell-prog-mode) "flyspell" "\ |
| @@ -11307,7 +11310,7 @@ Flyspell whole buffer. | |||
| 11307 | 11310 | ||
| 11308 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode | 11311 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode |
| 11309 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" | 11312 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" |
| 11310 | ;;;;;; (17851 10828)) | 11313 | ;;;;;; (17843 27860)) |
| 11311 | ;;; Generated autoloads from follow.el | 11314 | ;;; Generated autoloads from follow.el |
| 11312 | 11315 | ||
| 11313 | (autoload (quote turn-on-follow-mode) "follow" "\ | 11316 | (autoload (quote turn-on-follow-mode) "follow" "\ |
| @@ -11381,8 +11384,8 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: | |||
| 11381 | 11384 | ||
| 11382 | ;;;*** | 11385 | ;;;*** |
| 11383 | 11386 | ||
| 11384 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17851 | 11387 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17843 |
| 11385 | ;;;;;; 10861)) | 11388 | ;;;;;; 27878)) |
| 11386 | ;;; Generated autoloads from mail/footnote.el | 11389 | ;;; Generated autoloads from mail/footnote.el |
| 11387 | 11390 | ||
| 11388 | (autoload (quote footnote-mode) "footnote" "\ | 11391 | (autoload (quote footnote-mode) "footnote" "\ |
| @@ -11403,7 +11406,7 @@ key binding | |||
| 11403 | ;;;*** | 11406 | ;;;*** |
| 11404 | 11407 | ||
| 11405 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) | 11408 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) |
| 11406 | ;;;;;; "forms" "forms.el" (17851 10829)) | 11409 | ;;;;;; "forms" "forms.el" (17843 27860)) |
| 11407 | ;;; Generated autoloads from forms.el | 11410 | ;;; Generated autoloads from forms.el |
| 11408 | 11411 | ||
| 11409 | (autoload (quote forms-mode) "forms" "\ | 11412 | (autoload (quote forms-mode) "forms" "\ |
| @@ -11440,7 +11443,7 @@ Visit a file in Forms mode in other window. | |||
| 11440 | ;;;*** | 11443 | ;;;*** |
| 11441 | 11444 | ||
| 11442 | ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" | 11445 | ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" |
| 11443 | ;;;;;; "progmodes/fortran.el" (17851 10868)) | 11446 | ;;;;;; "progmodes/fortran.el" (17843 27881)) |
| 11444 | ;;; Generated autoloads from progmodes/fortran.el | 11447 | ;;; Generated autoloads from progmodes/fortran.el |
| 11445 | 11448 | ||
| 11446 | (defvar fortran-tab-mode-default nil "\ | 11449 | (defvar fortran-tab-mode-default nil "\ |
| @@ -11526,7 +11529,7 @@ with no args, if that value is non-nil. | |||
| 11526 | ;;;*** | 11529 | ;;;*** |
| 11527 | 11530 | ||
| 11528 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region | 11531 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region |
| 11529 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17851 10865)) | 11532 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17843 27880)) |
| 11530 | ;;; Generated autoloads from play/fortune.el | 11533 | ;;; Generated autoloads from play/fortune.el |
| 11531 | 11534 | ||
| 11532 | (autoload (quote fortune-add-fortune) "fortune" "\ | 11535 | (autoload (quote fortune-add-fortune) "fortune" "\ |
| @@ -11576,7 +11579,7 @@ and choose the directory as the fortune-file. | |||
| 11576 | ;;;*** | 11579 | ;;;*** |
| 11577 | 11580 | ||
| 11578 | ;;;### (autoloads (gdb-enable-debug gdba) "gdb-ui" "progmodes/gdb-ui.el" | 11581 | ;;;### (autoloads (gdb-enable-debug gdba) "gdb-ui" "progmodes/gdb-ui.el" |
| 11579 | ;;;;;; (17866 27909)) | 11582 | ;;;;;; (17893 64381)) |
| 11580 | ;;; Generated autoloads from progmodes/gdb-ui.el | 11583 | ;;; Generated autoloads from progmodes/gdb-ui.el |
| 11581 | 11584 | ||
| 11582 | (autoload (quote gdba) "gdb-ui" "\ | 11585 | (autoload (quote gdba) "gdb-ui" "\ |
| @@ -11639,8 +11642,8 @@ Non-nil means record the process input and output in `gdb-debug-log'.") | |||
| 11639 | ;;;*** | 11642 | ;;;*** |
| 11640 | 11643 | ||
| 11641 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal | 11644 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal |
| 11642 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17851 | 11645 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17843 |
| 11643 | ;;;;;; 10853)) | 11646 | ;;;;;; 27869)) |
| 11644 | ;;; Generated autoloads from emacs-lisp/generic.el | 11647 | ;;; Generated autoloads from emacs-lisp/generic.el |
| 11645 | 11648 | ||
| 11646 | (defvar generic-mode-list nil "\ | 11649 | (defvar generic-mode-list nil "\ |
| @@ -11715,7 +11718,7 @@ regular expression that can be used as an element of | |||
| 11715 | ;;;*** | 11718 | ;;;*** |
| 11716 | 11719 | ||
| 11717 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" | 11720 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" |
| 11718 | ;;;;;; (17851 10868)) | 11721 | ;;;;;; (17843 27881)) |
| 11719 | ;;; Generated autoloads from progmodes/glasses.el | 11722 | ;;; Generated autoloads from progmodes/glasses.el |
| 11720 | 11723 | ||
| 11721 | (autoload (quote glasses-mode) "glasses" "\ | 11724 | (autoload (quote glasses-mode) "glasses" "\ |
| @@ -11728,7 +11731,7 @@ at places they belong to. | |||
| 11728 | ;;;*** | 11731 | ;;;*** |
| 11729 | 11732 | ||
| 11730 | ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error | 11733 | ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error |
| 11731 | ;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (17851 10856)) | 11734 | ;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (17843 27871)) |
| 11732 | ;;; Generated autoloads from gnus/gmm-utils.el | 11735 | ;;; Generated autoloads from gnus/gmm-utils.el |
| 11733 | 11736 | ||
| 11734 | (autoload (quote gmm-message) "gmm-utils" "\ | 11737 | (autoload (quote gmm-message) "gmm-utils" "\ |
| @@ -11775,7 +11778,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. | |||
| 11775 | ;;;*** | 11778 | ;;;*** |
| 11776 | 11779 | ||
| 11777 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server | 11780 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server |
| 11778 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17851 10857)) | 11781 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17843 27874)) |
| 11779 | ;;; Generated autoloads from gnus/gnus.el | 11782 | ;;; Generated autoloads from gnus/gnus.el |
| 11780 | (when (fboundp 'custom-autoload) | 11783 | (when (fboundp 'custom-autoload) |
| 11781 | (custom-autoload 'gnus-select-method "gnus")) | 11784 | (custom-autoload 'gnus-select-method "gnus")) |
| @@ -11828,7 +11831,7 @@ prompt the user for the name of an NNTP server to use. | |||
| 11828 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group | 11831 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group |
| 11829 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize | 11832 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize |
| 11830 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" | 11833 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" |
| 11831 | ;;;;;; "gnus/gnus-agent.el" (17851 10856)) | 11834 | ;;;;;; "gnus/gnus-agent.el" (17843 27871)) |
| 11832 | ;;; Generated autoloads from gnus/gnus-agent.el | 11835 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 11833 | 11836 | ||
| 11834 | (autoload (quote gnus-unplugged) "gnus-agent" "\ | 11837 | (autoload (quote gnus-unplugged) "gnus-agent" "\ |
| @@ -11930,7 +11933,7 @@ Make the current buffer look like a nice article. | |||
| 11930 | ;;;*** | 11933 | ;;;*** |
| 11931 | 11934 | ||
| 11932 | ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" | 11935 | ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" |
| 11933 | ;;;;;; (17851 10857)) | 11936 | ;;;;;; (17843 27871)) |
| 11934 | ;;; Generated autoloads from gnus/gnus-audio.el | 11937 | ;;; Generated autoloads from gnus/gnus-audio.el |
| 11935 | 11938 | ||
| 11936 | (autoload (quote gnus-audio-play) "gnus-audio" "\ | 11939 | (autoload (quote gnus-audio-play) "gnus-audio" "\ |
| @@ -11942,8 +11945,8 @@ Play a sound FILE through the speaker. | |||
| 11942 | 11945 | ||
| 11943 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group | 11946 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group |
| 11944 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active | 11947 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active |
| 11945 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17851 | 11948 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17843 |
| 11946 | ;;;;;; 10857)) | 11949 | ;;;;;; 27871)) |
| 11947 | ;;; Generated autoloads from gnus/gnus-cache.el | 11950 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 11948 | 11951 | ||
| 11949 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ | 11952 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ |
| @@ -11985,7 +11988,7 @@ supported. | |||
| 11985 | ;;;*** | 11988 | ;;;*** |
| 11986 | 11989 | ||
| 11987 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) | 11990 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) |
| 11988 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17851 10857)) | 11991 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17843 27871)) |
| 11989 | ;;; Generated autoloads from gnus/gnus-delay.el | 11992 | ;;; Generated autoloads from gnus/gnus-delay.el |
| 11990 | 11993 | ||
| 11991 | (autoload (quote gnus-delay-article) "gnus-delay" "\ | 11994 | (autoload (quote gnus-delay-article) "gnus-delay" "\ |
| @@ -12021,7 +12024,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 12021 | ;;;*** | 12024 | ;;;*** |
| 12022 | 12025 | ||
| 12023 | ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) | 12026 | ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) |
| 12024 | ;;;;;; "gnus-diary" "gnus/gnus-diary.el" (17851 10857)) | 12027 | ;;;;;; "gnus-diary" "gnus/gnus-diary.el" (17843 27871)) |
| 12025 | ;;; Generated autoloads from gnus/gnus-diary.el | 12028 | ;;; Generated autoloads from gnus/gnus-diary.el |
| 12026 | 12029 | ||
| 12027 | (autoload (quote gnus-user-format-function-d) "gnus-diary" "\ | 12030 | (autoload (quote gnus-user-format-function-d) "gnus-diary" "\ |
| @@ -12037,7 +12040,7 @@ Not documented | |||
| 12037 | ;;;*** | 12040 | ;;;*** |
| 12038 | 12041 | ||
| 12039 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" | 12042 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" |
| 12040 | ;;;;;; (17851 10857)) | 12043 | ;;;;;; (17843 27871)) |
| 12041 | ;;; Generated autoloads from gnus/gnus-dired.el | 12044 | ;;; Generated autoloads from gnus/gnus-dired.el |
| 12042 | 12045 | ||
| 12043 | (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ | 12046 | (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ |
| @@ -12048,7 +12051,7 @@ Convenience method to turn on gnus-dired-mode. | |||
| 12048 | ;;;*** | 12051 | ;;;*** |
| 12049 | 12052 | ||
| 12050 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" | 12053 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" |
| 12051 | ;;;;;; (17851 10857)) | 12054 | ;;;;;; (17843 27871)) |
| 12052 | ;;; Generated autoloads from gnus/gnus-draft.el | 12055 | ;;; Generated autoloads from gnus/gnus-draft.el |
| 12053 | 12056 | ||
| 12054 | (autoload (quote gnus-draft-reminder) "gnus-draft" "\ | 12057 | (autoload (quote gnus-draft-reminder) "gnus-draft" "\ |
| @@ -12060,8 +12063,8 @@ Reminder user if there are unsent drafts. | |||
| 12060 | 12063 | ||
| 12061 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png | 12064 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png |
| 12062 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header | 12065 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header |
| 12063 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17851 | 12066 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17843 |
| 12064 | ;;;;;; 10857)) | 12067 | ;;;;;; 27872)) |
| 12065 | ;;; Generated autoloads from gnus/gnus-fun.el | 12068 | ;;; Generated autoloads from gnus/gnus-fun.el |
| 12066 | 12069 | ||
| 12067 | (autoload (quote gnus-random-x-face) "gnus-fun" "\ | 12070 | (autoload (quote gnus-random-x-face) "gnus-fun" "\ |
| @@ -12100,7 +12103,7 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to | |||
| 12100 | ;;;*** | 12103 | ;;;*** |
| 12101 | 12104 | ||
| 12102 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) | 12105 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) |
| 12103 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (17851 10857)) | 12106 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (17843 27872)) |
| 12104 | ;;; Generated autoloads from gnus/gnus-group.el | 12107 | ;;; Generated autoloads from gnus/gnus-group.el |
| 12105 | 12108 | ||
| 12106 | (autoload (quote gnus-fetch-group) "gnus-group" "\ | 12109 | (autoload (quote gnus-fetch-group) "gnus-group" "\ |
| @@ -12117,7 +12120,7 @@ Pop up a frame and enter GROUP. | |||
| 12117 | ;;;*** | 12120 | ;;;*** |
| 12118 | 12121 | ||
| 12119 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" | 12122 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" |
| 12120 | ;;;;;; (17851 10857)) | 12123 | ;;;;;; (17843 27872)) |
| 12121 | ;;; Generated autoloads from gnus/gnus-kill.el | 12124 | ;;; Generated autoloads from gnus/gnus-kill.el |
| 12122 | 12125 | ||
| 12123 | (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) | 12126 | (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) |
| @@ -12132,7 +12135,7 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | |||
| 12132 | 12135 | ||
| 12133 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate | 12136 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate |
| 12134 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" | 12137 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" |
| 12135 | ;;;;;; (17851 10857)) | 12138 | ;;;;;; (17843 27872)) |
| 12136 | ;;; Generated autoloads from gnus/gnus-ml.el | 12139 | ;;; Generated autoloads from gnus/gnus-ml.el |
| 12137 | 12140 | ||
| 12138 | (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ | 12141 | (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ |
| @@ -12157,7 +12160,7 @@ Minor mode for providing mailing-list commands. | |||
| 12157 | 12160 | ||
| 12158 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update | 12161 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update |
| 12159 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" | 12162 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" |
| 12160 | ;;;;;; (17851 10857)) | 12163 | ;;;;;; (17843 27872)) |
| 12161 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 12164 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 12162 | 12165 | ||
| 12163 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ | 12166 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ |
| @@ -12258,7 +12261,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 12258 | ;;;*** | 12261 | ;;;*** |
| 12259 | 12262 | ||
| 12260 | ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" | 12263 | ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" |
| 12261 | ;;;;;; (17851 10857)) | 12264 | ;;;;;; (17843 27872)) |
| 12262 | ;;; Generated autoloads from gnus/gnus-move.el | 12265 | ;;; Generated autoloads from gnus/gnus-move.el |
| 12263 | 12266 | ||
| 12264 | (autoload (quote gnus-change-server) "gnus-move" "\ | 12267 | (autoload (quote gnus-change-server) "gnus-move" "\ |
| @@ -12270,7 +12273,7 @@ Update the .newsrc.eld file to reflect the change of nntp server. | |||
| 12270 | ;;;*** | 12273 | ;;;*** |
| 12271 | 12274 | ||
| 12272 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) | 12275 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) |
| 12273 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17851 10857)) | 12276 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17843 27872)) |
| 12274 | ;;; Generated autoloads from gnus/gnus-msg.el | 12277 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 12275 | 12278 | ||
| 12276 | (autoload (quote gnus-msg-mail) "gnus-msg" "\ | 12279 | (autoload (quote gnus-msg-mail) "gnus-msg" "\ |
| @@ -12295,7 +12298,7 @@ Like `message-reply'. | |||
| 12295 | ;;;*** | 12298 | ;;;*** |
| 12296 | 12299 | ||
| 12297 | ;;;### (autoloads (gnus-nocem-load-cache gnus-nocem-scan-groups) | 12300 | ;;;### (autoloads (gnus-nocem-load-cache gnus-nocem-scan-groups) |
| 12298 | ;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (17851 10857)) | 12301 | ;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (17843 27872)) |
| 12299 | ;;; Generated autoloads from gnus/gnus-nocem.el | 12302 | ;;; Generated autoloads from gnus/gnus-nocem.el |
| 12300 | 12303 | ||
| 12301 | (autoload (quote gnus-nocem-scan-groups) "gnus-nocem" "\ | 12304 | (autoload (quote gnus-nocem-scan-groups) "gnus-nocem" "\ |
| @@ -12312,7 +12315,7 @@ Load the NoCeM cache. | |||
| 12312 | 12315 | ||
| 12313 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon | 12316 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon |
| 12314 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" | 12317 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" |
| 12315 | ;;;;;; (17851 10857)) | 12318 | ;;;;;; (17843 27872)) |
| 12316 | ;;; Generated autoloads from gnus/gnus-picon.el | 12319 | ;;; Generated autoloads from gnus/gnus-picon.el |
| 12317 | 12320 | ||
| 12318 | (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ | 12321 | (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ |
| @@ -12339,7 +12342,7 @@ If picons are already displayed, remove them. | |||
| 12339 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection | 12342 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection |
| 12340 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement | 12343 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement |
| 12341 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" | 12344 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" |
| 12342 | ;;;;;; "gnus/gnus-range.el" (17851 10857)) | 12345 | ;;;;;; "gnus/gnus-range.el" (17843 27872)) |
| 12343 | ;;; Generated autoloads from gnus/gnus-range.el | 12346 | ;;; Generated autoloads from gnus/gnus-range.el |
| 12344 | 12347 | ||
| 12345 | (autoload (quote gnus-sorted-difference) "gnus-range" "\ | 12348 | (autoload (quote gnus-sorted-difference) "gnus-range" "\ |
| @@ -12407,7 +12410,7 @@ Add NUM into sorted LIST by side effect. | |||
| 12407 | ;;;*** | 12410 | ;;;*** |
| 12408 | 12411 | ||
| 12409 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) | 12412 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) |
| 12410 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17851 10857)) | 12413 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17843 27872)) |
| 12411 | ;;; Generated autoloads from gnus/gnus-registry.el | 12414 | ;;; Generated autoloads from gnus/gnus-registry.el |
| 12412 | 12415 | ||
| 12413 | (autoload (quote gnus-registry-initialize) "gnus-registry" "\ | 12416 | (autoload (quote gnus-registry-initialize) "gnus-registry" "\ |
| @@ -12423,8 +12426,8 @@ Install the registry hooks. | |||
| 12423 | ;;;*** | 12426 | ;;;*** |
| 12424 | 12427 | ||
| 12425 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate | 12428 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate |
| 12426 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17851 | 12429 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17843 |
| 12427 | ;;;;;; 10857)) | 12430 | ;;;;;; 27873)) |
| 12428 | ;;; Generated autoloads from gnus/gnus-sieve.el | 12431 | ;;; Generated autoloads from gnus/gnus-sieve.el |
| 12429 | 12432 | ||
| 12430 | (autoload (quote gnus-sieve-update) "gnus-sieve" "\ | 12433 | (autoload (quote gnus-sieve-update) "gnus-sieve" "\ |
| @@ -12452,7 +12455,7 @@ Not documented | |||
| 12452 | ;;;*** | 12455 | ;;;*** |
| 12453 | 12456 | ||
| 12454 | ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" | 12457 | ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" |
| 12455 | ;;;;;; (17851 10857)) | 12458 | ;;;;;; (17843 27873)) |
| 12456 | ;;; Generated autoloads from gnus/gnus-soup.el | 12459 | ;;; Generated autoloads from gnus/gnus-soup.el |
| 12457 | 12460 | ||
| 12458 | (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ | 12461 | (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ |
| @@ -12472,7 +12475,7 @@ Note -- this function hasn't been implemented yet. | |||
| 12472 | ;;;*** | 12475 | ;;;*** |
| 12473 | 12476 | ||
| 12474 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" | 12477 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" |
| 12475 | ;;;;;; (17851 10857)) | 12478 | ;;;;;; (17843 27873)) |
| 12476 | ;;; Generated autoloads from gnus/gnus-spec.el | 12479 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 12477 | 12480 | ||
| 12478 | (autoload (quote gnus-update-format) "gnus-spec" "\ | 12481 | (autoload (quote gnus-update-format) "gnus-spec" "\ |
| @@ -12483,8 +12486,8 @@ Update the format specification near point. | |||
| 12483 | ;;;*** | 12486 | ;;;*** |
| 12484 | 12487 | ||
| 12485 | ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news | 12488 | ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news |
| 12486 | ;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17851 | 12489 | ;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17843 |
| 12487 | ;;;;;; 10857)) | 12490 | ;;;;;; 27873)) |
| 12488 | ;;; Generated autoloads from gnus/gnus-start.el | 12491 | ;;; Generated autoloads from gnus/gnus-start.el |
| 12489 | 12492 | ||
| 12490 | (autoload (quote gnus-declare-backend) "gnus-start" "\ | 12493 | (autoload (quote gnus-declare-backend) "gnus-start" "\ |
| @@ -12500,7 +12503,7 @@ Not documented | |||
| 12500 | ;;;*** | 12503 | ;;;*** |
| 12501 | 12504 | ||
| 12502 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" | 12505 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" |
| 12503 | ;;;;;; (17851 10857)) | 12506 | ;;;;;; (17843 27874)) |
| 12504 | ;;; Generated autoloads from gnus/gnus-win.el | 12507 | ;;; Generated autoloads from gnus/gnus-win.el |
| 12505 | 12508 | ||
| 12506 | (autoload (quote gnus-add-configuration) "gnus-win" "\ | 12509 | (autoload (quote gnus-add-configuration) "gnus-win" "\ |
| @@ -12510,7 +12513,7 @@ Add the window configuration CONF to `gnus-buffer-configuration'. | |||
| 12510 | 12513 | ||
| 12511 | ;;;*** | 12514 | ;;;*** |
| 12512 | 12515 | ||
| 12513 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17851 10865)) | 12516 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17843 27880)) |
| 12514 | ;;; Generated autoloads from play/gomoku.el | 12517 | ;;; Generated autoloads from play/gomoku.el |
| 12515 | 12518 | ||
| 12516 | (autoload (quote gomoku) "gomoku" "\ | 12519 | (autoload (quote gomoku) "gomoku" "\ |
| @@ -12537,7 +12540,7 @@ Use \\[describe-mode] for more info. | |||
| 12537 | ;;;*** | 12540 | ;;;*** |
| 12538 | 12541 | ||
| 12539 | ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" | 12542 | ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" |
| 12540 | ;;;;;; "net/goto-addr.el" (17851 10863)) | 12543 | ;;;;;; "net/goto-addr.el" (17843 27879)) |
| 12541 | ;;; Generated autoloads from net/goto-addr.el | 12544 | ;;; Generated autoloads from net/goto-addr.el |
| 12542 | 12545 | ||
| 12543 | (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") | 12546 | (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") |
| @@ -12707,7 +12710,7 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]. | |||
| 12707 | 12710 | ||
| 12708 | ;;;*** | 12711 | ;;;*** |
| 12709 | 12712 | ||
| 12710 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (17851 10830)) | 12713 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (17843 27860)) |
| 12711 | ;;; Generated autoloads from gs.el | 12714 | ;;; Generated autoloads from gs.el |
| 12712 | 12715 | ||
| 12713 | (autoload (quote gs-load-image) "gs" "\ | 12716 | (autoload (quote gs-load-image) "gs" "\ |
| @@ -12720,8 +12723,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 12720 | 12723 | ||
| 12721 | ;;;*** | 12724 | ;;;*** |
| 12722 | 12725 | ||
| 12723 | ;;;### (autoloads (gdb-script-mode bashdb jdb pdb perldb xdb dbx | 12726 | ;;;### (autoloads (gdb-script-mode jdb pdb perldb xdb dbx sdb gdb) |
| 12724 | ;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17871 15754)) | 12727 | ;;;;;; "gud" "progmodes/gud.el" (17892 21082)) |
| 12725 | ;;; Generated autoloads from progmodes/gud.el | 12728 | ;;; Generated autoloads from progmodes/gud.el |
| 12726 | 12729 | ||
| 12727 | (autoload (quote gdb) "gud" "\ | 12730 | (autoload (quote gdb) "gud" "\ |
| @@ -12793,13 +12796,6 @@ For general information about commands available to control jdb from | |||
| 12793 | gud, see `gud-mode'. | 12796 | gud, see `gud-mode'. |
| 12794 | 12797 | ||
| 12795 | \(fn COMMAND-LINE)" t nil) | 12798 | \(fn COMMAND-LINE)" t nil) |
| 12796 | |||
| 12797 | (autoload (quote bashdb) "gud" "\ | ||
| 12798 | Run bashdb on program FILE in buffer *gud-FILE*. | ||
| 12799 | The directory containing FILE becomes the initial working directory | ||
| 12800 | and source-file directory for your debugger. | ||
| 12801 | |||
| 12802 | \(fn COMMAND-LINE)" t nil) | ||
| 12803 | (add-hook 'same-window-regexps "\\*gud-.*\\*\\(\\|<[0-9]+>\\)") | 12799 | (add-hook 'same-window-regexps "\\*gud-.*\\*\\(\\|<[0-9]+>\\)") |
| 12804 | 12800 | ||
| 12805 | (add-to-list (quote auto-mode-alist) (quote ("/\\.gdbinit" . gdb-script-mode))) | 12801 | (add-to-list (quote auto-mode-alist) (quote ("/\\.gdbinit" . gdb-script-mode))) |
| @@ -12811,8 +12807,8 @@ Major mode for editing GDB scripts | |||
| 12811 | 12807 | ||
| 12812 | ;;;*** | 12808 | ;;;*** |
| 12813 | 12809 | ||
| 12814 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17851 | 12810 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17843 |
| 12815 | ;;;;;; 10866)) | 12811 | ;;;;;; 27880)) |
| 12816 | ;;; Generated autoloads from play/handwrite.el | 12812 | ;;; Generated autoloads from play/handwrite.el |
| 12817 | 12813 | ||
| 12818 | (autoload (quote handwrite) "handwrite" "\ | 12814 | (autoload (quote handwrite) "handwrite" "\ |
| @@ -12830,7 +12826,7 @@ Variables: handwrite-linespace (default 12) | |||
| 12830 | ;;;*** | 12826 | ;;;*** |
| 12831 | 12827 | ||
| 12832 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" | 12828 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" |
| 12833 | ;;;;;; (17753 42784)) | 12829 | ;;;;;; (17746 34862)) |
| 12834 | ;;; Generated autoloads from play/hanoi.el | 12830 | ;;; Generated autoloads from play/hanoi.el |
| 12835 | 12831 | ||
| 12836 | (autoload (quote hanoi) "hanoi" "\ | 12832 | (autoload (quote hanoi) "hanoi" "\ |
| @@ -12860,7 +12856,7 @@ to be updated. | |||
| 12860 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region | 12856 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region |
| 12861 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer | 12857 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer |
| 12862 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string | 12858 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string |
| 12863 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17851 10830)) | 12859 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17843 27860)) |
| 12864 | ;;; Generated autoloads from help-at-pt.el | 12860 | ;;; Generated autoloads from help-at-pt.el |
| 12865 | 12861 | ||
| 12866 | (autoload (quote help-at-pt-string) "help-at-pt" "\ | 12862 | (autoload (quote help-at-pt-string) "help-at-pt" "\ |
| @@ -13047,7 +13043,7 @@ BUFFER should be a buffer or a buffer name. | |||
| 13047 | ;;;*** | 13043 | ;;;*** |
| 13048 | 13044 | ||
| 13049 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" | 13045 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" |
| 13050 | ;;;;;; (17851 10830)) | 13046 | ;;;;;; (17843 27860)) |
| 13051 | ;;; Generated autoloads from help-macro.el | 13047 | ;;; Generated autoloads from help-macro.el |
| 13052 | 13048 | ||
| 13053 | (defvar three-step-help nil "\ | 13049 | (defvar three-step-help nil "\ |
| @@ -13063,7 +13059,7 @@ A value of nil means skip the middle step, so that | |||
| 13063 | 13059 | ||
| 13064 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button | 13060 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button |
| 13065 | ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup | 13061 | ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup |
| 13066 | ;;;;;; help-mode) "help-mode" "help-mode.el" (17851 10833)) | 13062 | ;;;;;; help-mode) "help-mode" "help-mode.el" (17843 27860)) |
| 13067 | ;;; Generated autoloads from help-mode.el | 13063 | ;;; Generated autoloads from help-mode.el |
| 13068 | 13064 | ||
| 13069 | (autoload (quote help-mode) "help-mode" "\ | 13065 | (autoload (quote help-mode) "help-mode" "\ |
| @@ -13146,7 +13142,7 @@ Add xrefs for symbols in `pp's output between FROM and TO. | |||
| 13146 | ;;;*** | 13142 | ;;;*** |
| 13147 | 13143 | ||
| 13148 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" | 13144 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" |
| 13149 | ;;;;;; "emacs-lisp/helper.el" (17851 10853)) | 13145 | ;;;;;; "emacs-lisp/helper.el" (17843 27869)) |
| 13150 | ;;; Generated autoloads from emacs-lisp/helper.el | 13146 | ;;; Generated autoloads from emacs-lisp/helper.el |
| 13151 | 13147 | ||
| 13152 | (autoload (quote Helper-describe-bindings) "helper" "\ | 13148 | (autoload (quote Helper-describe-bindings) "helper" "\ |
| @@ -13384,7 +13380,7 @@ be found in variable `hi-lock-interactive-patterns'. | |||
| 13384 | ;;;*** | 13380 | ;;;*** |
| 13385 | 13381 | ||
| 13386 | ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially | 13382 | ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially |
| 13387 | ;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17851 10868)) | 13383 | ;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17843 27882)) |
| 13388 | ;;; Generated autoloads from progmodes/hideif.el | 13384 | ;;; Generated autoloads from progmodes/hideif.el |
| 13389 | 13385 | ||
| 13390 | (autoload (quote hide-ifdef-mode) "hideif" "\ | 13386 | (autoload (quote hide-ifdef-mode) "hideif" "\ |
| @@ -13439,7 +13435,7 @@ how the hiding is done: | |||
| 13439 | ;;;*** | 13435 | ;;;*** |
| 13440 | 13436 | ||
| 13441 | ;;;### (autoloads (hs-minor-mode) "hideshow" "progmodes/hideshow.el" | 13437 | ;;;### (autoloads (hs-minor-mode) "hideshow" "progmodes/hideshow.el" |
| 13442 | ;;;;;; (17851 10868)) | 13438 | ;;;;;; (17843 27882)) |
| 13443 | ;;; Generated autoloads from progmodes/hideshow.el | 13439 | ;;; Generated autoloads from progmodes/hideshow.el |
| 13444 | 13440 | ||
| 13445 | (defvar hs-special-modes-alist (quote ((c-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (bibtex-mode ("^@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning))) "\ | 13441 | (defvar hs-special-modes-alist (quote ((c-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (bibtex-mode ("^@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning))) "\ |
| @@ -13497,7 +13493,7 @@ Key bindings: | |||
| 13497 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces | 13493 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces |
| 13498 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change | 13494 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change |
| 13499 | ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) | 13495 | ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) |
| 13500 | ;;;;;; "hilit-chg" "hilit-chg.el" (17851 10833)) | 13496 | ;;;;;; "hilit-chg" "hilit-chg.el" (17843 27860)) |
| 13501 | ;;; Generated autoloads from hilit-chg.el | 13497 | ;;; Generated autoloads from hilit-chg.el |
| 13502 | 13498 | ||
| 13503 | (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ | 13499 | (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ |
| @@ -13627,7 +13623,7 @@ variable `highlight-changes-global-changes-existing-buffers' is non-nil). | |||
| 13627 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction | 13623 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction |
| 13628 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space | 13624 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space |
| 13629 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" | 13625 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" |
| 13630 | ;;;;;; "hippie-exp.el" (17851 10833)) | 13626 | ;;;;;; "hippie-exp.el" (17843 27860)) |
| 13631 | ;;; Generated autoloads from hippie-exp.el | 13627 | ;;; Generated autoloads from hippie-exp.el |
| 13632 | 13628 | ||
| 13633 | (defvar hippie-expand-try-functions-list (quote (try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol)) "\ | 13629 | (defvar hippie-expand-try-functions-list (quote (try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol)) "\ |
| @@ -13700,7 +13696,7 @@ argument VERBOSE non-nil makes the function verbose. | |||
| 13700 | ;;;*** | 13696 | ;;;*** |
| 13701 | 13697 | ||
| 13702 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" | 13698 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" |
| 13703 | ;;;;;; (17851 10833)) | 13699 | ;;;;;; (17843 27860)) |
| 13704 | ;;; Generated autoloads from hl-line.el | 13700 | ;;; Generated autoloads from hl-line.el |
| 13705 | 13701 | ||
| 13706 | (autoload (quote hl-line-mode) "hl-line" "\ | 13702 | (autoload (quote hl-line-mode) "hl-line" "\ |
| @@ -13741,7 +13737,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and | |||
| 13741 | ;;;*** | 13737 | ;;;*** |
| 13742 | 13738 | ||
| 13743 | ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" | 13739 | ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" |
| 13744 | ;;;;;; (17851 10852)) | 13740 | ;;;;;; (17843 27868)) |
| 13745 | ;;; Generated autoloads from calendar/holidays.el | 13741 | ;;; Generated autoloads from calendar/holidays.el |
| 13746 | 13742 | ||
| 13747 | (autoload (quote holidays) "holidays" "\ | 13743 | (autoload (quote holidays) "holidays" "\ |
| @@ -13777,8 +13773,8 @@ The optional LABEL is used to label the buffer created. | |||
| 13777 | 13773 | ||
| 13778 | ;;;*** | 13774 | ;;;*** |
| 13779 | 13775 | ||
| 13780 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17851 | 13776 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17843 |
| 13781 | ;;;;;; 10857)) | 13777 | ;;;;;; 27874)) |
| 13782 | ;;; Generated autoloads from gnus/html2text.el | 13778 | ;;; Generated autoloads from gnus/html2text.el |
| 13783 | 13779 | ||
| 13784 | (autoload (quote html2text) "html2text" "\ | 13780 | (autoload (quote html2text) "html2text" "\ |
| @@ -13810,7 +13806,7 @@ Convert HTML to plain text in the current buffer. | |||
| 13810 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group | 13806 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group |
| 13811 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group | 13807 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group |
| 13812 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode | 13808 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode |
| 13813 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17851 10833)) | 13809 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17843 27860)) |
| 13814 | ;;; Generated autoloads from ibuf-ext.el | 13810 | ;;; Generated autoloads from ibuf-ext.el |
| 13815 | 13811 | ||
| 13816 | (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ | 13812 | (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ |
| @@ -14176,8 +14172,8 @@ defaults to one. | |||
| 14176 | ;;;*** | 14172 | ;;;*** |
| 14177 | 14173 | ||
| 14178 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter | 14174 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter |
| 14179 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17851 | 14175 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17843 |
| 14180 | ;;;;;; 10834)) | 14176 | ;;;;;; 27860)) |
| 14181 | ;;; Generated autoloads from ibuf-macs.el | 14177 | ;;; Generated autoloads from ibuf-macs.el |
| 14182 | 14178 | ||
| 14183 | (autoload (quote define-ibuffer-column) "ibuf-macs" "\ | 14179 | (autoload (quote define-ibuffer-column) "ibuf-macs" "\ |
| @@ -14266,7 +14262,7 @@ bound to the current value of the filter. | |||
| 14266 | ;;;*** | 14262 | ;;;*** |
| 14267 | 14263 | ||
| 14268 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) | 14264 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) |
| 14269 | ;;;;;; "ibuffer" "ibuffer.el" (17851 10834)) | 14265 | ;;;;;; "ibuffer" "ibuffer.el" (17843 27860)) |
| 14270 | ;;; Generated autoloads from ibuffer.el | 14266 | ;;; Generated autoloads from ibuffer.el |
| 14271 | 14267 | ||
| 14272 | (autoload (quote ibuffer-list-buffers) "ibuffer" "\ | 14268 | (autoload (quote ibuffer-list-buffers) "ibuffer" "\ |
| @@ -14307,7 +14303,7 @@ FORMATS is the value to use for `ibuffer-formats'. | |||
| 14307 | 14303 | ||
| 14308 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file | 14304 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file |
| 14309 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" | 14305 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" |
| 14310 | ;;;;;; "calendar/icalendar.el" (17851 10852)) | 14306 | ;;;;;; "calendar/icalendar.el" (17843 27868)) |
| 14311 | ;;; Generated autoloads from calendar/icalendar.el | 14307 | ;;; Generated autoloads from calendar/icalendar.el |
| 14312 | 14308 | ||
| 14313 | (autoload (quote icalendar-export-file) "icalendar" "\ | 14309 | (autoload (quote icalendar-export-file) "icalendar" "\ |
| @@ -14359,8 +14355,8 @@ buffer `*icalendar-errors*'. | |||
| 14359 | 14355 | ||
| 14360 | ;;;*** | 14356 | ;;;*** |
| 14361 | 14357 | ||
| 14362 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17851 | 14358 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17843 |
| 14363 | ;;;;;; 10834)) | 14359 | ;;;;;; 27860)) |
| 14364 | ;;; Generated autoloads from icomplete.el | 14360 | ;;; Generated autoloads from icomplete.el |
| 14365 | 14361 | ||
| 14366 | (defvar icomplete-mode nil "\ | 14362 | (defvar icomplete-mode nil "\ |
| @@ -14380,7 +14376,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive. | |||
| 14380 | 14376 | ||
| 14381 | ;;;*** | 14377 | ;;;*** |
| 14382 | 14378 | ||
| 14383 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17851 10868)) | 14379 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17843 27882)) |
| 14384 | ;;; Generated autoloads from progmodes/icon.el | 14380 | ;;; Generated autoloads from progmodes/icon.el |
| 14385 | 14381 | ||
| 14386 | (autoload (quote icon-mode) "icon" "\ | 14382 | (autoload (quote icon-mode) "icon" "\ |
| @@ -14582,8 +14578,8 @@ The main features of this mode are | |||
| 14582 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file | 14578 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file |
| 14583 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer | 14579 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer |
| 14584 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window | 14580 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window |
| 14585 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17864 | 14581 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17892 |
| 14586 | ;;;;;; 64718)) | 14582 | ;;;;;; 21082)) |
| 14587 | ;;; Generated autoloads from ido.el | 14583 | ;;; Generated autoloads from ido.el |
| 14588 | 14584 | ||
| 14589 | (defvar ido-mode nil "\ | 14585 | (defvar ido-mode nil "\ |
| @@ -14844,7 +14840,7 @@ DEF, if non-nil, is the default value. | |||
| 14844 | 14840 | ||
| 14845 | ;;;*** | 14841 | ;;;*** |
| 14846 | 14842 | ||
| 14847 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (17851 10834)) | 14843 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (17843 27860)) |
| 14848 | ;;; Generated autoloads from ielm.el | 14844 | ;;; Generated autoloads from ielm.el |
| 14849 | (add-hook 'same-window-buffer-names "*ielm*") | 14845 | (add-hook 'same-window-buffer-names "*ielm*") |
| 14850 | 14846 | ||
| @@ -14857,7 +14853,7 @@ Switches to the buffer `*ielm*', or creates it if it does not exist. | |||
| 14857 | ;;;*** | 14853 | ;;;*** |
| 14858 | 14854 | ||
| 14859 | ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" | 14855 | ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" |
| 14860 | ;;;;;; (17851 10834)) | 14856 | ;;;;;; (17843 27860)) |
| 14861 | ;;; Generated autoloads from iimage.el | 14857 | ;;; Generated autoloads from iimage.el |
| 14862 | 14858 | ||
| 14863 | (autoload (quote turn-on-iimage-mode) "iimage" "\ | 14859 | (autoload (quote turn-on-iimage-mode) "iimage" "\ |
| @@ -15052,7 +15048,7 @@ Example: | |||
| 15052 | 15048 | ||
| 15053 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp | 15049 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp |
| 15054 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" | 15050 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" |
| 15055 | ;;;;;; "image-file.el" (17851 10834)) | 15051 | ;;;;;; "image-file.el" (17843 27860)) |
| 15056 | ;;; Generated autoloads from image-file.el | 15052 | ;;; Generated autoloads from image-file.el |
| 15057 | 15053 | ||
| 15058 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ | 15054 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ |
| @@ -15152,7 +15148,7 @@ information on these modes. | |||
| 15152 | ;;;*** | 15148 | ;;;*** |
| 15153 | 15149 | ||
| 15154 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar | 15150 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar |
| 15155 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (17851 10835)) | 15151 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (17843 27860)) |
| 15156 | ;;; Generated autoloads from imenu.el | 15152 | ;;; Generated autoloads from imenu.el |
| 15157 | 15153 | ||
| 15158 | (defvar imenu-sort-function nil "\ | 15154 | (defvar imenu-sort-function nil "\ |
| @@ -15267,7 +15263,7 @@ for more information. | |||
| 15267 | 15263 | ||
| 15268 | ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion | 15264 | ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion |
| 15269 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) | 15265 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) |
| 15270 | ;;;;;; "ind-util" "language/ind-util.el" (17851 10861)) | 15266 | ;;;;;; "ind-util" "language/ind-util.el" (17843 27877)) |
| 15271 | ;;; Generated autoloads from language/ind-util.el | 15267 | ;;; Generated autoloads from language/ind-util.el |
| 15272 | 15268 | ||
| 15273 | (autoload (quote indian-compose-region) "ind-util" "\ | 15269 | (autoload (quote indian-compose-region) "ind-util" "\ |
| @@ -15310,7 +15306,7 @@ See also the function `indian-glyph-char'. | |||
| 15310 | 15306 | ||
| 15311 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command | 15307 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command |
| 15312 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" | 15308 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" |
| 15313 | ;;;;;; "progmodes/inf-lisp.el" (17851 10868)) | 15309 | ;;;;;; "progmodes/inf-lisp.el" (17843 27882)) |
| 15314 | ;;; Generated autoloads from progmodes/inf-lisp.el | 15310 | ;;; Generated autoloads from progmodes/inf-lisp.el |
| 15315 | 15311 | ||
| 15316 | (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ | 15312 | (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ |
| @@ -15591,7 +15587,7 @@ Perform completion on file preceding point. | |||
| 15591 | ;;;*** | 15587 | ;;;*** |
| 15592 | 15588 | ||
| 15593 | ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all | 15589 | ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all |
| 15594 | ;;;;;; info-xref-check) "info-xref" "info-xref.el" (17851 10835)) | 15590 | ;;;;;; info-xref-check) "info-xref" "info-xref.el" (17843 27860)) |
| 15595 | ;;; Generated autoloads from info-xref.el | 15591 | ;;; Generated autoloads from info-xref.el |
| 15596 | 15592 | ||
| 15597 | (autoload (quote info-xref-check) "info-xref" "\ | 15593 | (autoload (quote info-xref-check) "info-xref" "\ |
| @@ -15618,7 +15614,7 @@ quite a while. | |||
| 15618 | ;;;*** | 15614 | ;;;*** |
| 15619 | 15615 | ||
| 15620 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) | 15616 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) |
| 15621 | ;;;;;; "informat" "informat.el" (17851 10835)) | 15617 | ;;;;;; "informat" "informat.el" (17843 27861)) |
| 15622 | ;;; Generated autoloads from informat.el | 15618 | ;;; Generated autoloads from informat.el |
| 15623 | 15619 | ||
| 15624 | (autoload (quote Info-tagify) "informat" "\ | 15620 | (autoload (quote Info-tagify) "informat" "\ |
| @@ -15659,7 +15655,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15659 | 15655 | ||
| 15660 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method | 15656 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method |
| 15661 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" | 15657 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" |
| 15662 | ;;;;;; (17851 10860)) | 15658 | ;;;;;; (17843 27876)) |
| 15663 | ;;; Generated autoloads from international/isearch-x.el | 15659 | ;;; Generated autoloads from international/isearch-x.el |
| 15664 | 15660 | ||
| 15665 | (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ | 15661 | (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ |
| @@ -15696,7 +15692,7 @@ accessed via isearchb. | |||
| 15696 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only | 15692 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only |
| 15697 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso | 15693 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso |
| 15698 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" | 15694 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" |
| 15699 | ;;;;;; "international/iso-cvt.el" (17851 10860)) | 15695 | ;;;;;; "international/iso-cvt.el" (17843 27876)) |
| 15700 | ;;; Generated autoloads from international/iso-cvt.el | 15696 | ;;; Generated autoloads from international/iso-cvt.el |
| 15701 | 15697 | ||
| 15702 | (autoload (quote iso-spanish) "iso-cvt" "\ | 15698 | (autoload (quote iso-spanish) "iso-cvt" "\ |
| @@ -15780,7 +15776,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 15780 | ;;;*** | 15776 | ;;;*** |
| 15781 | 15777 | ||
| 15782 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" | 15778 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" |
| 15783 | ;;;;;; (17851 10860)) | 15779 | ;;;;;; (17843 27876)) |
| 15784 | ;;; Generated autoloads from international/iso-transl.el | 15780 | ;;; Generated autoloads from international/iso-transl.el |
| 15785 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) | 15781 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) |
| 15786 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 15782 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| @@ -16106,7 +16102,7 @@ This mode enables switching between buffers using substrings. See | |||
| 16106 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region | 16102 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region |
| 16107 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku | 16103 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku |
| 16108 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) | 16104 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) |
| 16109 | ;;;;;; "japan-util" "language/japan-util.el" (17851 10861)) | 16105 | ;;;;;; "japan-util" "language/japan-util.el" (17843 27877)) |
| 16110 | ;;; Generated autoloads from language/japan-util.el | 16106 | ;;; Generated autoloads from language/japan-util.el |
| 16111 | 16107 | ||
| 16112 | (autoload (quote setup-japanese-environment-internal) "japan-util" "\ | 16108 | (autoload (quote setup-japanese-environment-internal) "japan-util" "\ |
| @@ -16209,7 +16205,7 @@ by `jka-compr-installed'. | |||
| 16209 | 16205 | ||
| 16210 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup | 16206 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup |
| 16211 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" | 16207 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" |
| 16212 | ;;;;;; (17851 10853)) | 16208 | ;;;;;; (17838 58219)) |
| 16213 | ;;; Generated autoloads from emulation/keypad.el | 16209 | ;;; Generated autoloads from emulation/keypad.el |
| 16214 | 16210 | ||
| 16215 | (defvar keypad-setup nil "\ | 16211 | (defvar keypad-setup nil "\ |
| @@ -16265,7 +16261,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' | |||
| 16265 | ;;;*** | 16261 | ;;;*** |
| 16266 | 16262 | ||
| 16267 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" | 16263 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" |
| 16268 | ;;;;;; (17851 10860)) | 16264 | ;;;;;; (17843 27876)) |
| 16269 | ;;; Generated autoloads from international/kinsoku.el | 16265 | ;;; Generated autoloads from international/kinsoku.el |
| 16270 | 16266 | ||
| 16271 | (autoload (quote kinsoku) "kinsoku" "\ | 16267 | (autoload (quote kinsoku) "kinsoku" "\ |
| @@ -16286,8 +16282,8 @@ the context of text formatting. | |||
| 16286 | 16282 | ||
| 16287 | ;;;*** | 16283 | ;;;*** |
| 16288 | 16284 | ||
| 16289 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17851 | 16285 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17843 |
| 16290 | ;;;;;; 10860)) | 16286 | ;;;;;; 27876)) |
| 16291 | ;;; Generated autoloads from international/kkc.el | 16287 | ;;; Generated autoloads from international/kkc.el |
| 16292 | 16288 | ||
| 16293 | (defvar kkc-after-update-conversion-functions nil "\ | 16289 | (defvar kkc-after-update-conversion-functions nil "\ |
| @@ -16312,7 +16308,7 @@ and the return value is the length of the conversion. | |||
| 16312 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro | 16308 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro |
| 16313 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter | 16309 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter |
| 16314 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" | 16310 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" |
| 16315 | ;;;;;; "kmacro.el" (17851 10836)) | 16311 | ;;;;;; "kmacro.el" (17838 58217)) |
| 16316 | ;;; Generated autoloads from kmacro.el | 16312 | ;;; Generated autoloads from kmacro.el |
| 16317 | (global-set-key "\C-x(" 'kmacro-start-macro) | 16313 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 16318 | (global-set-key "\C-x)" 'kmacro-end-macro) | 16314 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -16419,7 +16415,7 @@ If kbd macro currently being defined end it before activating it. | |||
| 16419 | 16415 | ||
| 16420 | ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string | 16416 | ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string |
| 16421 | ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" | 16417 | ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" |
| 16422 | ;;;;;; (17851 10861)) | 16418 | ;;;;;; (17843 27877)) |
| 16423 | ;;; Generated autoloads from language/knd-util.el | 16419 | ;;; Generated autoloads from language/knd-util.el |
| 16424 | 16420 | ||
| 16425 | (defconst kannada-consonant "[\x51f75-\x51fb9]") | 16421 | (defconst kannada-consonant "[\x51f75-\x51fb9]") |
| @@ -16442,7 +16438,7 @@ Not documented | |||
| 16442 | ;;;*** | 16438 | ;;;*** |
| 16443 | 16439 | ||
| 16444 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" | 16440 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" |
| 16445 | ;;;;;; "language/korea-util.el" (17851 10861)) | 16441 | ;;;;;; "language/korea-util.el" (17843 27877)) |
| 16446 | ;;; Generated autoloads from language/korea-util.el | 16442 | ;;; Generated autoloads from language/korea-util.el |
| 16447 | 16443 | ||
| 16448 | (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ | 16444 | (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ |
| @@ -16457,7 +16453,7 @@ Not documented | |||
| 16457 | ;;;*** | 16453 | ;;;*** |
| 16458 | 16454 | ||
| 16459 | ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" | 16455 | ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" |
| 16460 | ;;;;;; (17851 10866)) | 16456 | ;;;;;; (17843 27880)) |
| 16461 | ;;; Generated autoloads from play/landmark.el | 16457 | ;;; Generated autoloads from play/landmark.el |
| 16462 | 16458 | ||
| 16463 | (defalias (quote landmark-repeat) (quote lm-test-run)) | 16459 | (defalias (quote landmark-repeat) (quote lm-test-run)) |
| @@ -16491,8 +16487,8 @@ Use \\[describe-mode] for more info. | |||
| 16491 | 16487 | ||
| 16492 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion | 16488 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion |
| 16493 | ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao | 16489 | ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao |
| 16494 | ;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17851 | 16490 | ;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17843 |
| 16495 | ;;;;;; 10861)) | 16491 | ;;;;;; 27877)) |
| 16496 | ;;; Generated autoloads from language/lao-util.el | 16492 | ;;; Generated autoloads from language/lao-util.el |
| 16497 | 16493 | ||
| 16498 | (autoload (quote lao-compose-string) "lao-util" "\ | 16494 | (autoload (quote lao-compose-string) "lao-util" "\ |
| @@ -16541,7 +16537,7 @@ Not documented | |||
| 16541 | 16537 | ||
| 16542 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc | 16538 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc |
| 16543 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) | 16539 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) |
| 16544 | ;;;;;; "latexenc" "international/latexenc.el" (17851 10860)) | 16540 | ;;;;;; "latexenc" "international/latexenc.el" (17843 27876)) |
| 16545 | ;;; Generated autoloads from international/latexenc.el | 16541 | ;;; Generated autoloads from international/latexenc.el |
| 16546 | 16542 | ||
| 16547 | (defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ | 16543 | (defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ |
| @@ -16617,7 +16613,7 @@ use either \\[customize] or the function `latin1-display'.") | |||
| 16617 | ;;;*** | 16613 | ;;;*** |
| 16618 | 16614 | ||
| 16619 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" | 16615 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" |
| 16620 | ;;;;;; (17851 10868)) | 16616 | ;;;;;; (17843 27882)) |
| 16621 | ;;; Generated autoloads from progmodes/ld-script.el | 16617 | ;;; Generated autoloads from progmodes/ld-script.el |
| 16622 | 16618 | ||
| 16623 | (add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) | 16619 | (add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) |
| @@ -16632,7 +16628,7 @@ A major mode to edit GNU ld script files | |||
| 16632 | ;;;*** | 16628 | ;;;*** |
| 16633 | 16629 | ||
| 16634 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" | 16630 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" |
| 16635 | ;;;;;; (17851 10837)) | 16631 | ;;;;;; (17843 27861)) |
| 16636 | ;;; Generated autoloads from ledit.el | 16632 | ;;; Generated autoloads from ledit.el |
| 16637 | 16633 | ||
| 16638 | (defconst ledit-save-files t "\ | 16634 | (defconst ledit-save-files t "\ |
| @@ -16667,7 +16663,7 @@ Not documented | |||
| 16667 | 16663 | ||
| 16668 | ;;;*** | 16664 | ;;;*** |
| 16669 | 16665 | ||
| 16670 | ;;;### (autoloads (life) "life" "play/life.el" (17851 10866)) | 16666 | ;;;### (autoloads (life) "life" "play/life.el" (17843 27880)) |
| 16671 | ;;; Generated autoloads from play/life.el | 16667 | ;;; Generated autoloads from play/life.el |
| 16672 | 16668 | ||
| 16673 | (autoload (quote life) "life" "\ | 16669 | (autoload (quote life) "life" "\ |
| @@ -16704,7 +16700,7 @@ such as redefining an Emacs function. | |||
| 16704 | ;;;*** | 16700 | ;;;*** |
| 16705 | 16701 | ||
| 16706 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) | 16702 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) |
| 16707 | ;;;;;; "locate" "locate.el" (17851 10838)) | 16703 | ;;;;;; "locate" "locate.el" (17843 27861)) |
| 16708 | ;;; Generated autoloads from locate.el | 16704 | ;;; Generated autoloads from locate.el |
| 16709 | 16705 | ||
| 16710 | (defvar locate-ls-subdir-switches "-al" "\ | 16706 | (defvar locate-ls-subdir-switches "-al" "\ |
| @@ -16751,7 +16747,7 @@ except that FILTER is not optional. | |||
| 16751 | 16747 | ||
| 16752 | ;;;*** | 16748 | ;;;*** |
| 16753 | 16749 | ||
| 16754 | ;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17851 10838)) | 16750 | ;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17843 27861)) |
| 16755 | ;;; Generated autoloads from log-edit.el | 16751 | ;;; Generated autoloads from log-edit.el |
| 16756 | 16752 | ||
| 16757 | (autoload (quote log-edit) "log-edit" "\ | 16753 | (autoload (quote log-edit) "log-edit" "\ |
| @@ -16772,8 +16768,8 @@ If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the | |||
| 16772 | 16768 | ||
| 16773 | ;;;*** | 16769 | ;;;*** |
| 16774 | 16770 | ||
| 16775 | ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17851 | 16771 | ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17843 |
| 16776 | ;;;;;; 10838)) | 16772 | ;;;;;; 27861)) |
| 16777 | ;;; Generated autoloads from log-view.el | 16773 | ;;; Generated autoloads from log-view.el |
| 16778 | 16774 | ||
| 16779 | (autoload (quote log-view-mode) "log-view" "\ | 16775 | (autoload (quote log-view-mode) "log-view" "\ |
| @@ -16783,8 +16779,8 @@ Major mode for browsing CVS log output. | |||
| 16783 | 16779 | ||
| 16784 | ;;;*** | 16780 | ;;;*** |
| 16785 | 16781 | ||
| 16786 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17851 | 16782 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17843 |
| 16787 | ;;;;;; 10838)) | 16783 | ;;;;;; 27861)) |
| 16788 | ;;; Generated autoloads from longlines.el | 16784 | ;;; Generated autoloads from longlines.el |
| 16789 | 16785 | ||
| 16790 | (autoload (quote longlines-mode) "longlines" "\ | 16786 | (autoload (quote longlines-mode) "longlines" "\ |
| @@ -16805,8 +16801,8 @@ are indicated with a symbol. | |||
| 16805 | ;;;*** | 16801 | ;;;*** |
| 16806 | 16802 | ||
| 16807 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer | 16803 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer |
| 16808 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17851 | 16804 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17843 |
| 16809 | ;;;;;; 10838)) | 16805 | ;;;;;; 27861)) |
| 16810 | ;;; Generated autoloads from lpr.el | 16806 | ;;; Generated autoloads from lpr.el |
| 16811 | 16807 | ||
| 16812 | (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) | 16808 | (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) |
| @@ -16911,8 +16907,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") | |||
| 16911 | 16907 | ||
| 16912 | ;;;*** | 16908 | ;;;*** |
| 16913 | 16909 | ||
| 16914 | ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17851 | 16910 | ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17843 |
| 16915 | ;;;;;; 10852)) | 16911 | ;;;;;; 27868)) |
| 16916 | ;;; Generated autoloads from calendar/lunar.el | 16912 | ;;; Generated autoloads from calendar/lunar.el |
| 16917 | 16913 | ||
| 16918 | (autoload (quote phases-of-moon) "lunar" "\ | 16914 | (autoload (quote phases-of-moon) "lunar" "\ |
| @@ -16925,8 +16921,8 @@ This function is suitable for execution in a .emacs file. | |||
| 16925 | 16921 | ||
| 16926 | ;;;*** | 16922 | ;;;*** |
| 16927 | 16923 | ||
| 16928 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17851 | 16924 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17843 |
| 16929 | ;;;;;; 10868)) | 16925 | ;;;;;; 27882)) |
| 16930 | ;;; Generated autoloads from progmodes/m4-mode.el | 16926 | ;;; Generated autoloads from progmodes/m4-mode.el |
| 16931 | 16927 | ||
| 16932 | (autoload (quote m4-mode) "m4-mode" "\ | 16928 | (autoload (quote m4-mode) "m4-mode" "\ |
| @@ -16938,7 +16934,7 @@ A major mode to edit m4 macro files. | |||
| 16938 | ;;;*** | 16934 | ;;;*** |
| 16939 | 16935 | ||
| 16940 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" | 16936 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" |
| 16941 | ;;;;;; (17851 10853)) | 16937 | ;;;;;; (17843 27869)) |
| 16942 | ;;; Generated autoloads from emacs-lisp/macroexp.el | 16938 | ;;; Generated autoloads from emacs-lisp/macroexp.el |
| 16943 | 16939 | ||
| 16944 | (autoload (quote macroexpand-all) "macroexp" "\ | 16940 | (autoload (quote macroexpand-all) "macroexp" "\ |
| @@ -16952,7 +16948,7 @@ definitions to shadow the loaded ones for use in file byte-compilation. | |||
| 16952 | ;;;*** | 16948 | ;;;*** |
| 16953 | 16949 | ||
| 16954 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro | 16950 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro |
| 16955 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (17851 10838)) | 16951 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (17843 27861)) |
| 16956 | ;;; Generated autoloads from macros.el | 16952 | ;;; Generated autoloads from macros.el |
| 16957 | 16953 | ||
| 16958 | (autoload (quote name-last-kbd-macro) "macros" "\ | 16954 | (autoload (quote name-last-kbd-macro) "macros" "\ |
| @@ -17041,7 +17037,7 @@ and then select the region of un-tablified names and use | |||
| 17041 | ;;;*** | 17037 | ;;;*** |
| 17042 | 17038 | ||
| 17043 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" | 17039 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" |
| 17044 | ;;;;;; "mail/mail-extr.el" (17851 10861)) | 17040 | ;;;;;; "mail/mail-extr.el" (17843 27878)) |
| 17045 | ;;; Generated autoloads from mail/mail-extr.el | 17041 | ;;; Generated autoloads from mail/mail-extr.el |
| 17046 | 17042 | ||
| 17047 | (autoload (quote mail-extract-address-components) "mail-extr" "\ | 17043 | (autoload (quote mail-extract-address-components) "mail-extr" "\ |
| @@ -17073,7 +17069,7 @@ Convert mail domain DOMAIN to the country it corresponds to. | |||
| 17073 | 17069 | ||
| 17074 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history | 17070 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history |
| 17075 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" | 17071 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" |
| 17076 | ;;;;;; (17851 10862)) | 17072 | ;;;;;; (17843 27878)) |
| 17077 | ;;; Generated autoloads from mail/mail-hist.el | 17073 | ;;; Generated autoloads from mail/mail-hist.el |
| 17078 | 17074 | ||
| 17079 | (autoload (quote mail-hist-define-keys) "mail-hist" "\ | 17075 | (autoload (quote mail-hist-define-keys) "mail-hist" "\ |
| @@ -17104,8 +17100,8 @@ This function normally would be called when the message is sent. | |||
| 17104 | 17100 | ||
| 17105 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region | 17101 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region |
| 17106 | ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p | 17102 | ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p |
| 17107 | ;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17851 | 17103 | ;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17892 |
| 17108 | ;;;;;; 10862)) | 17104 | ;;;;;; 53317)) |
| 17109 | ;;; Generated autoloads from mail/mail-utils.el | 17105 | ;;; Generated autoloads from mail/mail-utils.el |
| 17110 | 17106 | ||
| 17111 | (defvar mail-use-rfc822 nil "\ | 17107 | (defvar mail-use-rfc822 nil "\ |
| @@ -17157,7 +17153,7 @@ If 4th arg LIST is non-nil, return a list of all such fields. | |||
| 17157 | ;;;*** | 17153 | ;;;*** |
| 17158 | 17154 | ||
| 17159 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) | 17155 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) |
| 17160 | ;;;;;; "mailabbrev" "mail/mailabbrev.el" (17851 10862)) | 17156 | ;;;;;; "mailabbrev" "mail/mailabbrev.el" (17843 27878)) |
| 17161 | ;;; Generated autoloads from mail/mailabbrev.el | 17157 | ;;; Generated autoloads from mail/mailabbrev.el |
| 17162 | 17158 | ||
| 17163 | (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ | 17159 | (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ |
| @@ -17180,8 +17176,8 @@ If DEFINITION contains multiple addresses, separate them with commas. | |||
| 17180 | ;;;*** | 17176 | ;;;*** |
| 17181 | 17177 | ||
| 17182 | ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases | 17178 | ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases |
| 17183 | ;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17851 | 17179 | ;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17843 |
| 17184 | ;;;;;; 10862)) | 17180 | ;;;;;; 27878)) |
| 17185 | ;;; Generated autoloads from mail/mailalias.el | 17181 | ;;; Generated autoloads from mail/mailalias.el |
| 17186 | 17182 | ||
| 17187 | (defvar mail-complete-style (quote angles) "\ | 17183 | (defvar mail-complete-style (quote angles) "\ |
| @@ -17227,7 +17223,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any. | |||
| 17227 | ;;;*** | 17223 | ;;;*** |
| 17228 | 17224 | ||
| 17229 | ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" | 17225 | ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" |
| 17230 | ;;;;;; (17851 10862)) | 17226 | ;;;;;; (17843 27878)) |
| 17231 | ;;; Generated autoloads from mail/mailclient.el | 17227 | ;;; Generated autoloads from mail/mailclient.el |
| 17232 | 17228 | ||
| 17233 | (autoload (quote mailclient-send-it) "mailclient" "\ | 17229 | (autoload (quote mailclient-send-it) "mailclient" "\ |
| @@ -17241,7 +17237,7 @@ The mail client is taken to be the handler of mailto URLs. | |||
| 17241 | 17237 | ||
| 17242 | ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode | 17238 | ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode |
| 17243 | ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) | 17239 | ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) |
| 17244 | ;;;;;; "make-mode" "progmodes/make-mode.el" (17851 10868)) | 17240 | ;;;;;; "make-mode" "progmodes/make-mode.el" (17843 27882)) |
| 17245 | ;;; Generated autoloads from progmodes/make-mode.el | 17241 | ;;; Generated autoloads from progmodes/make-mode.el |
| 17246 | 17242 | ||
| 17247 | (autoload (quote makefile-mode) "make-mode" "\ | 17243 | (autoload (quote makefile-mode) "make-mode" "\ |
| @@ -17358,8 +17354,8 @@ An adapted `makefile-mode' that knows about imake. | |||
| 17358 | 17354 | ||
| 17359 | ;;;*** | 17355 | ;;;*** |
| 17360 | 17356 | ||
| 17361 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17851 | 17357 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17843 |
| 17362 | ;;;;;; 10838)) | 17358 | ;;;;;; 27861)) |
| 17363 | ;;; Generated autoloads from makesum.el | 17359 | ;;; Generated autoloads from makesum.el |
| 17364 | 17360 | ||
| 17365 | (autoload (quote make-command-summary) "makesum" "\ | 17361 | (autoload (quote make-command-summary) "makesum" "\ |
| @@ -17370,7 +17366,7 @@ Previous contents of that buffer are killed first. | |||
| 17370 | 17366 | ||
| 17371 | ;;;*** | 17367 | ;;;*** |
| 17372 | 17368 | ||
| 17373 | ;;;### (autoloads (man-follow man) "man" "man.el" (17851 10838)) | 17369 | ;;;### (autoloads (man-follow man) "man" "man.el" (17843 27861)) |
| 17374 | ;;; Generated autoloads from man.el | 17370 | ;;; Generated autoloads from man.el |
| 17375 | 17371 | ||
| 17376 | (defalias (quote manual-entry) (quote man)) | 17372 | (defalias (quote manual-entry) (quote man)) |
| @@ -17397,7 +17393,7 @@ Get a Un*x manual page of the item under point and put it in a buffer. | |||
| 17397 | 17393 | ||
| 17398 | ;;;*** | 17394 | ;;;*** |
| 17399 | 17395 | ||
| 17400 | ;;;### (autoloads (master-mode) "master" "master.el" (17851 10838)) | 17396 | ;;;### (autoloads (master-mode) "master" "master.el" (17843 27861)) |
| 17401 | ;;; Generated autoloads from master.el | 17397 | ;;; Generated autoloads from master.el |
| 17402 | 17398 | ||
| 17403 | (autoload (quote master-mode) "master" "\ | 17399 | (autoload (quote master-mode) "master" "\ |
| @@ -17419,8 +17415,8 @@ yourself the value of `master-of' by calling `master-show-slave'. | |||
| 17419 | 17415 | ||
| 17420 | ;;;*** | 17416 | ;;;*** |
| 17421 | 17417 | ||
| 17422 | ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17851 | 17418 | ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17843 |
| 17423 | ;;;;;; 10838)) | 17419 | ;;;;;; 27861)) |
| 17424 | ;;; Generated autoloads from menu-bar.el | 17420 | ;;; Generated autoloads from menu-bar.el |
| 17425 | 17421 | ||
| 17426 | (put (quote menu-bar-mode) (quote standard-value) (quote (t))) | 17422 | (put (quote menu-bar-mode) (quote standard-value) (quote (t))) |
| @@ -17455,7 +17451,7 @@ turn on menu bars; otherwise, turn off menu bars. | |||
| 17455 | ;;;;;; message-cite-function message-yank-prefix message-citation-line-function | 17451 | ;;;;;; message-cite-function message-yank-prefix message-citation-line-function |
| 17456 | ;;;;;; message-send-mail-function message-user-organization-file | 17452 | ;;;;;; message-send-mail-function message-user-organization-file |
| 17457 | ;;;;;; message-signature-separator message-from-style) "message" | 17453 | ;;;;;; message-signature-separator message-from-style) "message" |
| 17458 | ;;;;;; "gnus/message.el" (17851 10858)) | 17454 | ;;;;;; "gnus/message.el" (17843 27874)) |
| 17459 | ;;; Generated autoloads from gnus/message.el | 17455 | ;;; Generated autoloads from gnus/message.el |
| 17460 | 17456 | ||
| 17461 | (defvar message-from-style (quote default) "\ | 17457 | (defvar message-from-style (quote default) "\ |
| @@ -17709,7 +17705,7 @@ which specify the range to operate on. | |||
| 17709 | ;;;*** | 17705 | ;;;*** |
| 17710 | 17706 | ||
| 17711 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" | 17707 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" |
| 17712 | ;;;;;; (17851 10869)) | 17708 | ;;;;;; (17843 27882)) |
| 17713 | ;;; Generated autoloads from progmodes/meta-mode.el | 17709 | ;;; Generated autoloads from progmodes/meta-mode.el |
| 17714 | 17710 | ||
| 17715 | (autoload (quote metafont-mode) "meta-mode" "\ | 17711 | (autoload (quote metafont-mode) "meta-mode" "\ |
| @@ -17736,7 +17732,7 @@ Turning on MetaPost mode calls the value of the variable | |||
| 17736 | 17732 | ||
| 17737 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body | 17733 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body |
| 17738 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" | 17734 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" |
| 17739 | ;;;;;; (17851 10862)) | 17735 | ;;;;;; (17843 27878)) |
| 17740 | ;;; Generated autoloads from mail/metamail.el | 17736 | ;;; Generated autoloads from mail/metamail.el |
| 17741 | 17737 | ||
| 17742 | (autoload (quote metamail-interpret-header) "metamail" "\ | 17738 | (autoload (quote metamail-interpret-header) "metamail" "\ |
| @@ -17781,7 +17777,7 @@ redisplayed as output is inserted. | |||
| 17781 | 17777 | ||
| 17782 | ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose | 17778 | ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose |
| 17783 | ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" | 17779 | ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" |
| 17784 | ;;;;;; "mh-e/mh-comp.el" (17851 10863)) | 17780 | ;;;;;; "mh-e/mh-comp.el" (17843 27878)) |
| 17785 | ;;; Generated autoloads from mh-e/mh-comp.el | 17781 | ;;; Generated autoloads from mh-e/mh-comp.el |
| 17786 | 17782 | ||
| 17787 | (autoload (quote mh-smail) "mh-comp" "\ | 17783 | (autoload (quote mh-smail) "mh-comp" "\ |
| @@ -17868,7 +17864,7 @@ delete the draft message. | |||
| 17868 | 17864 | ||
| 17869 | ;;;*** | 17865 | ;;;*** |
| 17870 | 17866 | ||
| 17871 | ;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17851 10863)) | 17867 | ;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17843 27878)) |
| 17872 | ;;; Generated autoloads from mh-e/mh-e.el | 17868 | ;;; Generated autoloads from mh-e/mh-e.el |
| 17873 | 17869 | ||
| 17874 | (put (quote mh-progs) (quote risky-local-variable) t) | 17870 | (put (quote mh-progs) (quote risky-local-variable) t) |
| @@ -17885,7 +17881,7 @@ Display version information about MH-E and the MH mail handling system. | |||
| 17885 | ;;;*** | 17881 | ;;;*** |
| 17886 | 17882 | ||
| 17887 | ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" | 17883 | ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" |
| 17888 | ;;;;;; "mh-e/mh-folder.el" (17851 10863)) | 17884 | ;;;;;; "mh-e/mh-folder.el" (17843 27879)) |
| 17889 | ;;; Generated autoloads from mh-e/mh-folder.el | 17885 | ;;; Generated autoloads from mh-e/mh-folder.el |
| 17890 | 17886 | ||
| 17891 | (autoload (quote mh-rmail) "mh-folder" "\ | 17887 | (autoload (quote mh-rmail) "mh-folder" "\ |
| @@ -17967,7 +17963,7 @@ perform the operation on all messages in that region. | |||
| 17967 | ;;;*** | 17963 | ;;;*** |
| 17968 | 17964 | ||
| 17969 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" | 17965 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" |
| 17970 | ;;;;;; "midnight.el" (17851 10838)) | 17966 | ;;;;;; "midnight.el" (17843 27861)) |
| 17971 | ;;; Generated autoloads from midnight.el | 17967 | ;;; Generated autoloads from midnight.el |
| 17972 | 17968 | ||
| 17973 | (autoload (quote clean-buffer-list) "midnight" "\ | 17969 | (autoload (quote clean-buffer-list) "midnight" "\ |
| @@ -17994,7 +17990,7 @@ to its second argument TM. | |||
| 17994 | ;;;*** | 17990 | ;;;*** |
| 17995 | 17991 | ||
| 17996 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" | 17992 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" |
| 17997 | ;;;;;; "minibuf-eldef.el" (17851 10838)) | 17993 | ;;;;;; "minibuf-eldef.el" (17843 27861)) |
| 17998 | ;;; Generated autoloads from minibuf-eldef.el | 17994 | ;;; Generated autoloads from minibuf-eldef.el |
| 17999 | 17995 | ||
| 18000 | (defvar minibuffer-electric-default-mode nil "\ | 17996 | (defvar minibuffer-electric-default-mode nil "\ |
| @@ -18022,7 +18018,7 @@ Returns non-nil if the new state is enabled. | |||
| 18022 | ;;;*** | 18018 | ;;;*** |
| 18023 | 18019 | ||
| 18024 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" | 18020 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" |
| 18025 | ;;;;;; (17851 10869)) | 18021 | ;;;;;; (17843 27882)) |
| 18026 | ;;; Generated autoloads from progmodes/mixal-mode.el | 18022 | ;;; Generated autoloads from progmodes/mixal-mode.el |
| 18027 | 18023 | ||
| 18028 | (autoload (quote mixal-mode) "mixal-mode" "\ | 18024 | (autoload (quote mixal-mode) "mixal-mode" "\ |
| @@ -18037,7 +18033,7 @@ Major mode for the mixal asm language. | |||
| 18037 | 18033 | ||
| 18038 | ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion | 18034 | ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion |
| 18039 | ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" | 18035 | ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" |
| 18040 | ;;;;;; (17851 10861)) | 18036 | ;;;;;; (17843 27877)) |
| 18041 | ;;; Generated autoloads from language/mlm-util.el | 18037 | ;;; Generated autoloads from language/mlm-util.el |
| 18042 | 18038 | ||
| 18043 | (autoload (quote malayalam-compose-region) "mlm-util" "\ | 18039 | (autoload (quote malayalam-compose-region) "mlm-util" "\ |
| @@ -18060,7 +18056,7 @@ PATTERN regexp. | |||
| 18060 | ;;;*** | 18056 | ;;;*** |
| 18061 | 18057 | ||
| 18062 | ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) | 18058 | ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) |
| 18063 | ;;;;;; "mm-extern" "gnus/mm-extern.el" (17851 10858)) | 18059 | ;;;;;; "mm-extern" "gnus/mm-extern.el" (17843 27874)) |
| 18064 | ;;; Generated autoloads from gnus/mm-extern.el | 18060 | ;;; Generated autoloads from gnus/mm-extern.el |
| 18065 | 18061 | ||
| 18066 | (autoload (quote mm-extern-cache-contents) "mm-extern" "\ | 18062 | (autoload (quote mm-extern-cache-contents) "mm-extern" "\ |
| @@ -18079,7 +18075,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18079 | ;;;*** | 18075 | ;;;*** |
| 18080 | 18076 | ||
| 18081 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" | 18077 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" |
| 18082 | ;;;;;; (17851 10858)) | 18078 | ;;;;;; (17843 27874)) |
| 18083 | ;;; Generated autoloads from gnus/mm-partial.el | 18079 | ;;; Generated autoloads from gnus/mm-partial.el |
| 18084 | 18080 | ||
| 18085 | (autoload (quote mm-inline-partial) "mm-partial" "\ | 18081 | (autoload (quote mm-inline-partial) "mm-partial" "\ |
| @@ -18093,7 +18089,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18093 | ;;;*** | 18089 | ;;;*** |
| 18094 | 18090 | ||
| 18095 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) | 18091 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) |
| 18096 | ;;;;;; "mm-url" "gnus/mm-url.el" (17851 10858)) | 18092 | ;;;;;; "mm-url" "gnus/mm-url.el" (17843 27874)) |
| 18097 | ;;; Generated autoloads from gnus/mm-url.el | 18093 | ;;; Generated autoloads from gnus/mm-url.el |
| 18098 | 18094 | ||
| 18099 | (autoload (quote mm-url-insert-file-contents) "mm-url" "\ | 18095 | (autoload (quote mm-url-insert-file-contents) "mm-url" "\ |
| @@ -18110,7 +18106,7 @@ Insert file contents of URL using `mm-url-program'. | |||
| 18110 | ;;;*** | 18106 | ;;;*** |
| 18111 | 18107 | ||
| 18112 | ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" | 18108 | ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" |
| 18113 | ;;;;;; "gnus/mm-uu.el" (17851 10858)) | 18109 | ;;;;;; "gnus/mm-uu.el" (17843 27874)) |
| 18114 | ;;; Generated autoloads from gnus/mm-uu.el | 18110 | ;;; Generated autoloads from gnus/mm-uu.el |
| 18115 | 18111 | ||
| 18116 | (autoload (quote mm-uu-dissect) "mm-uu" "\ | 18112 | (autoload (quote mm-uu-dissect) "mm-uu" "\ |
| @@ -18130,7 +18126,7 @@ Assume text has been decoded if DECODED is non-nil. | |||
| 18130 | ;;;*** | 18126 | ;;;*** |
| 18131 | 18127 | ||
| 18132 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" | 18128 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" |
| 18133 | ;;;;;; (17851 10858)) | 18129 | ;;;;;; (17843 27875)) |
| 18134 | ;;; Generated autoloads from gnus/mml1991.el | 18130 | ;;; Generated autoloads from gnus/mml1991.el |
| 18135 | 18131 | ||
| 18136 | (autoload (quote mml1991-encrypt) "mml1991" "\ | 18132 | (autoload (quote mml1991-encrypt) "mml1991" "\ |
| @@ -18147,7 +18143,7 @@ Not documented | |||
| 18147 | 18143 | ||
| 18148 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt | 18144 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt |
| 18149 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) | 18145 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) |
| 18150 | ;;;;;; "mml2015" "gnus/mml2015.el" (17851 10858)) | 18146 | ;;;;;; "mml2015" "gnus/mml2015.el" (17843 27875)) |
| 18151 | ;;; Generated autoloads from gnus/mml2015.el | 18147 | ;;; Generated autoloads from gnus/mml2015.el |
| 18152 | 18148 | ||
| 18153 | (autoload (quote mml2015-decrypt) "mml2015" "\ | 18149 | (autoload (quote mml2015-decrypt) "mml2015" "\ |
| @@ -18220,7 +18216,7 @@ followed by the first character of the construct. | |||
| 18220 | ;;;*** | 18216 | ;;;*** |
| 18221 | 18217 | ||
| 18222 | ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" | 18218 | ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" |
| 18223 | ;;;;;; (17851 10866)) | 18219 | ;;;;;; (17843 27880)) |
| 18224 | ;;; Generated autoloads from play/morse.el | 18220 | ;;; Generated autoloads from play/morse.el |
| 18225 | 18221 | ||
| 18226 | (autoload (quote morse-region) "morse" "\ | 18222 | (autoload (quote morse-region) "morse" "\ |
| @@ -18235,8 +18231,8 @@ Convert morse coded text in region to ordinary ASCII text. | |||
| 18235 | 18231 | ||
| 18236 | ;;;*** | 18232 | ;;;*** |
| 18237 | 18233 | ||
| 18238 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17851 | 18234 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17843 |
| 18239 | ;;;;;; 10838)) | 18235 | ;;;;;; 27861)) |
| 18240 | ;;; Generated autoloads from mouse-sel.el | 18236 | ;;; Generated autoloads from mouse-sel.el |
| 18241 | 18237 | ||
| 18242 | (defvar mouse-sel-mode nil "\ | 18238 | (defvar mouse-sel-mode nil "\ |
| @@ -18298,7 +18294,7 @@ Multiplication puzzle with GNU Emacs. | |||
| 18298 | 18294 | ||
| 18299 | ;;;*** | 18295 | ;;;*** |
| 18300 | 18296 | ||
| 18301 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (17851 10838)) | 18297 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (17843 27861)) |
| 18302 | ;;; Generated autoloads from msb.el | 18298 | ;;; Generated autoloads from msb.el |
| 18303 | 18299 | ||
| 18304 | (defvar msb-mode nil "\ | 18300 | (defvar msb-mode nil "\ |
| @@ -18325,7 +18321,7 @@ different buffer menu using the function `msb'. | |||
| 18325 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly | 18321 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly |
| 18326 | ;;;;;; describe-coding-system describe-character-set list-charset-chars | 18322 | ;;;;;; describe-coding-system describe-character-set list-charset-chars |
| 18327 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" | 18323 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" |
| 18328 | ;;;;;; (17851 10860)) | 18324 | ;;;;;; (17843 27877)) |
| 18329 | ;;; Generated autoloads from international/mule-diag.el | 18325 | ;;; Generated autoloads from international/mule-diag.el |
| 18330 | 18326 | ||
| 18331 | (defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\ | 18327 | (defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\ |
| @@ -18499,7 +18495,7 @@ system which uses fontsets). | |||
| 18499 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion | 18495 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion |
| 18500 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist | 18496 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist |
| 18501 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) | 18497 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) |
| 18502 | ;;;;;; "mule-util" "international/mule-util.el" (17851 10860)) | 18498 | ;;;;;; "mule-util" "international/mule-util.el" (17843 27877)) |
| 18503 | ;;; Generated autoloads from international/mule-util.el | 18499 | ;;; Generated autoloads from international/mule-util.el |
| 18504 | 18500 | ||
| 18505 | (autoload (quote string-to-sequence) "mule-util" "\ | 18501 | (autoload (quote string-to-sequence) "mule-util" "\ |
| @@ -18628,7 +18624,7 @@ basis, this may not be accurate. | |||
| 18628 | ;;;*** | 18624 | ;;;*** |
| 18629 | 18625 | ||
| 18630 | ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" | 18626 | ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" |
| 18631 | ;;;;;; (17851 10838)) | 18627 | ;;;;;; (17843 27861)) |
| 18632 | ;;; Generated autoloads from mwheel.el | 18628 | ;;; Generated autoloads from mwheel.el |
| 18633 | 18629 | ||
| 18634 | (defvar mouse-wheel-mode nil "\ | 18630 | (defvar mouse-wheel-mode nil "\ |
| @@ -18657,7 +18653,7 @@ Enable mouse wheel support. | |||
| 18657 | ;;;### (autoloads (network-connection network-connection-to-service | 18653 | ;;;### (autoloads (network-connection network-connection-to-service |
| 18658 | ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host | 18654 | ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host |
| 18659 | ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) | 18655 | ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) |
| 18660 | ;;;;;; "net-utils" "net/net-utils.el" (17851 10863)) | 18656 | ;;;;;; "net-utils" "net/net-utils.el" (17892 21082)) |
| 18661 | ;;; Generated autoloads from net/net-utils.el | 18657 | ;;; Generated autoloads from net/net-utils.el |
| 18662 | 18658 | ||
| 18663 | (autoload (quote traceroute) "net-utils" "\ | 18659 | (autoload (quote traceroute) "net-utils" "\ |
| @@ -18753,7 +18749,7 @@ Open a network connection to HOST on PORT. | |||
| 18753 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent | 18749 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent |
| 18754 | ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line | 18750 | ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line |
| 18755 | ;;;;;; comment-padding comment-style comment-column) "newcomment" | 18751 | ;;;;;; comment-padding comment-style comment-column) "newcomment" |
| 18756 | ;;;;;; "newcomment.el" (17851 10839)) | 18752 | ;;;;;; "newcomment.el" (17843 27861)) |
| 18757 | ;;; Generated autoloads from newcomment.el | 18753 | ;;; Generated autoloads from newcomment.el |
| 18758 | 18754 | ||
| 18759 | (defalias (quote indent-for-comment) (quote comment-indent)) | 18755 | (defalias (quote indent-for-comment) (quote comment-indent)) |
| @@ -18991,7 +18987,7 @@ Switch to newsticker buffer. You may want to bind this to a key. | |||
| 18991 | ;;;*** | 18987 | ;;;*** |
| 18992 | 18988 | ||
| 18993 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" | 18989 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" |
| 18994 | ;;;;;; (17851 10858)) | 18990 | ;;;;;; (17843 27875)) |
| 18995 | ;;; Generated autoloads from gnus/nndiary.el | 18991 | ;;; Generated autoloads from gnus/nndiary.el |
| 18996 | 18992 | ||
| 18997 | (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ | 18993 | (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ |
| @@ -19001,8 +18997,8 @@ Generate NOV databases in all nndiary directories. | |||
| 19001 | 18997 | ||
| 19002 | ;;;*** | 18998 | ;;;*** |
| 19003 | 18999 | ||
| 19004 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17851 | 19000 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17843 |
| 19005 | ;;;;;; 10859)) | 19001 | ;;;;;; 27875)) |
| 19006 | ;;; Generated autoloads from gnus/nndoc.el | 19002 | ;;; Generated autoloads from gnus/nndoc.el |
| 19007 | 19003 | ||
| 19008 | (autoload (quote nndoc-add-type) "nndoc" "\ | 19004 | (autoload (quote nndoc-add-type) "nndoc" "\ |
| @@ -19017,7 +19013,7 @@ symbol in the alist. | |||
| 19017 | ;;;*** | 19013 | ;;;*** |
| 19018 | 19014 | ||
| 19019 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" | 19015 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" |
| 19020 | ;;;;;; (17851 10859)) | 19016 | ;;;;;; (17843 27875)) |
| 19021 | ;;; Generated autoloads from gnus/nnfolder.el | 19017 | ;;; Generated autoloads from gnus/nnfolder.el |
| 19022 | 19018 | ||
| 19023 | (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ | 19019 | (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ |
| @@ -19029,7 +19025,7 @@ This command does not work if you use short group names. | |||
| 19029 | ;;;*** | 19025 | ;;;*** |
| 19030 | 19026 | ||
| 19031 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" | 19027 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" |
| 19032 | ;;;;;; (17851 10859)) | 19028 | ;;;;;; (17843 27875)) |
| 19033 | ;;; Generated autoloads from gnus/nnkiboze.el | 19029 | ;;; Generated autoloads from gnus/nnkiboze.el |
| 19034 | 19030 | ||
| 19035 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ | 19031 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ |
| @@ -19041,7 +19037,7 @@ Finds out what articles are to be part of the nnkiboze groups. | |||
| 19041 | ;;;*** | 19037 | ;;;*** |
| 19042 | 19038 | ||
| 19043 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" | 19039 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" |
| 19044 | ;;;;;; (17851 10859)) | 19040 | ;;;;;; (17843 27875)) |
| 19045 | ;;; Generated autoloads from gnus/nnml.el | 19041 | ;;; Generated autoloads from gnus/nnml.el |
| 19046 | 19042 | ||
| 19047 | (autoload (quote nnml-generate-nov-databases) "nnml" "\ | 19043 | (autoload (quote nnml-generate-nov-databases) "nnml" "\ |
| @@ -19052,7 +19048,7 @@ Generate NOV databases in all nnml directories. | |||
| 19052 | ;;;*** | 19048 | ;;;*** |
| 19053 | 19049 | ||
| 19054 | ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) | 19050 | ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) |
| 19055 | ;;;;;; "nnsoup" "gnus/nnsoup.el" (17851 10859)) | 19051 | ;;;;;; "nnsoup" "gnus/nnsoup.el" (17843 27875)) |
| 19056 | ;;; Generated autoloads from gnus/nnsoup.el | 19052 | ;;; Generated autoloads from gnus/nnsoup.el |
| 19057 | 19053 | ||
| 19058 | (autoload (quote nnsoup-pack-replies) "nnsoup" "\ | 19054 | (autoload (quote nnsoup-pack-replies) "nnsoup" "\ |
| @@ -19073,7 +19069,7 @@ Revert posting and mailing methods to the standard Emacs methods. | |||
| 19073 | ;;;*** | 19069 | ;;;*** |
| 19074 | 19070 | ||
| 19075 | ;;;### (autoloads (disable-command enable-command disabled-command-function) | 19071 | ;;;### (autoloads (disable-command enable-command disabled-command-function) |
| 19076 | ;;;;;; "novice" "novice.el" (17851 10839)) | 19072 | ;;;;;; "novice" "novice.el" (17843 27861)) |
| 19077 | ;;; Generated autoloads from novice.el | 19073 | ;;; Generated autoloads from novice.el |
| 19078 | 19074 | ||
| 19079 | (defvar disabled-command-function (quote disabled-command-function) "\ | 19075 | (defvar disabled-command-function (quote disabled-command-function) "\ |
| @@ -19106,7 +19102,7 @@ to future sessions. | |||
| 19106 | ;;;*** | 19102 | ;;;*** |
| 19107 | 19103 | ||
| 19108 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" | 19104 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" |
| 19109 | ;;;;;; (17851 10872)) | 19105 | ;;;;;; (17843 27885)) |
| 19110 | ;;; Generated autoloads from textmodes/nroff-mode.el | 19106 | ;;; Generated autoloads from textmodes/nroff-mode.el |
| 19111 | 19107 | ||
| 19112 | (autoload (quote nroff-mode) "nroff-mode" "\ | 19108 | (autoload (quote nroff-mode) "nroff-mode" "\ |
| @@ -19121,7 +19117,7 @@ closing requests for requests that are used in matched pairs. | |||
| 19121 | ;;;*** | 19117 | ;;;*** |
| 19122 | 19118 | ||
| 19123 | ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" | 19119 | ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" |
| 19124 | ;;;;;; (17851 10869)) | 19120 | ;;;;;; (17843 27882)) |
| 19125 | ;;; Generated autoloads from progmodes/octave-hlp.el | 19121 | ;;; Generated autoloads from progmodes/octave-hlp.el |
| 19126 | 19122 | ||
| 19127 | (autoload (quote octave-help) "octave-hlp" "\ | 19123 | (autoload (quote octave-help) "octave-hlp" "\ |
| @@ -19135,7 +19131,7 @@ If KEY is not a string, prompt for it with completion. | |||
| 19135 | ;;;*** | 19131 | ;;;*** |
| 19136 | 19132 | ||
| 19137 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" | 19133 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" |
| 19138 | ;;;;;; (17851 10869)) | 19134 | ;;;;;; (17843 27883)) |
| 19139 | ;;; Generated autoloads from progmodes/octave-inf.el | 19135 | ;;; Generated autoloads from progmodes/octave-inf.el |
| 19140 | 19136 | ||
| 19141 | (autoload (quote inferior-octave) "octave-inf" "\ | 19137 | (autoload (quote inferior-octave) "octave-inf" "\ |
| @@ -19158,7 +19154,7 @@ startup file, `~/.emacs-octave'. | |||
| 19158 | ;;;*** | 19154 | ;;;*** |
| 19159 | 19155 | ||
| 19160 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" | 19156 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" |
| 19161 | ;;;;;; (17851 10869)) | 19157 | ;;;;;; (17843 27883)) |
| 19162 | ;;; Generated autoloads from progmodes/octave-mod.el | 19158 | ;;; Generated autoloads from progmodes/octave-mod.el |
| 19163 | 19159 | ||
| 19164 | (autoload (quote octave-mode) "octave-mod" "\ | 19160 | (autoload (quote octave-mode) "octave-mod" "\ |
| @@ -19257,12 +19253,12 @@ including a reproducible test case and send the message. | |||
| 19257 | ;;;*** | 19253 | ;;;*** |
| 19258 | 19254 | ||
| 19259 | ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files | 19255 | ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files |
| 19260 | ;;;;;; org-export-icalendar-this-file orgtbl-mode turn-on-orgtbl | 19256 | ;;;;;; org-export-icalendar-this-file org-diary org-tags-view org-todo-list |
| 19261 | ;;;;;; org-remember-handler org-remember-apply-template org-remember-annotation | 19257 | ;;;;;; org-agenda-list org-cycle-agenda-files org-batch-agenda org-agenda |
| 19262 | ;;;;;; org-store-link org-tags-view org-diary org-cycle-agenda-files | 19258 | ;;;;;; org-remember-handler org-remember org-remember-apply-template |
| 19263 | ;;;;;; org-todo-list org-agenda-list org-batch-agenda org-agenda | 19259 | ;;;;;; org-remember-annotation org-store-link orgtbl-mode turn-on-orgtbl |
| 19264 | ;;;;;; org-global-cycle org-cycle org-mode) "org" "textmodes/org.el" | 19260 | ;;;;;; org-global-cycle org-cycle org-mode) "org" "textmodes/org.el" |
| 19265 | ;;;;;; (17871 15754)) | 19261 | ;;;;;; (17894 62281)) |
| 19266 | ;;; Generated autoloads from textmodes/org.el | 19262 | ;;; Generated autoloads from textmodes/org.el |
| 19267 | 19263 | ||
| 19268 | (autoload (quote org-mode) "org" "\ | 19264 | (autoload (quote org-mode) "org" "\ |
| @@ -19321,6 +19317,84 @@ Cycle the global visibility. For details see `org-cycle'. | |||
| 19321 | 19317 | ||
| 19322 | \(fn &optional ARG)" t nil) | 19318 | \(fn &optional ARG)" t nil) |
| 19323 | 19319 | ||
| 19320 | (autoload (quote turn-on-orgtbl) "org" "\ | ||
| 19321 | Unconditionally turn on `orgtbl-mode'. | ||
| 19322 | |||
| 19323 | \(fn)" nil nil) | ||
| 19324 | |||
| 19325 | (autoload (quote orgtbl-mode) "org" "\ | ||
| 19326 | The `org-mode' table editor as a minor mode for use in other modes. | ||
| 19327 | |||
| 19328 | \(fn &optional ARG)" t nil) | ||
| 19329 | |||
| 19330 | (autoload (quote org-store-link) "org" "\ | ||
| 19331 | \\<org-mode-map>Store an org-link to the current location. | ||
| 19332 | This link can later be inserted into an org-buffer with | ||
| 19333 | \\[org-insert-link]. | ||
| 19334 | For some link types, a prefix arg is interpreted: | ||
| 19335 | For links to usenet articles, arg negates `org-usenet-links-prefer-google'. | ||
| 19336 | For file links, arg negates `org-context-in-file-links'. | ||
| 19337 | |||
| 19338 | \(fn ARG)" t nil) | ||
| 19339 | |||
| 19340 | (autoload (quote org-remember-annotation) "org" "\ | ||
| 19341 | Return a link to the current location as an annotation for remember.el. | ||
| 19342 | If you are using Org-mode files as target for data storage with | ||
| 19343 | remember.el, then the annotations should include a link compatible with the | ||
| 19344 | conventions in Org-mode. This function returns such a link. | ||
| 19345 | |||
| 19346 | \(fn)" nil nil) | ||
| 19347 | |||
| 19348 | (autoload (quote org-remember-apply-template) "org" "\ | ||
| 19349 | Initialize *remember* buffer with template, invoke `org-mode'. | ||
| 19350 | This function should be placed into `remember-mode-hook' and in fact requires | ||
| 19351 | to be run from that hook to fucntion properly. | ||
| 19352 | |||
| 19353 | \(fn &optional USE-CHAR SKIP-INTERACTIVE)" nil nil) | ||
| 19354 | |||
| 19355 | (autoload (quote org-remember) "org" "\ | ||
| 19356 | Call `remember'. If this is already a remember buffer, re-apply template. | ||
| 19357 | If there is an active region, make sure remember uses it as initial content | ||
| 19358 | of the remember buffer. | ||
| 19359 | |||
| 19360 | \(fn)" t nil) | ||
| 19361 | |||
| 19362 | (autoload (quote org-remember-handler) "org" "\ | ||
| 19363 | Store stuff from remember.el into an org file. | ||
| 19364 | First prompts for an org file. If the user just presses return, the value | ||
| 19365 | of `org-default-notes-file' is used. | ||
| 19366 | Then the command offers the headings tree of the selected file in order to | ||
| 19367 | file the text at a specific location. | ||
| 19368 | You can either immediately press RET to get the note appended to the | ||
| 19369 | file, or you can use vertical cursor motion and visibility cycling (TAB) to | ||
| 19370 | find a better place. Then press RET or <left> or <right> in insert the note. | ||
| 19371 | |||
| 19372 | Key Cursor position Note gets inserted | ||
| 19373 | ----------------------------------------------------------------------------- | ||
| 19374 | RET buffer-start as level 2 heading at end of file | ||
| 19375 | RET on headline as sublevel of the heading at cursor | ||
| 19376 | RET no heading at cursor position, level taken from context. | ||
| 19377 | Or use prefix arg to specify level manually. | ||
| 19378 | <left> on headline as same level, before current heading | ||
| 19379 | <right> on headline as same level, after current heading | ||
| 19380 | |||
| 19381 | So the fastest way to store the note is to press RET RET to append it to | ||
| 19382 | the default file. This way your current train of thought is not | ||
| 19383 | interrupted, in accordance with the principles of remember.el. But with | ||
| 19384 | little extra effort, you can push it directly to the correct location. | ||
| 19385 | |||
| 19386 | Before being stored away, the function ensures that the text has a | ||
| 19387 | headline, i.e. a first line that starts with a \"*\". If not, a headline | ||
| 19388 | is constructed from the current date and some additional data. | ||
| 19389 | |||
| 19390 | If the variable `org-adapt-indentation' is non-nil, the entire text is | ||
| 19391 | also indented so that it starts in the same column as the headline | ||
| 19392 | \(i.e. after the stars). | ||
| 19393 | |||
| 19394 | See also the variable `org-reverse-note-order'. | ||
| 19395 | |||
| 19396 | \(fn)" nil nil) | ||
| 19397 | |||
| 19324 | (autoload (quote org-agenda) "org" "\ | 19398 | (autoload (quote org-agenda) "org" "\ |
| 19325 | Dispatch agenda commands to collect entries to the agenda buffer. | 19399 | Dispatch agenda commands to collect entries to the agenda buffer. |
| 19326 | Prompts for a character to select a command. Any prefix arg will be passed | 19400 | Prompts for a character to select a command. Any prefix arg will be passed |
| @@ -19353,6 +19427,13 @@ before running the agenda command. | |||
| 19353 | 19427 | ||
| 19354 | \(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) | 19428 | \(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) |
| 19355 | 19429 | ||
| 19430 | (autoload (quote org-cycle-agenda-files) "org" "\ | ||
| 19431 | Cycle through the files in `org-agenda-files'. | ||
| 19432 | If the current buffer visits an agenda file, find the next one in the list. | ||
| 19433 | If the current buffer does not, find the first agenda file. | ||
| 19434 | |||
| 19435 | \(fn)" t nil) | ||
| 19436 | |||
| 19356 | (autoload (quote org-agenda-list) "org" "\ | 19437 | (autoload (quote org-agenda-list) "org" "\ |
| 19357 | Produce a weekly view from all files in variable `org-agenda-files'. | 19438 | Produce a weekly view from all files in variable `org-agenda-files'. |
| 19358 | The view will be for the current week, but from the overview buffer you | 19439 | The view will be for the current week, but from the overview buffer you |
| @@ -19377,12 +19458,11 @@ for a keyword. A numeric prefix directly selects the Nth keyword in | |||
| 19377 | 19458 | ||
| 19378 | \(fn ARG)" t nil) | 19459 | \(fn ARG)" t nil) |
| 19379 | 19460 | ||
| 19380 | (autoload (quote org-cycle-agenda-files) "org" "\ | 19461 | (autoload (quote org-tags-view) "org" "\ |
| 19381 | Cycle through the files in `org-agenda-files'. | 19462 | Show all headlines for all `org-agenda-files' matching a TAGS criterion. |
| 19382 | If the current buffer visits an agenda file, find the next one in the list. | 19463 | The prefix arg TODO-ONLY limits the search to TODO entries. |
| 19383 | If the current buffer does not, find the first agenda file. | ||
| 19384 | 19464 | ||
| 19385 | \(fn)" t nil) | 19465 | \(fn &optional TODO-ONLY MATCH)" t nil) |
| 19386 | 19466 | ||
| 19387 | (autoload (quote org-diary) "org" "\ | 19467 | (autoload (quote org-diary) "org" "\ |
| 19388 | Return diary information from org-files. | 19468 | Return diary information from org-files. |
| @@ -19430,83 +19510,6 @@ function from a program - use `org-agenda-get-day-entries' instead. | |||
| 19430 | 19510 | ||
| 19431 | \(fn &rest ARGS)" nil nil) | 19511 | \(fn &rest ARGS)" nil nil) |
| 19432 | 19512 | ||
| 19433 | (autoload (quote org-tags-view) "org" "\ | ||
| 19434 | Show all headlines for all `org-agenda-files' matching a TAGS criterion. | ||
| 19435 | The prefix arg TODO-ONLY limits the search to TODO entries. | ||
| 19436 | |||
| 19437 | \(fn &optional TODO-ONLY MATCH)" t nil) | ||
| 19438 | |||
| 19439 | (autoload (quote org-store-link) "org" "\ | ||
| 19440 | \\<org-mode-map>Store an org-link to the current location. | ||
| 19441 | This link can later be inserted into an org-buffer with | ||
| 19442 | \\[org-insert-link]. | ||
| 19443 | For some link types, a prefix arg is interpreted: | ||
| 19444 | For links to usenet articles, arg negates `org-usenet-links-prefer-google'. | ||
| 19445 | For file links, arg negates `org-context-in-file-links'. | ||
| 19446 | |||
| 19447 | \(fn ARG)" t nil) | ||
| 19448 | |||
| 19449 | (autoload (quote org-remember-annotation) "org" "\ | ||
| 19450 | Return a link to the current location as an annotation for remember.el. | ||
| 19451 | If you are using Org-mode files as target for data storage with | ||
| 19452 | remember.el, then the annotations should include a link compatible with the | ||
| 19453 | conventions in Org-mode. This function returns such a link. | ||
| 19454 | |||
| 19455 | \(fn)" nil nil) | ||
| 19456 | |||
| 19457 | (autoload (quote org-remember-apply-template) "org" "\ | ||
| 19458 | Initialize *remember* buffer with template, invoke `org-mode'. | ||
| 19459 | This function should be placed into `remember-mode-hook' and in fact requires | ||
| 19460 | to be run from that hook to fucntion properly. | ||
| 19461 | |||
| 19462 | \(fn)" nil nil) | ||
| 19463 | |||
| 19464 | (autoload (quote org-remember-handler) "org" "\ | ||
| 19465 | Store stuff from remember.el into an org file. | ||
| 19466 | First prompts for an org file. If the user just presses return, the value | ||
| 19467 | of `org-default-notes-file' is used. | ||
| 19468 | Then the command offers the headings tree of the selected file in order to | ||
| 19469 | file the text at a specific location. | ||
| 19470 | You can either immediately press RET to get the note appended to the | ||
| 19471 | file, or you can use vertical cursor motion and visibility cycling (TAB) to | ||
| 19472 | find a better place. Then press RET or <left> or <right> in insert the note. | ||
| 19473 | |||
| 19474 | Key Cursor position Note gets inserted | ||
| 19475 | ----------------------------------------------------------------------------- | ||
| 19476 | RET buffer-start as level 2 heading at end of file | ||
| 19477 | RET on headline as sublevel of the heading at cursor | ||
| 19478 | RET no heading at cursor position, level taken from context. | ||
| 19479 | Or use prefix arg to specify level manually. | ||
| 19480 | <left> on headline as same level, before current heading | ||
| 19481 | <right> on headline as same level, after current heading | ||
| 19482 | |||
| 19483 | So the fastest way to store the note is to press RET RET to append it to | ||
| 19484 | the default file. This way your current train of thought is not | ||
| 19485 | interrupted, in accordance with the principles of remember.el. But with | ||
| 19486 | little extra effort, you can push it directly to the correct location. | ||
| 19487 | |||
| 19488 | Before being stored away, the function ensures that the text has a | ||
| 19489 | headline, i.e. a first line that starts with a \"*\". If not, a headline | ||
| 19490 | is constructed from the current date and some additional data. | ||
| 19491 | |||
| 19492 | If the variable `org-adapt-indentation' is non-nil, the entire text is | ||
| 19493 | also indented so that it starts in the same column as the headline | ||
| 19494 | \(i.e. after the stars). | ||
| 19495 | |||
| 19496 | See also the variable `org-reverse-note-order'. | ||
| 19497 | |||
| 19498 | \(fn)" nil nil) | ||
| 19499 | |||
| 19500 | (autoload (quote turn-on-orgtbl) "org" "\ | ||
| 19501 | Unconditionally turn on `orgtbl-mode'. | ||
| 19502 | |||
| 19503 | \(fn)" nil nil) | ||
| 19504 | |||
| 19505 | (autoload (quote orgtbl-mode) "org" "\ | ||
| 19506 | The `org-mode' table editor as a minor mode for use in other modes. | ||
| 19507 | |||
| 19508 | \(fn &optional ARG)" t nil) | ||
| 19509 | |||
| 19510 | (autoload (quote org-export-icalendar-this-file) "org" "\ | 19513 | (autoload (quote org-export-icalendar-this-file) "org" "\ |
| 19511 | Export current file as an iCalendar file. | 19514 | Export current file as an iCalendar file. |
| 19512 | The iCalendar file will be located in the same directory as the Org-mode | 19515 | The iCalendar file will be located in the same directory as the Org-mode |
| @@ -19586,8 +19589,8 @@ See the command `outline-mode' for more information on this mode. | |||
| 19586 | 19589 | ||
| 19587 | ;;;*** | 19590 | ;;;*** |
| 19588 | 19591 | ||
| 19589 | ;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (17851 | 19592 | ;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (17843 |
| 19590 | ;;;;;; 10872)) | 19593 | ;;;;;; 27886)) |
| 19591 | ;;; Generated autoloads from textmodes/paragraphs.el | 19594 | ;;; Generated autoloads from textmodes/paragraphs.el |
| 19592 | (put 'paragraph-start 'safe-local-variable 'stringp) | 19595 | (put 'paragraph-start 'safe-local-variable 'stringp) |
| 19593 | (put 'paragraph-separate 'safe-local-variable 'stringp) | 19596 | (put 'paragraph-separate 'safe-local-variable 'stringp) |
| @@ -19601,7 +19604,7 @@ See the command `outline-mode' for more information on this mode. | |||
| 19601 | 19604 | ||
| 19602 | ;;;*** | 19605 | ;;;*** |
| 19603 | 19606 | ||
| 19604 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17851 10839)) | 19607 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17843 27861)) |
| 19605 | ;;; Generated autoloads from paren.el | 19608 | ;;; Generated autoloads from paren.el |
| 19606 | 19609 | ||
| 19607 | (defvar show-paren-mode nil "\ | 19610 | (defvar show-paren-mode nil "\ |
| @@ -19626,7 +19629,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. | |||
| 19626 | ;;;*** | 19629 | ;;;*** |
| 19627 | 19630 | ||
| 19628 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" | 19631 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" |
| 19629 | ;;;;;; (17851 10852)) | 19632 | ;;;;;; (17843 27868)) |
| 19630 | ;;; Generated autoloads from calendar/parse-time.el | 19633 | ;;; Generated autoloads from calendar/parse-time.el |
| 19631 | 19634 | ||
| 19632 | (autoload (quote parse-time-string) "parse-time" "\ | 19635 | (autoload (quote parse-time-string) "parse-time" "\ |
| @@ -19638,8 +19641,8 @@ unknown are returned as nil. | |||
| 19638 | 19641 | ||
| 19639 | ;;;*** | 19642 | ;;;*** |
| 19640 | 19643 | ||
| 19641 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17851 | 19644 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17843 |
| 19642 | ;;;;;; 10869)) | 19645 | ;;;;;; 27883)) |
| 19643 | ;;; Generated autoloads from progmodes/pascal.el | 19646 | ;;; Generated autoloads from progmodes/pascal.el |
| 19644 | 19647 | ||
| 19645 | (autoload (quote pascal-mode) "pascal" "\ | 19648 | (autoload (quote pascal-mode) "pascal" "\ |
| @@ -19692,7 +19695,7 @@ no args, if that value is non-nil. | |||
| 19692 | ;;;*** | 19695 | ;;;*** |
| 19693 | 19696 | ||
| 19694 | ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" | 19697 | ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" |
| 19695 | ;;;;;; (17851 10853)) | 19698 | ;;;;;; (17843 27869)) |
| 19696 | ;;; Generated autoloads from emulation/pc-mode.el | 19699 | ;;; Generated autoloads from emulation/pc-mode.el |
| 19697 | 19700 | ||
| 19698 | (autoload (quote pc-bindings-mode) "pc-mode" "\ | 19701 | (autoload (quote pc-bindings-mode) "pc-mode" "\ |
| @@ -19710,7 +19713,7 @@ C-Escape does list-buffers. | |||
| 19710 | ;;;*** | 19713 | ;;;*** |
| 19711 | 19714 | ||
| 19712 | ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" | 19715 | ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" |
| 19713 | ;;;;;; "emulation/pc-select.el" (17851 10853)) | 19716 | ;;;;;; "emulation/pc-select.el" (17843 27869)) |
| 19714 | ;;; Generated autoloads from emulation/pc-select.el | 19717 | ;;; Generated autoloads from emulation/pc-select.el |
| 19715 | 19718 | ||
| 19716 | (defvar pc-selection-mode nil "\ | 19719 | (defvar pc-selection-mode nil "\ |
| @@ -19786,8 +19789,8 @@ you must modify it using \\[customize] or \\[pc-selection-mode].") | |||
| 19786 | 19789 | ||
| 19787 | ;;;*** | 19790 | ;;;*** |
| 19788 | 19791 | ||
| 19789 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17851 | 19792 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17843 |
| 19790 | ;;;;;; 10839)) | 19793 | ;;;;;; 27861)) |
| 19791 | ;;; Generated autoloads from pcmpl-cvs.el | 19794 | ;;; Generated autoloads from pcmpl-cvs.el |
| 19792 | 19795 | ||
| 19793 | (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ | 19796 | (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ |
| @@ -19798,7 +19801,7 @@ Completion rules for the `cvs' command. | |||
| 19798 | ;;;*** | 19801 | ;;;*** |
| 19799 | 19802 | ||
| 19800 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) | 19803 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) |
| 19801 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17851 10839)) | 19804 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17843 27861)) |
| 19802 | ;;; Generated autoloads from pcmpl-gnu.el | 19805 | ;;; Generated autoloads from pcmpl-gnu.el |
| 19803 | 19806 | ||
| 19804 | (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ | 19807 | (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ |
| @@ -19826,7 +19829,7 @@ Completion for the GNU tar utility. | |||
| 19826 | ;;;*** | 19829 | ;;;*** |
| 19827 | 19830 | ||
| 19828 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) | 19831 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) |
| 19829 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17851 10839)) | 19832 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17843 27861)) |
| 19830 | ;;; Generated autoloads from pcmpl-linux.el | 19833 | ;;; Generated autoloads from pcmpl-linux.el |
| 19831 | 19834 | ||
| 19832 | (autoload (quote pcomplete/kill) "pcmpl-linux" "\ | 19835 | (autoload (quote pcomplete/kill) "pcmpl-linux" "\ |
| @@ -19846,8 +19849,8 @@ Completion for GNU/Linux `mount'. | |||
| 19846 | 19849 | ||
| 19847 | ;;;*** | 19850 | ;;;*** |
| 19848 | 19851 | ||
| 19849 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17851 | 19852 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17843 |
| 19850 | ;;;;;; 10839)) | 19853 | ;;;;;; 27861)) |
| 19851 | ;;; Generated autoloads from pcmpl-rpm.el | 19854 | ;;; Generated autoloads from pcmpl-rpm.el |
| 19852 | 19855 | ||
| 19853 | (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ | 19856 | (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ |
| @@ -19863,7 +19866,7 @@ You can use \\[eshell-report-bug] to do so. | |||
| 19863 | 19866 | ||
| 19864 | ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which | 19867 | ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which |
| 19865 | ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) | 19868 | ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) |
| 19866 | ;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17851 10839)) | 19869 | ;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17843 27861)) |
| 19867 | ;;; Generated autoloads from pcmpl-unix.el | 19870 | ;;; Generated autoloads from pcmpl-unix.el |
| 19868 | 19871 | ||
| 19869 | (autoload (quote pcomplete/cd) "pcmpl-unix" "\ | 19872 | (autoload (quote pcomplete/cd) "pcmpl-unix" "\ |
| @@ -19909,8 +19912,8 @@ Completion for the `chgrp' command. | |||
| 19909 | 19912 | ||
| 19910 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list | 19913 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list |
| 19911 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete | 19914 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete |
| 19912 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17851 | 19915 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17843 |
| 19913 | ;;;;;; 10839)) | 19916 | ;;;;;; 27862)) |
| 19914 | ;;; Generated autoloads from pcomplete.el | 19917 | ;;; Generated autoloads from pcomplete.el |
| 19915 | 19918 | ||
| 19916 | (autoload (quote pcomplete) "pcomplete" "\ | 19919 | (autoload (quote pcomplete) "pcomplete" "\ |
| @@ -19969,7 +19972,7 @@ Setup shell-mode to use pcomplete. | |||
| 19969 | 19972 | ||
| 19970 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status | 19973 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status |
| 19971 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" | 19974 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" |
| 19972 | ;;;;;; "pcvs.el" (17851 10840)) | 19975 | ;;;;;; "pcvs.el" (17843 27862)) |
| 19973 | ;;; Generated autoloads from pcvs.el | 19976 | ;;; Generated autoloads from pcvs.el |
| 19974 | 19977 | ||
| 19975 | (autoload (quote cvs-checkout) "pcvs" "\ | 19978 | (autoload (quote cvs-checkout) "pcvs" "\ |
| @@ -20046,7 +20049,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 20046 | 20049 | ||
| 20047 | ;;;*** | 20050 | ;;;*** |
| 20048 | 20051 | ||
| 20049 | ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17851 10839)) | 20052 | ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17843 27862)) |
| 20050 | ;;; Generated autoloads from pcvs-defs.el | 20053 | ;;; Generated autoloads from pcvs-defs.el |
| 20051 | 20054 | ||
| 20052 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m))) | 20055 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m))) |
| @@ -20054,7 +20057,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 20054 | ;;;*** | 20057 | ;;;*** |
| 20055 | 20058 | ||
| 20056 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" | 20059 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" |
| 20057 | ;;;;;; (17851 10869)) | 20060 | ;;;;;; (17843 27883)) |
| 20058 | ;;; Generated autoloads from progmodes/perl-mode.el | 20061 | ;;; Generated autoloads from progmodes/perl-mode.el |
| 20059 | 20062 | ||
| 20060 | (autoload (quote perl-mode) "perl-mode" "\ | 20063 | (autoload (quote perl-mode) "perl-mode" "\ |
| @@ -20112,7 +20115,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 20112 | ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key | 20115 | ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key |
| 20113 | ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt | 20116 | ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt |
| 20114 | ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region | 20117 | ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region |
| 20115 | ;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17851 10840)) | 20118 | ;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17843 27862)) |
| 20116 | ;;; Generated autoloads from pgg.el | 20119 | ;;; Generated autoloads from pgg.el |
| 20117 | 20120 | ||
| 20118 | (autoload (quote pgg-encrypt-region) "pgg" "\ | 20121 | (autoload (quote pgg-encrypt-region) "pgg" "\ |
| @@ -20246,7 +20249,7 @@ Import public keys in the current buffer. | |||
| 20246 | ;;;*** | 20249 | ;;;*** |
| 20247 | 20250 | ||
| 20248 | ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" | 20251 | ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" |
| 20249 | ;;;;;; (17887 6558)) | 20252 | ;;;;;; (17892 53316)) |
| 20250 | ;;; Generated autoloads from pgg-gpg.el | 20253 | ;;; Generated autoloads from pgg-gpg.el |
| 20251 | 20254 | ||
| 20252 | (autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ | 20255 | (autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ |
| @@ -20257,7 +20260,7 @@ True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. | |||
| 20257 | ;;;*** | 20260 | ;;;*** |
| 20258 | 20261 | ||
| 20259 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" | 20262 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" |
| 20260 | ;;;;;; (17851 10872)) | 20263 | ;;;;;; (17843 27886)) |
| 20261 | ;;; Generated autoloads from textmodes/picture.el | 20264 | ;;; Generated autoloads from textmodes/picture.el |
| 20262 | 20265 | ||
| 20263 | (autoload (quote picture-mode) "picture" "\ | 20266 | (autoload (quote picture-mode) "picture" "\ |
| @@ -20338,7 +20341,7 @@ they are not defaultly assigned to keys. | |||
| 20338 | ;;;*** | 20341 | ;;;*** |
| 20339 | 20342 | ||
| 20340 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" | 20343 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" |
| 20341 | ;;;;;; (17851 10872)) | 20344 | ;;;;;; (17843 27886)) |
| 20342 | ;;; Generated autoloads from textmodes/po.el | 20345 | ;;; Generated autoloads from textmodes/po.el |
| 20343 | 20346 | ||
| 20344 | (autoload (quote po-find-file-coding-system) "po" "\ | 20347 | (autoload (quote po-find-file-coding-system) "po" "\ |
| @@ -20349,7 +20352,7 @@ Called through `file-coding-system-alist', before the file is visited for real. | |||
| 20349 | 20352 | ||
| 20350 | ;;;*** | 20353 | ;;;*** |
| 20351 | 20354 | ||
| 20352 | ;;;### (autoloads (pong) "pong" "play/pong.el" (17851 10866)) | 20355 | ;;;### (autoloads (pong) "pong" "play/pong.el" (17843 27880)) |
| 20353 | ;;; Generated autoloads from play/pong.el | 20356 | ;;; Generated autoloads from play/pong.el |
| 20354 | 20357 | ||
| 20355 | (autoload (quote pong) "pong" "\ | 20358 | (autoload (quote pong) "pong" "\ |
| @@ -21010,7 +21013,7 @@ are both set to t. | |||
| 21010 | ;;;*** | 21013 | ;;;*** |
| 21011 | 21014 | ||
| 21012 | ;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el" | 21015 | ;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el" |
| 21013 | ;;;;;; (17851 10869)) | 21016 | ;;;;;; (17843 27883)) |
| 21014 | ;;; Generated autoloads from progmodes/prolog.el | 21017 | ;;; Generated autoloads from progmodes/prolog.el |
| 21015 | 21018 | ||
| 21016 | (autoload (quote prolog-mode) "prolog" "\ | 21019 | (autoload (quote prolog-mode) "prolog" "\ |
| @@ -21033,7 +21036,7 @@ With prefix argument \\[universal-prefix], prompt for the program to use. | |||
| 21033 | 21036 | ||
| 21034 | ;;;*** | 21037 | ;;;*** |
| 21035 | 21038 | ||
| 21036 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17851 10840)) | 21039 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17843 27862)) |
| 21037 | ;;; Generated autoloads from ps-bdf.el | 21040 | ;;; Generated autoloads from ps-bdf.el |
| 21038 | 21041 | ||
| 21039 | (defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\ | 21042 | (defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\ |
| @@ -21042,8 +21045,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 21042 | 21045 | ||
| 21043 | ;;;*** | 21046 | ;;;*** |
| 21044 | 21047 | ||
| 21045 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17851 | 21048 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17843 |
| 21046 | ;;;;;; 10869)) | 21049 | ;;;;;; 27883)) |
| 21047 | ;;; Generated autoloads from progmodes/ps-mode.el | 21050 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 21048 | 21051 | ||
| 21049 | (autoload (quote ps-mode) "ps-mode" "\ | 21052 | (autoload (quote ps-mode) "ps-mode" "\ |
| @@ -21092,7 +21095,7 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number | |||
| 21092 | ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string | 21095 | ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string |
| 21093 | ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string | 21096 | ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string |
| 21094 | ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer) | 21097 | ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer) |
| 21095 | ;;;;;; "ps-mule" "ps-mule.el" (17851 10840)) | 21098 | ;;;;;; "ps-mule" "ps-mule.el" (17843 27862)) |
| 21096 | ;;; Generated autoloads from ps-mule.el | 21099 | ;;; Generated autoloads from ps-mule.el |
| 21097 | 21100 | ||
| 21098 | (defvar ps-multibyte-buffer nil "\ | 21101 | (defvar ps-multibyte-buffer nil "\ |
| @@ -21213,8 +21216,8 @@ Not documented | |||
| 21213 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer | 21216 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer |
| 21214 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces | 21217 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces |
| 21215 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type | 21218 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type |
| 21216 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17880 | 21219 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17895 |
| 21217 | ;;;;;; 31192)) | 21220 | ;;;;;; 22419)) |
| 21218 | ;;; Generated autoloads from ps-print.el | 21221 | ;;; Generated autoloads from ps-print.el |
| 21219 | 21222 | ||
| 21220 | (defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\ | 21223 | (defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\ |
| @@ -21411,7 +21414,7 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 21411 | ;;;*** | 21414 | ;;;*** |
| 21412 | 21415 | ||
| 21413 | ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" | 21416 | ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" |
| 21414 | ;;;;;; (17851 10869)) | 21417 | ;;;;;; (17894 62280)) |
| 21415 | ;;; Generated autoloads from progmodes/python.el | 21418 | ;;; Generated autoloads from progmodes/python.el |
| 21416 | 21419 | ||
| 21417 | (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) | 21420 | (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) |
| @@ -21486,7 +21489,7 @@ Runs `jython-mode-hook' after `python-mode-hook'. | |||
| 21486 | ;;;*** | 21489 | ;;;*** |
| 21487 | 21490 | ||
| 21488 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" | 21491 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" |
| 21489 | ;;;;;; (17851 10859)) | 21492 | ;;;;;; (17843 27875)) |
| 21490 | ;;; Generated autoloads from gnus/qp.el | 21493 | ;;; Generated autoloads from gnus/qp.el |
| 21491 | 21494 | ||
| 21492 | (autoload (quote quoted-printable-decode-region) "qp" "\ | 21495 | (autoload (quote quoted-printable-decode-region) "qp" "\ |
| @@ -21740,8 +21743,8 @@ of each directory. | |||
| 21740 | 21743 | ||
| 21741 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls | 21744 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls |
| 21742 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url | 21745 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url |
| 21743 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17851 | 21746 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17843 |
| 21744 | ;;;;;; 10864)) | 21747 | ;;;;;; 27879)) |
| 21745 | ;;; Generated autoloads from net/quickurl.el | 21748 | ;;; Generated autoloads from net/quickurl.el |
| 21746 | 21749 | ||
| 21747 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ | 21750 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ |
| @@ -21813,7 +21816,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | |||
| 21813 | ;;;*** | 21816 | ;;;*** |
| 21814 | 21817 | ||
| 21815 | ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" | 21818 | ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" |
| 21816 | ;;;;;; "net/rcirc.el" (17851 10864)) | 21819 | ;;;;;; "net/rcirc.el" (17843 27879)) |
| 21817 | ;;; Generated autoloads from net/rcirc.el | 21820 | ;;; Generated autoloads from net/rcirc.el |
| 21818 | 21821 | ||
| 21819 | (autoload (quote rcirc) "rcirc" "\ | 21822 | (autoload (quote rcirc) "rcirc" "\ |
| @@ -21845,8 +21848,8 @@ Global minor mode for tracking activity in rcirc buffers. | |||
| 21845 | 21848 | ||
| 21846 | ;;;*** | 21849 | ;;;*** |
| 21847 | 21850 | ||
| 21848 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17851 | 21851 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17843 |
| 21849 | ;;;;;; 10864)) | 21852 | ;;;;;; 27879)) |
| 21850 | ;;; Generated autoloads from net/rcompile.el | 21853 | ;;; Generated autoloads from net/rcompile.el |
| 21851 | 21854 | ||
| 21852 | (autoload (quote remote-compile) "rcompile" "\ | 21855 | (autoload (quote remote-compile) "rcompile" "\ |
| @@ -21858,7 +21861,7 @@ See \\[compile]. | |||
| 21858 | ;;;*** | 21861 | ;;;*** |
| 21859 | 21862 | ||
| 21860 | ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" | 21863 | ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" |
| 21861 | ;;;;;; (17851 10853)) | 21864 | ;;;;;; (17843 27869)) |
| 21862 | ;;; Generated autoloads from emacs-lisp/re-builder.el | 21865 | ;;; Generated autoloads from emacs-lisp/re-builder.el |
| 21863 | 21866 | ||
| 21864 | (defalias (quote regexp-builder) (quote re-builder)) | 21867 | (defalias (quote regexp-builder) (quote re-builder)) |
| @@ -21870,7 +21873,7 @@ Construct a regexp interactively. | |||
| 21870 | 21873 | ||
| 21871 | ;;;*** | 21874 | ;;;*** |
| 21872 | 21875 | ||
| 21873 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17851 10841)) | 21876 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17843 27862)) |
| 21874 | ;;; Generated autoloads from recentf.el | 21877 | ;;; Generated autoloads from recentf.el |
| 21875 | 21878 | ||
| 21876 | (defvar recentf-mode nil "\ | 21879 | (defvar recentf-mode nil "\ |
| @@ -21897,8 +21900,8 @@ that were operated on recently. | |||
| 21897 | ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle | 21900 | ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle |
| 21898 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle | 21901 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle |
| 21899 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle | 21902 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle |
| 21900 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17851 | 21903 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17843 |
| 21901 | ;;;;;; 10841)) | 21904 | ;;;;;; 27862)) |
| 21902 | ;;; Generated autoloads from rect.el | 21905 | ;;; Generated autoloads from rect.el |
| 21903 | 21906 | ||
| 21904 | (autoload (quote move-to-column-force) "rect" "\ | 21907 | (autoload (quote move-to-column-force) "rect" "\ |
| @@ -22026,8 +22029,8 @@ rectangle which were empty. | |||
| 22026 | 22029 | ||
| 22027 | ;;;*** | 22030 | ;;;*** |
| 22028 | 22031 | ||
| 22029 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17851 | 22032 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17843 |
| 22030 | ;;;;;; 10872)) | 22033 | ;;;;;; 27886)) |
| 22031 | ;;; Generated autoloads from textmodes/refill.el | 22034 | ;;; Generated autoloads from textmodes/refill.el |
| 22032 | 22035 | ||
| 22033 | (autoload (quote refill-mode) "refill" "\ | 22036 | (autoload (quote refill-mode) "refill" "\ |
| @@ -22043,7 +22046,7 @@ refilling if they would cause auto-filling. | |||
| 22043 | ;;;*** | 22046 | ;;;*** |
| 22044 | 22047 | ||
| 22045 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode | 22048 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode |
| 22046 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17851 10872)) | 22049 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17843 27886)) |
| 22047 | ;;; Generated autoloads from textmodes/reftex.el | 22050 | ;;; Generated autoloads from textmodes/reftex.el |
| 22048 | 22051 | ||
| 22049 | (autoload (quote turn-on-reftex) "reftex" "\ | 22052 | (autoload (quote turn-on-reftex) "reftex" "\ |
| @@ -22093,7 +22096,7 @@ This enforces rescanning the buffer on next use. | |||
| 22093 | ;;;*** | 22096 | ;;;*** |
| 22094 | 22097 | ||
| 22095 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" | 22098 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" |
| 22096 | ;;;;;; (17851 10872)) | 22099 | ;;;;;; (17843 27886)) |
| 22097 | ;;; Generated autoloads from textmodes/reftex-cite.el | 22100 | ;;; Generated autoloads from textmodes/reftex-cite.el |
| 22098 | 22101 | ||
| 22099 | (autoload (quote reftex-citation) "reftex-cite" "\ | 22102 | (autoload (quote reftex-citation) "reftex-cite" "\ |
| @@ -22123,7 +22126,7 @@ While entering the regexp, completion on knows citation keys is possible. | |||
| 22123 | ;;;*** | 22126 | ;;;*** |
| 22124 | 22127 | ||
| 22125 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" | 22128 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" |
| 22126 | ;;;;;; (17851 10872)) | 22129 | ;;;;;; (17843 27886)) |
| 22127 | ;;; Generated autoloads from textmodes/reftex-global.el | 22130 | ;;; Generated autoloads from textmodes/reftex-global.el |
| 22128 | 22131 | ||
| 22129 | (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ | 22132 | (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ |
| @@ -22140,7 +22143,7 @@ With no argument, this command toggles | |||
| 22140 | ;;;*** | 22143 | ;;;*** |
| 22141 | 22144 | ||
| 22142 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" | 22145 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" |
| 22143 | ;;;;;; (17851 10872)) | 22146 | ;;;;;; (17843 27886)) |
| 22144 | ;;; Generated autoloads from textmodes/reftex-index.el | 22147 | ;;; Generated autoloads from textmodes/reftex-index.el |
| 22145 | 22148 | ||
| 22146 | (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ | 22149 | (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ |
| @@ -22173,7 +22176,7 @@ Here are all local bindings. | |||
| 22173 | ;;;*** | 22176 | ;;;*** |
| 22174 | 22177 | ||
| 22175 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" | 22178 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" |
| 22176 | ;;;;;; (17851 10872)) | 22179 | ;;;;;; (17843 27886)) |
| 22177 | ;;; Generated autoloads from textmodes/reftex-parse.el | 22180 | ;;; Generated autoloads from textmodes/reftex-parse.el |
| 22178 | 22181 | ||
| 22179 | (autoload (quote reftex-all-document-files) "reftex-parse" "\ | 22182 | (autoload (quote reftex-all-document-files) "reftex-parse" "\ |
| @@ -22185,8 +22188,8 @@ of master file. | |||
| 22185 | 22188 | ||
| 22186 | ;;;*** | 22189 | ;;;*** |
| 22187 | 22190 | ||
| 22188 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (17851 | 22191 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (17843 |
| 22189 | ;;;;;; 10872)) | 22192 | ;;;;;; 27886)) |
| 22190 | ;;; Generated autoloads from textmodes/reftex-vars.el | 22193 | ;;; Generated autoloads from textmodes/reftex-vars.el |
| 22191 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22194 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| 22192 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22195 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| @@ -22196,7 +22199,7 @@ of master file. | |||
| 22196 | ;;;*** | 22199 | ;;;*** |
| 22197 | 22200 | ||
| 22198 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" | 22201 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" |
| 22199 | ;;;;;; (17851 10853)) | 22202 | ;;;;;; (17843 27869)) |
| 22200 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el | 22203 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el |
| 22201 | 22204 | ||
| 22202 | (autoload (quote regexp-opt) "regexp-opt" "\ | 22205 | (autoload (quote regexp-opt) "regexp-opt" "\ |
| @@ -22223,7 +22226,7 @@ This means the number of non-shy regexp grouping constructs | |||
| 22223 | 22226 | ||
| 22224 | ;;;*** | 22227 | ;;;*** |
| 22225 | 22228 | ||
| 22226 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (17851 10841)) | 22229 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (17843 27862)) |
| 22227 | ;;; Generated autoloads from repeat.el | 22230 | ;;; Generated autoloads from repeat.el |
| 22228 | 22231 | ||
| 22229 | (autoload (quote repeat) "repeat" "\ | 22232 | (autoload (quote repeat) "repeat" "\ |
| @@ -22241,7 +22244,7 @@ can be modified by the global variable `repeat-on-final-keystroke'. | |||
| 22241 | ;;;*** | 22244 | ;;;*** |
| 22242 | 22245 | ||
| 22243 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" | 22246 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" |
| 22244 | ;;;;;; (17851 10862)) | 22247 | ;;;;;; (17843 27878)) |
| 22245 | ;;; Generated autoloads from mail/reporter.el | 22248 | ;;; Generated autoloads from mail/reporter.el |
| 22246 | 22249 | ||
| 22247 | (autoload (quote reporter-submit-bug-report) "reporter" "\ | 22250 | (autoload (quote reporter-submit-bug-report) "reporter" "\ |
| @@ -22273,7 +22276,7 @@ mail-sending package is used for editing and sending the message. | |||
| 22273 | ;;;*** | 22276 | ;;;*** |
| 22274 | 22277 | ||
| 22275 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" | 22278 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" |
| 22276 | ;;;;;; (17851 10841)) | 22279 | ;;;;;; (17843 27862)) |
| 22277 | ;;; Generated autoloads from reposition.el | 22280 | ;;; Generated autoloads from reposition.el |
| 22278 | 22281 | ||
| 22279 | (autoload (quote reposition-window) "reposition" "\ | 22282 | (autoload (quote reposition-window) "reposition" "\ |
| @@ -22300,8 +22303,8 @@ first comment line visible (if point is in a comment). | |||
| 22300 | 22303 | ||
| 22301 | ;;;*** | 22304 | ;;;*** |
| 22302 | 22305 | ||
| 22303 | ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17851 | 22306 | ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17843 |
| 22304 | ;;;;;; 10841)) | 22307 | ;;;;;; 27862)) |
| 22305 | ;;; Generated autoloads from resume.el | 22308 | ;;; Generated autoloads from resume.el |
| 22306 | 22309 | ||
| 22307 | (autoload (quote resume-suspend-hook) "resume" "\ | 22310 | (autoload (quote resume-suspend-hook) "resume" "\ |
| @@ -22312,7 +22315,7 @@ Clear out the file used for transmitting args when Emacs resumes. | |||
| 22312 | ;;;*** | 22315 | ;;;*** |
| 22313 | 22316 | ||
| 22314 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" | 22317 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" |
| 22315 | ;;;;;; (17851 10841)) | 22318 | ;;;;;; (17843 27863)) |
| 22316 | ;;; Generated autoloads from reveal.el | 22319 | ;;; Generated autoloads from reveal.el |
| 22317 | 22320 | ||
| 22318 | (autoload (quote reveal-mode) "reveal" "\ | 22321 | (autoload (quote reveal-mode) "reveal" "\ |
| @@ -22347,7 +22350,7 @@ With zero or negative ARG turn mode off. | |||
| 22347 | ;;;*** | 22350 | ;;;*** |
| 22348 | 22351 | ||
| 22349 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" | 22352 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" |
| 22350 | ;;;;;; (17851 10853)) | 22353 | ;;;;;; (17843 27869)) |
| 22351 | ;;; Generated autoloads from emacs-lisp/ring.el | 22354 | ;;; Generated autoloads from emacs-lisp/ring.el |
| 22352 | 22355 | ||
| 22353 | (autoload (quote ring-p) "ring" "\ | 22356 | (autoload (quote ring-p) "ring" "\ |
| @@ -22362,7 +22365,7 @@ Make a ring that can contain SIZE elements. | |||
| 22362 | 22365 | ||
| 22363 | ;;;*** | 22366 | ;;;*** |
| 22364 | 22367 | ||
| 22365 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17851 10864)) | 22368 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17843 27879)) |
| 22366 | ;;; Generated autoloads from net/rlogin.el | 22369 | ;;; Generated autoloads from net/rlogin.el |
| 22367 | (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") | 22370 | (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") |
| 22368 | 22371 | ||
| @@ -22413,8 +22416,8 @@ variable. | |||
| 22413 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output | 22416 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output |
| 22414 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers | 22417 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers |
| 22415 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names | 22418 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names |
| 22416 | ;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17851 | 22419 | ;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17889 |
| 22417 | ;;;;;; 10862)) | 22420 | ;;;;;; 58740)) |
| 22418 | ;;; Generated autoloads from mail/rmail.el | 22421 | ;;; Generated autoloads from mail/rmail.el |
| 22419 | 22422 | ||
| 22420 | (autoload (quote rmail-movemail-variant-p) "rmail" "\ | 22423 | (autoload (quote rmail-movemail-variant-p) "rmail" "\ |
| @@ -22679,7 +22682,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. | |||
| 22679 | ;;;*** | 22682 | ;;;*** |
| 22680 | 22683 | ||
| 22681 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" | 22684 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" |
| 22682 | ;;;;;; (17851 10862)) | 22685 | ;;;;;; (17889 58740)) |
| 22683 | ;;; Generated autoloads from mail/rmailedit.el | 22686 | ;;; Generated autoloads from mail/rmailedit.el |
| 22684 | 22687 | ||
| 22685 | (autoload (quote rmail-edit-current-message) "rmailedit" "\ | 22688 | (autoload (quote rmail-edit-current-message) "rmailedit" "\ |
| @@ -22691,7 +22694,7 @@ Edit the contents of this message. | |||
| 22691 | 22694 | ||
| 22692 | ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message | 22695 | ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message |
| 22693 | ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" | 22696 | ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" |
| 22694 | ;;;;;; "mail/rmailkwd.el" (17851 10862)) | 22697 | ;;;;;; "mail/rmailkwd.el" (17843 27878)) |
| 22695 | ;;; Generated autoloads from mail/rmailkwd.el | 22698 | ;;; Generated autoloads from mail/rmailkwd.el |
| 22696 | 22699 | ||
| 22697 | (autoload (quote rmail-add-label) "rmailkwd" "\ | 22700 | (autoload (quote rmail-add-label) "rmailkwd" "\ |
| @@ -22730,7 +22733,7 @@ With prefix argument N moves forward N messages with these labels. | |||
| 22730 | ;;;*** | 22733 | ;;;*** |
| 22731 | 22734 | ||
| 22732 | ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" | 22735 | ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" |
| 22733 | ;;;;;; (17851 10862)) | 22736 | ;;;;;; (17843 27878)) |
| 22734 | ;;; Generated autoloads from mail/rmailmsc.el | 22737 | ;;; Generated autoloads from mail/rmailmsc.el |
| 22735 | 22738 | ||
| 22736 | (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ | 22739 | (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ |
| @@ -22744,7 +22747,7 @@ If FILE-NAME is empty, remove any existing inbox list. | |||
| 22744 | 22747 | ||
| 22745 | ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output | 22748 | ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output |
| 22746 | ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" | 22749 | ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" |
| 22747 | ;;;;;; "mail/rmailout.el" (17851 10862)) | 22750 | ;;;;;; "mail/rmailout.el" (17843 27878)) |
| 22748 | ;;; Generated autoloads from mail/rmailout.el | 22751 | ;;; Generated autoloads from mail/rmailout.el |
| 22749 | 22752 | ||
| 22750 | (defvar rmail-output-file-alist nil "\ | 22753 | (defvar rmail-output-file-alist nil "\ |
| @@ -22811,8 +22814,8 @@ FILE-NAME defaults, interactively, from the Subject field of the message. | |||
| 22811 | 22814 | ||
| 22812 | ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent | 22815 | ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent |
| 22813 | ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject | 22816 | ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject |
| 22814 | ;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17851 | 22817 | ;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17843 |
| 22815 | ;;;;;; 10862)) | 22818 | ;;;;;; 27878)) |
| 22816 | ;;; Generated autoloads from mail/rmailsort.el | 22819 | ;;; Generated autoloads from mail/rmailsort.el |
| 22817 | 22820 | ||
| 22818 | (autoload (quote rmail-sort-by-date) "rmailsort" "\ | 22821 | (autoload (quote rmail-sort-by-date) "rmailsort" "\ |
| @@ -22864,7 +22867,7 @@ KEYWORDS is a comma-separated list of labels. | |||
| 22864 | ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp | 22867 | ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp |
| 22865 | ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary | 22868 | ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary |
| 22866 | ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) | 22869 | ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) |
| 22867 | ;;;;;; "rmailsum" "mail/rmailsum.el" (17851 10862)) | 22870 | ;;;;;; "rmailsum" "mail/rmailsum.el" (17843 27878)) |
| 22868 | ;;; Generated autoloads from mail/rmailsum.el | 22871 | ;;; Generated autoloads from mail/rmailsum.el |
| 22869 | 22872 | ||
| 22870 | (defvar rmail-summary-scroll-between-messages t "\ | 22873 | (defvar rmail-summary-scroll-between-messages t "\ |
| @@ -22946,7 +22949,7 @@ Setting this variable has an effect only before reading a mail.") | |||
| 22946 | ;;;*** | 22949 | ;;;*** |
| 22947 | 22950 | ||
| 22948 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region | 22951 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region |
| 22949 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (17851 10841)) | 22952 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (17843 27863)) |
| 22950 | ;;; Generated autoloads from rot13.el | 22953 | ;;; Generated autoloads from rot13.el |
| 22951 | 22954 | ||
| 22952 | (autoload (quote rot13) "rot13" "\ | 22955 | (autoload (quote rot13) "rot13" "\ |
| @@ -22983,8 +22986,8 @@ Toggle the use of ROT13 encoding for the current window. | |||
| 22983 | 22986 | ||
| 22984 | ;;;*** | 22987 | ;;;*** |
| 22985 | 22988 | ||
| 22986 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17851 | 22989 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17838 |
| 22987 | ;;;;;; 10841)) | 22990 | ;;;;;; 58218)) |
| 22988 | ;;; Generated autoloads from ruler-mode.el | 22991 | ;;; Generated autoloads from ruler-mode.el |
| 22989 | 22992 | ||
| 22990 | (autoload (quote ruler-mode) "ruler-mode" "\ | 22993 | (autoload (quote ruler-mode) "ruler-mode" "\ |
| @@ -22994,8 +22997,8 @@ Display a ruler in the header line if ARG > 0. | |||
| 22994 | 22997 | ||
| 22995 | ;;;*** | 22998 | ;;;*** |
| 22996 | 22999 | ||
| 22997 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17851 | 23000 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17843 |
| 22998 | ;;;;;; 10853)) | 23001 | ;;;;;; 27869)) |
| 22999 | ;;; Generated autoloads from emacs-lisp/rx.el | 23002 | ;;; Generated autoloads from emacs-lisp/rx.el |
| 23000 | 23003 | ||
| 23001 | (autoload (quote rx-to-string) "rx" "\ | 23004 | (autoload (quote rx-to-string) "rx" "\ |
| @@ -23303,7 +23306,7 @@ enclosed in `(and ...)'. | |||
| 23303 | ;;;*** | 23306 | ;;;*** |
| 23304 | 23307 | ||
| 23305 | ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" | 23308 | ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" |
| 23306 | ;;;;;; (17851 10841)) | 23309 | ;;;;;; (17843 27863)) |
| 23307 | ;;; Generated autoloads from savehist.el | 23310 | ;;; Generated autoloads from savehist.el |
| 23308 | 23311 | ||
| 23309 | (defvar savehist-mode nil "\ | 23312 | (defvar savehist-mode nil "\ |
| @@ -23329,7 +23332,7 @@ which is probably undesirable. | |||
| 23329 | ;;;*** | 23332 | ;;;*** |
| 23330 | 23333 | ||
| 23331 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" | 23334 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" |
| 23332 | ;;;;;; (17851 10869)) | 23335 | ;;;;;; (17843 27883)) |
| 23333 | ;;; Generated autoloads from progmodes/scheme.el | 23336 | ;;; Generated autoloads from progmodes/scheme.el |
| 23334 | 23337 | ||
| 23335 | (autoload (quote scheme-mode) "scheme" "\ | 23338 | (autoload (quote scheme-mode) "scheme" "\ |
| @@ -23371,7 +23374,7 @@ that variable's value is a string. | |||
| 23371 | ;;;*** | 23374 | ;;;*** |
| 23372 | 23375 | ||
| 23373 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" | 23376 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" |
| 23374 | ;;;;;; (17851 10859)) | 23377 | ;;;;;; (17843 27876)) |
| 23375 | ;;; Generated autoloads from gnus/score-mode.el | 23378 | ;;; Generated autoloads from gnus/score-mode.el |
| 23376 | 23379 | ||
| 23377 | (autoload (quote gnus-score-mode) "score-mode" "\ | 23380 | (autoload (quote gnus-score-mode) "score-mode" "\ |
| @@ -23385,7 +23388,7 @@ This mode is an extended emacs-lisp mode. | |||
| 23385 | ;;;*** | 23388 | ;;;*** |
| 23386 | 23389 | ||
| 23387 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" | 23390 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" |
| 23388 | ;;;;;; (17851 10841)) | 23391 | ;;;;;; (17843 27863)) |
| 23389 | ;;; Generated autoloads from scroll-all.el | 23392 | ;;; Generated autoloads from scroll-all.el |
| 23390 | 23393 | ||
| 23391 | (defvar scroll-all-mode nil "\ | 23394 | (defvar scroll-all-mode nil "\ |
| @@ -23408,7 +23411,7 @@ apply to all visible windows in the same frame. | |||
| 23408 | ;;;*** | 23411 | ;;;*** |
| 23409 | 23412 | ||
| 23410 | ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" | 23413 | ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" |
| 23411 | ;;;;;; (17851 10842)) | 23414 | ;;;;;; (17843 27863)) |
| 23412 | ;;; Generated autoloads from scroll-lock.el | 23415 | ;;; Generated autoloads from scroll-lock.el |
| 23413 | 23416 | ||
| 23414 | (autoload (quote scroll-lock-mode) "scroll-lock" "\ | 23417 | (autoload (quote scroll-lock-mode) "scroll-lock" "\ |
| @@ -23430,7 +23433,7 @@ during scrolling. | |||
| 23430 | ;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name | 23433 | ;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name |
| 23431 | ;;;;;; mail-header-separator send-mail-function mail-interactive | 23434 | ;;;;;; mail-header-separator send-mail-function mail-interactive |
| 23432 | ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) | 23435 | ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) |
| 23433 | ;;;;;; "sendmail" "mail/sendmail.el" (17851 10862)) | 23436 | ;;;;;; "sendmail" "mail/sendmail.el" (17843 27878)) |
| 23434 | ;;; Generated autoloads from mail/sendmail.el | 23437 | ;;; Generated autoloads from mail/sendmail.el |
| 23435 | 23438 | ||
| 23436 | (defvar mail-from-style (quote angles) "\ | 23439 | (defvar mail-from-style (quote angles) "\ |
| @@ -23765,7 +23768,7 @@ Server mode runs a process that accepts commands from the | |||
| 23765 | 23768 | ||
| 23766 | ;;;*** | 23769 | ;;;*** |
| 23767 | 23770 | ||
| 23768 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (17851 10843)) | 23771 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (17843 27863)) |
| 23769 | ;;; Generated autoloads from ses.el | 23772 | ;;; Generated autoloads from ses.el |
| 23770 | 23773 | ||
| 23771 | (autoload (quote ses-mode) "ses" "\ | 23774 | (autoload (quote ses-mode) "ses" "\ |
| @@ -23784,7 +23787,7 @@ These are active only in the minibuffer, when entering or editing a formula: | |||
| 23784 | ;;;*** | 23787 | ;;;*** |
| 23785 | 23788 | ||
| 23786 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" | 23789 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" |
| 23787 | ;;;;;; (17851 10873)) | 23790 | ;;;;;; (17889 58741)) |
| 23788 | ;;; Generated autoloads from textmodes/sgml-mode.el | 23791 | ;;; Generated autoloads from textmodes/sgml-mode.el |
| 23789 | 23792 | ||
| 23790 | (autoload (quote sgml-mode) "sgml-mode" "\ | 23793 | (autoload (quote sgml-mode) "sgml-mode" "\ |
| @@ -23852,7 +23855,7 @@ To work around that, do: | |||
| 23852 | ;;;*** | 23855 | ;;;*** |
| 23853 | 23856 | ||
| 23854 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" | 23857 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" |
| 23855 | ;;;;;; (17851 10870)) | 23858 | ;;;;;; (17843 27883)) |
| 23856 | ;;; Generated autoloads from progmodes/sh-script.el | 23859 | ;;; Generated autoloads from progmodes/sh-script.el |
| 23857 | (put 'sh-shell 'safe-local-variable 'symbolp) | 23860 | (put 'sh-shell 'safe-local-variable 'symbolp) |
| 23858 | 23861 | ||
| @@ -23916,7 +23919,7 @@ with your script for an edit-interpret-debug cycle. | |||
| 23916 | 23919 | ||
| 23917 | ;;;*** | 23920 | ;;;*** |
| 23918 | 23921 | ||
| 23919 | ;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17851 10859)) | 23922 | ;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17843 27876)) |
| 23920 | ;;; Generated autoloads from gnus/sha1.el | 23923 | ;;; Generated autoloads from gnus/sha1.el |
| 23921 | 23924 | ||
| 23922 | (autoload (quote sha1) "sha1" "\ | 23925 | (autoload (quote sha1) "sha1" "\ |
| @@ -23978,8 +23981,8 @@ buffer called `*Shadows*'. Shadowings are located by calling the | |||
| 23978 | ;;;*** | 23981 | ;;;*** |
| 23979 | 23982 | ||
| 23980 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group | 23983 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group |
| 23981 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17851 | 23984 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17843 |
| 23982 | ;;;;;; 10843)) | 23985 | ;;;;;; 27863)) |
| 23983 | ;;; Generated autoloads from shadowfile.el | 23986 | ;;; Generated autoloads from shadowfile.el |
| 23984 | 23987 | ||
| 23985 | (autoload (quote shadow-define-cluster) "shadowfile" "\ | 23988 | (autoload (quote shadow-define-cluster) "shadowfile" "\ |
| @@ -24018,7 +24021,7 @@ Set up file shadowing. | |||
| 24018 | ;;;*** | 24021 | ;;;*** |
| 24019 | 24022 | ||
| 24020 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" | 24023 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" |
| 24021 | ;;;;;; (17851 10843)) | 24024 | ;;;;;; (17843 27863)) |
| 24022 | ;;; Generated autoloads from shell.el | 24025 | ;;; Generated autoloads from shell.el |
| 24023 | 24026 | ||
| 24024 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ | 24027 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ |
| @@ -24065,7 +24068,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 24065 | ;;;*** | 24068 | ;;;*** |
| 24066 | 24069 | ||
| 24067 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) | 24070 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) |
| 24068 | ;;;;;; "sieve" "gnus/sieve.el" (17851 10860)) | 24071 | ;;;;;; "sieve" "gnus/sieve.el" (17843 27876)) |
| 24069 | ;;; Generated autoloads from gnus/sieve.el | 24072 | ;;; Generated autoloads from gnus/sieve.el |
| 24070 | 24073 | ||
| 24071 | (autoload (quote sieve-manage) "sieve" "\ | 24074 | (autoload (quote sieve-manage) "sieve" "\ |
| @@ -24086,7 +24089,7 @@ Not documented | |||
| 24086 | ;;;*** | 24089 | ;;;*** |
| 24087 | 24090 | ||
| 24088 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" | 24091 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" |
| 24089 | ;;;;;; (17851 10860)) | 24092 | ;;;;;; (17843 27876)) |
| 24090 | ;;; Generated autoloads from gnus/sieve-mode.el | 24093 | ;;; Generated autoloads from gnus/sieve-mode.el |
| 24091 | 24094 | ||
| 24092 | (autoload (quote sieve-mode) "sieve-mode" "\ | 24095 | (autoload (quote sieve-mode) "sieve-mode" "\ |
| @@ -24101,14 +24104,14 @@ Turning on Sieve mode runs `sieve-mode-hook'. | |||
| 24101 | 24104 | ||
| 24102 | ;;;*** | 24105 | ;;;*** |
| 24103 | 24106 | ||
| 24104 | ;;;### (autoloads nil "simple" "simple.el" (17880 31192)) | 24107 | ;;;### (autoloads nil "simple" "simple.el" (17892 53317)) |
| 24105 | ;;; Generated autoloads from simple.el | 24108 | ;;; Generated autoloads from simple.el |
| 24106 | (put 'fill-prefix 'safe-local-variable 'string-or-null-p) | 24109 | (put 'fill-prefix 'safe-local-variable 'string-or-null-p) |
| 24107 | 24110 | ||
| 24108 | ;;;*** | 24111 | ;;;*** |
| 24109 | 24112 | ||
| 24110 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17851 | 24113 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17843 |
| 24111 | ;;;;;; 10870)) | 24114 | ;;;;;; 27883)) |
| 24112 | ;;; Generated autoloads from progmodes/simula.el | 24115 | ;;; Generated autoloads from progmodes/simula.el |
| 24113 | 24116 | ||
| 24114 | (autoload (quote simula-mode) "simula" "\ | 24117 | (autoload (quote simula-mode) "simula" "\ |
| @@ -24157,7 +24160,7 @@ with no arguments, if that value is non-nil. | |||
| 24157 | ;;;*** | 24160 | ;;;*** |
| 24158 | 24161 | ||
| 24159 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new | 24162 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new |
| 24160 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (17851 10843)) | 24163 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (17843 27863)) |
| 24161 | ;;; Generated autoloads from skeleton.el | 24164 | ;;; Generated autoloads from skeleton.el |
| 24162 | 24165 | ||
| 24163 | (defvar skeleton-filter-function (quote identity) "\ | 24166 | (defvar skeleton-filter-function (quote identity) "\ |
| @@ -24267,7 +24270,7 @@ symmetrical ones, and the same character twice for the others. | |||
| 24267 | ;;;*** | 24270 | ;;;*** |
| 24268 | 24271 | ||
| 24269 | ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" | 24272 | ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" |
| 24270 | ;;;;;; (17851 10844)) | 24273 | ;;;;;; (17843 27863)) |
| 24271 | ;;; Generated autoloads from smerge-mode.el | 24274 | ;;; Generated autoloads from smerge-mode.el |
| 24272 | 24275 | ||
| 24273 | (autoload (quote smerge-ediff) "smerge-mode" "\ | 24276 | (autoload (quote smerge-ediff) "smerge-mode" "\ |
| @@ -24319,7 +24322,7 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. | |||
| 24319 | 24322 | ||
| 24320 | ;;;*** | 24323 | ;;;*** |
| 24321 | 24324 | ||
| 24322 | ;;;### (autoloads (snake) "snake" "play/snake.el" (17851 10866)) | 24325 | ;;;### (autoloads (snake) "snake" "play/snake.el" (17843 27880)) |
| 24323 | ;;; Generated autoloads from play/snake.el | 24326 | ;;; Generated autoloads from play/snake.el |
| 24324 | 24327 | ||
| 24325 | (autoload (quote snake) "snake" "\ | 24328 | (autoload (quote snake) "snake" "\ |
| @@ -24343,7 +24346,7 @@ Snake mode keybindings: | |||
| 24343 | ;;;*** | 24346 | ;;;*** |
| 24344 | 24347 | ||
| 24345 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" | 24348 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" |
| 24346 | ;;;;;; (17851 10864)) | 24349 | ;;;;;; (17843 27879)) |
| 24347 | ;;; Generated autoloads from net/snmp-mode.el | 24350 | ;;; Generated autoloads from net/snmp-mode.el |
| 24348 | 24351 | ||
| 24349 | (autoload (quote snmp-mode) "snmp-mode" "\ | 24352 | (autoload (quote snmp-mode) "snmp-mode" "\ |
| @@ -24374,7 +24377,7 @@ then `snmpv2-mode-hook'. | |||
| 24374 | 24377 | ||
| 24375 | ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name | 24378 | ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name |
| 24376 | ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) | 24379 | ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) |
| 24377 | ;;;;;; "solar" "calendar/solar.el" (17851 10852)) | 24380 | ;;;;;; "solar" "calendar/solar.el" (17843 27868)) |
| 24378 | ;;; Generated autoloads from calendar/solar.el | 24381 | ;;; Generated autoloads from calendar/solar.el |
| 24379 | 24382 | ||
| 24380 | (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ | 24383 | (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ |
| @@ -24445,8 +24448,8 @@ Requires floating point. | |||
| 24445 | 24448 | ||
| 24446 | ;;;*** | 24449 | ;;;*** |
| 24447 | 24450 | ||
| 24448 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17851 | 24451 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17843 |
| 24449 | ;;;;;; 10866)) | 24452 | ;;;;;; 27880)) |
| 24450 | ;;; Generated autoloads from play/solitaire.el | 24453 | ;;; Generated autoloads from play/solitaire.el |
| 24451 | 24454 | ||
| 24452 | (autoload (quote solitaire) "solitaire" "\ | 24455 | (autoload (quote solitaire) "solitaire" "\ |
| @@ -24523,7 +24526,7 @@ Pick your favourite shortcuts: | |||
| 24523 | 24526 | ||
| 24524 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields | 24527 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields |
| 24525 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs | 24528 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs |
| 24526 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (17851 10844)) | 24529 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (17843 27863)) |
| 24527 | ;;; Generated autoloads from sort.el | 24530 | ;;; Generated autoloads from sort.el |
| 24528 | 24531 | ||
| 24529 | (autoload (quote sort-subr) "sort" "\ | 24532 | (autoload (quote sort-subr) "sort" "\ |
| @@ -24665,8 +24668,8 @@ From a program takes two point or marker arguments, BEG and END. | |||
| 24665 | 24668 | ||
| 24666 | ;;;*** | 24669 | ;;;*** |
| 24667 | 24670 | ||
| 24668 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17851 | 24671 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17843 |
| 24669 | ;;;;;; 10860)) | 24672 | ;;;;;; 27876)) |
| 24670 | ;;; Generated autoloads from gnus/spam.el | 24673 | ;;; Generated autoloads from gnus/spam.el |
| 24671 | 24674 | ||
| 24672 | (autoload (quote spam-initialize) "spam" "\ | 24675 | (autoload (quote spam-initialize) "spam" "\ |
| @@ -24678,7 +24681,7 @@ Install the spam.el hooks and do other initialization | |||
| 24678 | 24681 | ||
| 24679 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file | 24682 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file |
| 24680 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" | 24683 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" |
| 24681 | ;;;;;; "gnus/spam-report.el" (17851 10860)) | 24684 | ;;;;;; "gnus/spam-report.el" (17843 27876)) |
| 24682 | ;;; Generated autoloads from gnus/spam-report.el | 24685 | ;;; Generated autoloads from gnus/spam-report.el |
| 24683 | 24686 | ||
| 24684 | (autoload (quote spam-report-process-queue) "spam-report" "\ | 24687 | (autoload (quote spam-report-process-queue) "spam-report" "\ |
| @@ -24746,7 +24749,7 @@ selected. If the speedbar frame is active, then select the attached frame. | |||
| 24746 | ;;;*** | 24749 | ;;;*** |
| 24747 | 24750 | ||
| 24748 | ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) | 24751 | ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) |
| 24749 | ;;;;;; "spell" "textmodes/spell.el" (17851 10873)) | 24752 | ;;;;;; "spell" "textmodes/spell.el" (17892 53318)) |
| 24750 | ;;; Generated autoloads from textmodes/spell.el | 24753 | ;;; Generated autoloads from textmodes/spell.el |
| 24751 | 24754 | ||
| 24752 | (put (quote spell-filter) (quote risky-local-variable) t) | 24755 | (put (quote spell-filter) (quote risky-local-variable) t) |
| @@ -24782,8 +24785,8 @@ Check spelling of string supplied as argument. | |||
| 24782 | 24785 | ||
| 24783 | ;;;*** | 24786 | ;;;*** |
| 24784 | 24787 | ||
| 24785 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17851 | 24788 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17843 |
| 24786 | ;;;;;; 10866)) | 24789 | ;;;;;; 27880)) |
| 24787 | ;;; Generated autoloads from play/spook.el | 24790 | ;;; Generated autoloads from play/spook.el |
| 24788 | 24791 | ||
| 24789 | (autoload (quote spook) "spook" "\ | 24792 | (autoload (quote spook) "spook" "\ |
| @@ -24801,8 +24804,8 @@ Return a vector containing the lines from `spook-phrases-file'. | |||
| 24801 | ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres | 24804 | ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres |
| 24802 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix | 24805 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix |
| 24803 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help | 24806 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help |
| 24804 | ;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17851 | 24807 | ;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17843 |
| 24805 | ;;;;;; 10870)) | 24808 | ;;;;;; 27883)) |
| 24806 | ;;; Generated autoloads from progmodes/sql.el | 24809 | ;;; Generated autoloads from progmodes/sql.el |
| 24807 | 24810 | ||
| 24808 | (autoload (quote sql-add-product-keywords) "sql" "\ | 24811 | (autoload (quote sql-add-product-keywords) "sql" "\ |
| @@ -25233,8 +25236,8 @@ input. See `sql-interactive-mode'. | |||
| 25233 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes | 25236 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes |
| 25234 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke | 25237 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke |
| 25235 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke | 25238 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke |
| 25236 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17851 | 25239 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17843 |
| 25237 | ;;;;;; 10844)) | 25240 | ;;;;;; 27863)) |
| 25238 | ;;; Generated autoloads from strokes.el | 25241 | ;;; Generated autoloads from strokes.el |
| 25239 | 25242 | ||
| 25240 | (autoload (quote strokes-global-set-stroke) "strokes" "\ | 25243 | (autoload (quote strokes-global-set-stroke) "strokes" "\ |
| @@ -25364,7 +25367,7 @@ Studlify-case the current buffer. | |||
| 25364 | 25367 | ||
| 25365 | ;;;*** | 25368 | ;;;*** |
| 25366 | 25369 | ||
| 25367 | ;;;### (autoloads (locate-library) "subr" "subr.el" (17868 65234)) | 25370 | ;;;### (autoloads (locate-library) "subr" "subr.el" (17892 53317)) |
| 25368 | ;;; Generated autoloads from subr.el | 25371 | ;;; Generated autoloads from subr.el |
| 25369 | 25372 | ||
| 25370 | (autoload (quote locate-library) "subr" "\ | 25373 | (autoload (quote locate-library) "subr" "\ |
| @@ -25418,7 +25421,7 @@ before, and `sc-post-hook' is run after the guts of this function. | |||
| 25418 | 25421 | ||
| 25419 | ;;;*** | 25422 | ;;;*** |
| 25420 | 25423 | ||
| 25421 | ;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (17851 10844)) | 25424 | ;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (17843 27863)) |
| 25422 | ;;; Generated autoloads from t-mouse.el | 25425 | ;;; Generated autoloads from t-mouse.el |
| 25423 | 25426 | ||
| 25424 | (defvar t-mouse-mode nil "\ | 25427 | (defvar t-mouse-mode nil "\ |
| @@ -25440,7 +25443,7 @@ Turn it on to use Emacs mouse commands, and off to use t-mouse commands. | |||
| 25440 | 25443 | ||
| 25441 | ;;;*** | 25444 | ;;;*** |
| 25442 | 25445 | ||
| 25443 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17851 10844)) | 25446 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17843 27863)) |
| 25444 | ;;; Generated autoloads from tabify.el | 25447 | ;;; Generated autoloads from tabify.el |
| 25445 | 25448 | ||
| 25446 | (autoload (quote untabify) "tabify" "\ | 25449 | (autoload (quote untabify) "tabify" "\ |
| @@ -25475,7 +25478,7 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 25475 | ;;;;;; table-recognize table-insert-row-column table-insert-column | 25478 | ;;;;;; table-recognize table-insert-row-column table-insert-column |
| 25476 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook | 25479 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook |
| 25477 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) | 25480 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) |
| 25478 | ;;;;;; "table" "textmodes/table.el" (17851 10873)) | 25481 | ;;;;;; "table" "textmodes/table.el" (17843 27887)) |
| 25479 | ;;; Generated autoloads from textmodes/table.el | 25482 | ;;; Generated autoloads from textmodes/table.el |
| 25480 | 25483 | ||
| 25481 | (defvar table-cell-map-hook nil "\ | 25484 | (defvar table-cell-map-hook nil "\ |
| @@ -26063,7 +26066,7 @@ converts a table into plain text without frames. It is a companion to | |||
| 26063 | 26066 | ||
| 26064 | ;;;*** | 26067 | ;;;*** |
| 26065 | 26068 | ||
| 26066 | ;;;### (autoloads (talk-connect) "talk" "talk.el" (17851 10845)) | 26069 | ;;;### (autoloads (talk-connect) "talk" "talk.el" (17843 27863)) |
| 26067 | ;;; Generated autoloads from talk.el | 26070 | ;;; Generated autoloads from talk.el |
| 26068 | 26071 | ||
| 26069 | (autoload (quote talk-connect) "talk" "\ | 26072 | (autoload (quote talk-connect) "talk" "\ |
| @@ -26073,7 +26076,7 @@ Connect to display DISPLAY for the Emacs talk group. | |||
| 26073 | 26076 | ||
| 26074 | ;;;*** | 26077 | ;;;*** |
| 26075 | 26078 | ||
| 26076 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17851 10845)) | 26079 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17843 27863)) |
| 26077 | ;;; Generated autoloads from tar-mode.el | 26080 | ;;; Generated autoloads from tar-mode.el |
| 26078 | 26081 | ||
| 26079 | (autoload (quote tar-mode) "tar-mode" "\ | 26082 | (autoload (quote tar-mode) "tar-mode" "\ |
| @@ -26097,7 +26100,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. | |||
| 26097 | ;;;*** | 26100 | ;;;*** |
| 26098 | 26101 | ||
| 26099 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" | 26102 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" |
| 26100 | ;;;;;; "progmodes/tcl.el" (17851 10870)) | 26103 | ;;;;;; "progmodes/tcl.el" (17843 27883)) |
| 26101 | ;;; Generated autoloads from progmodes/tcl.el | 26104 | ;;; Generated autoloads from progmodes/tcl.el |
| 26102 | 26105 | ||
| 26103 | (autoload (quote tcl-mode) "tcl" "\ | 26106 | (autoload (quote tcl-mode) "tcl" "\ |
| @@ -26148,7 +26151,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. | |||
| 26148 | 26151 | ||
| 26149 | ;;;*** | 26152 | ;;;*** |
| 26150 | 26153 | ||
| 26151 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17851 10864)) | 26154 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17843 27879)) |
| 26152 | ;;; Generated autoloads from net/telnet.el | 26155 | ;;; Generated autoloads from net/telnet.el |
| 26153 | (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") | 26156 | (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") |
| 26154 | 26157 | ||
| @@ -26175,8 +26178,8 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 26175 | 26178 | ||
| 26176 | ;;;*** | 26179 | ;;;*** |
| 26177 | 26180 | ||
| 26178 | ;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17884 | 26181 | ;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17892 |
| 26179 | ;;;;;; 57195)) | 26182 | ;;;;;; 53317)) |
| 26180 | ;;; Generated autoloads from term.el | 26183 | ;;; Generated autoloads from term.el |
| 26181 | 26184 | ||
| 26182 | (autoload (quote make-term) "term" "\ | 26185 | (autoload (quote make-term) "term" "\ |
| @@ -26204,8 +26207,8 @@ Start a terminal-emulator in a new buffer. | |||
| 26204 | 26207 | ||
| 26205 | ;;;*** | 26208 | ;;;*** |
| 26206 | 26209 | ||
| 26207 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17851 | 26210 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17843 |
| 26208 | ;;;;;; 10845)) | 26211 | ;;;;;; 27863)) |
| 26209 | ;;; Generated autoloads from terminal.el | 26212 | ;;; Generated autoloads from terminal.el |
| 26210 | 26213 | ||
| 26211 | (autoload (quote terminal-emulator) "terminal" "\ | 26214 | (autoload (quote terminal-emulator) "terminal" "\ |
| @@ -26242,7 +26245,7 @@ subprocess started. | |||
| 26242 | ;;;*** | 26245 | ;;;*** |
| 26243 | 26246 | ||
| 26244 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" | 26247 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" |
| 26245 | ;;;;;; (17851 10853)) | 26248 | ;;;;;; (17843 27869)) |
| 26246 | ;;; Generated autoloads from emacs-lisp/testcover.el | 26249 | ;;; Generated autoloads from emacs-lisp/testcover.el |
| 26247 | 26250 | ||
| 26248 | (autoload (quote testcover-this-defun) "testcover" "\ | 26251 | (autoload (quote testcover-this-defun) "testcover" "\ |
| @@ -26283,7 +26286,7 @@ tetris-mode keybindings: | |||
| 26283 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command | 26286 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command |
| 26284 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp | 26287 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp |
| 26285 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" | 26288 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" |
| 26286 | ;;;;;; (17851 10873)) | 26289 | ;;;;;; (17843 27887)) |
| 26287 | ;;; Generated autoloads from textmodes/tex-mode.el | 26290 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 26288 | 26291 | ||
| 26289 | (defvar tex-shell-file-name nil "\ | 26292 | (defvar tex-shell-file-name nil "\ |
| @@ -26585,7 +26588,7 @@ Major mode to edit DocTeX files. | |||
| 26585 | ;;;*** | 26588 | ;;;*** |
| 26586 | 26589 | ||
| 26587 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) | 26590 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) |
| 26588 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (17851 10873)) | 26591 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (17843 27887)) |
| 26589 | ;;; Generated autoloads from textmodes/texinfmt.el | 26592 | ;;; Generated autoloads from textmodes/texinfmt.el |
| 26590 | 26593 | ||
| 26591 | (autoload (quote texinfo-format-buffer) "texinfmt" "\ | 26594 | (autoload (quote texinfo-format-buffer) "texinfmt" "\ |
| @@ -26625,7 +26628,7 @@ if large. You can use Info-split to do this manually. | |||
| 26625 | ;;;*** | 26628 | ;;;*** |
| 26626 | 26629 | ||
| 26627 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) | 26630 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) |
| 26628 | ;;;;;; "texinfo" "textmodes/texinfo.el" (17851 10873)) | 26631 | ;;;;;; "texinfo" "textmodes/texinfo.el" (17843 27887)) |
| 26629 | ;;; Generated autoloads from textmodes/texinfo.el | 26632 | ;;; Generated autoloads from textmodes/texinfo.el |
| 26630 | 26633 | ||
| 26631 | (defvar texinfo-open-quote "``" "\ | 26634 | (defvar texinfo-open-quote "``" "\ |
| @@ -26712,7 +26715,7 @@ value of `texinfo-mode-hook'. | |||
| 26712 | ;;;### (autoloads (thai-auto-composition-mode thai-composition-function | 26715 | ;;;### (autoloads (thai-auto-composition-mode thai-composition-function |
| 26713 | ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string | 26716 | ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string |
| 26714 | ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" | 26717 | ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" |
| 26715 | ;;;;;; (17851 10861)) | 26718 | ;;;;;; (17843 27877)) |
| 26716 | ;;; Generated autoloads from language/thai-util.el | 26719 | ;;; Generated autoloads from language/thai-util.el |
| 26717 | 26720 | ||
| 26718 | (autoload (quote thai-compose-region) "thai-util" "\ | 26721 | (autoload (quote thai-compose-region) "thai-util" "\ |
| @@ -26756,7 +26759,7 @@ Minor mode for automatically correct Thai character composition. | |||
| 26756 | 26759 | ||
| 26757 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point | 26760 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point |
| 26758 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) | 26761 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) |
| 26759 | ;;;;;; "thingatpt" "thingatpt.el" (17851 10845)) | 26762 | ;;;;;; "thingatpt" "thingatpt.el" (17843 27863)) |
| 26760 | ;;; Generated autoloads from thingatpt.el | 26763 | ;;; Generated autoloads from thingatpt.el |
| 26761 | 26764 | ||
| 26762 | (autoload (quote forward-thing) "thingatpt" "\ | 26765 | (autoload (quote forward-thing) "thingatpt" "\ |
| @@ -26813,7 +26816,7 @@ Not documented | |||
| 26813 | 26816 | ||
| 26814 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked | 26817 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked |
| 26815 | ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" | 26818 | ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" |
| 26816 | ;;;;;; (17851 10845)) | 26819 | ;;;;;; (17843 27864)) |
| 26817 | ;;; Generated autoloads from thumbs.el | 26820 | ;;; Generated autoloads from thumbs.el |
| 26818 | 26821 | ||
| 26819 | (autoload (quote thumbs-find-thumb) "thumbs" "\ | 26822 | (autoload (quote thumbs-find-thumb) "thumbs" "\ |
| @@ -26852,7 +26855,7 @@ In dired, call the setroot program on the image at point. | |||
| 26852 | ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region | 26855 | ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region |
| 26853 | ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan | 26856 | ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan |
| 26854 | ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" | 26857 | ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" |
| 26855 | ;;;;;; "language/tibet-util.el" (17851 10861)) | 26858 | ;;;;;; "language/tibet-util.el" (17843 27878)) |
| 26856 | ;;; Generated autoloads from language/tibet-util.el | 26859 | ;;; Generated autoloads from language/tibet-util.el |
| 26857 | 26860 | ||
| 26858 | (autoload (quote tibetan-char-p) "tibet-util" "\ | 26861 | (autoload (quote tibetan-char-p) "tibet-util" "\ |
| @@ -26931,7 +26934,7 @@ Not documented | |||
| 26931 | ;;;*** | 26934 | ;;;*** |
| 26932 | 26935 | ||
| 26933 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" | 26936 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" |
| 26934 | ;;;;;; (17851 10873)) | 26937 | ;;;;;; (17843 27887)) |
| 26935 | ;;; Generated autoloads from textmodes/tildify.el | 26938 | ;;; Generated autoloads from textmodes/tildify.el |
| 26936 | 26939 | ||
| 26937 | (autoload (quote tildify-region) "tildify" "\ | 26940 | (autoload (quote tildify-region) "tildify" "\ |
| @@ -26955,7 +26958,7 @@ This function performs no refilling of the changed text. | |||
| 26955 | ;;;*** | 26958 | ;;;*** |
| 26956 | 26959 | ||
| 26957 | ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) | 26960 | ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) |
| 26958 | ;;;;;; "time" "time.el" (17851 10845)) | 26961 | ;;;;;; "time" "time.el" (17843 27864)) |
| 26959 | ;;; Generated autoloads from time.el | 26962 | ;;; Generated autoloads from time.el |
| 26960 | 26963 | ||
| 26961 | (defvar display-time-day-and-date nil "\ | 26964 | (defvar display-time-day-and-date nil "\ |
| @@ -26997,8 +27000,8 @@ This runs the normal hook `display-time-hook' after each update. | |||
| 26997 | ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year | 27000 | ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year |
| 26998 | ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract | 27001 | ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract |
| 26999 | ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds | 27002 | ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds |
| 27000 | ;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17851 | 27003 | ;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17843 |
| 27001 | ;;;;;; 10852)) | 27004 | ;;;;;; 27868)) |
| 27002 | ;;; Generated autoloads from calendar/time-date.el | 27005 | ;;; Generated autoloads from calendar/time-date.el |
| 27003 | 27006 | ||
| 27004 | (autoload (quote date-to-time) "time-date" "\ | 27007 | (autoload (quote date-to-time) "time-date" "\ |
| @@ -27084,7 +27087,7 @@ If DATE is malformed, return a time value of zeros. | |||
| 27084 | ;;;*** | 27087 | ;;;*** |
| 27085 | 27088 | ||
| 27086 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" | 27089 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" |
| 27087 | ;;;;;; "time-stamp.el" (17851 10845)) | 27090 | ;;;;;; "time-stamp.el" (17843 27864)) |
| 27088 | ;;; Generated autoloads from time-stamp.el | 27091 | ;;; Generated autoloads from time-stamp.el |
| 27089 | (put 'time-stamp-format 'safe-local-variable 'stringp) | 27092 | (put 'time-stamp-format 'safe-local-variable 'stringp) |
| 27090 | (put 'time-stamp-line-limit 'safe-local-variable 'integerp) | 27093 | (put 'time-stamp-line-limit 'safe-local-variable 'integerp) |
| @@ -27127,7 +27130,7 @@ With ARG, turn time stamping on if and only if arg is positive. | |||
| 27127 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out | 27130 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out |
| 27128 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in | 27131 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in |
| 27129 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" | 27132 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" |
| 27130 | ;;;;;; (17851 10852)) | 27133 | ;;;;;; (17843 27868)) |
| 27131 | ;;; Generated autoloads from calendar/timeclock.el | 27134 | ;;; Generated autoloads from calendar/timeclock.el |
| 27132 | 27135 | ||
| 27133 | (autoload (quote timeclock-modeline-display) "timeclock" "\ | 27136 | (autoload (quote timeclock-modeline-display) "timeclock" "\ |
| @@ -27228,7 +27231,7 @@ relative only to the time worked today, and not to past time. | |||
| 27228 | 27231 | ||
| 27229 | ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer | 27232 | ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer |
| 27230 | ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" | 27233 | ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" |
| 27231 | ;;;;;; "emacs-lisp/timer.el" (17851 10853)) | 27234 | ;;;;;; "emacs-lisp/timer.el" (17843 27869)) |
| 27232 | ;;; Generated autoloads from emacs-lisp/timer.el | 27235 | ;;; Generated autoloads from emacs-lisp/timer.el |
| 27233 | 27236 | ||
| 27234 | (defalias (quote disable-timeout) (quote cancel-timer)) | 27237 | (defalias (quote disable-timeout) (quote cancel-timer)) |
| @@ -27327,8 +27330,8 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". | |||
| 27327 | ;;;*** | 27330 | ;;;*** |
| 27328 | 27331 | ||
| 27329 | ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion | 27332 | ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion |
| 27330 | ;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17851 | 27333 | ;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17843 |
| 27331 | ;;;;;; 10861)) | 27334 | ;;;;;; 27878)) |
| 27332 | ;;; Generated autoloads from language/tml-util.el | 27335 | ;;; Generated autoloads from language/tml-util.el |
| 27333 | 27336 | ||
| 27334 | (autoload (quote tamil-compose-region) "tml-util" "\ | 27337 | (autoload (quote tamil-compose-region) "tml-util" "\ |
| @@ -27351,7 +27354,7 @@ PATTERN regexp. | |||
| 27351 | ;;;*** | 27354 | ;;;*** |
| 27352 | 27355 | ||
| 27353 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" | 27356 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" |
| 27354 | ;;;;;; "tmm.el" (17851 10845)) | 27357 | ;;;;;; "tmm.el" (17843 27864)) |
| 27355 | ;;; Generated autoloads from tmm.el | 27358 | ;;; Generated autoloads from tmm.el |
| 27356 | (define-key global-map "\M-`" 'tmm-menubar) | 27359 | (define-key global-map "\M-`" 'tmm-menubar) |
| 27357 | (define-key global-map [f10] 'tmm-menubar) | 27360 | (define-key global-map [f10] 'tmm-menubar) |
| @@ -27392,7 +27395,7 @@ Its value should be an event that has a binding in MENU. | |||
| 27392 | 27395 | ||
| 27393 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities | 27396 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities |
| 27394 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) | 27397 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) |
| 27395 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (17851 10852)) | 27398 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (17843 27868)) |
| 27396 | ;;; Generated autoloads from calendar/todo-mode.el | 27399 | ;;; Generated autoloads from calendar/todo-mode.el |
| 27397 | 27400 | ||
| 27398 | (autoload (quote todo-add-category) "todo-mode" "\ | 27401 | (autoload (quote todo-add-category) "todo-mode" "\ |
| @@ -27453,7 +27456,7 @@ Show TODO list. | |||
| 27453 | 27456 | ||
| 27454 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu | 27457 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu |
| 27455 | ;;;;;; tool-bar-local-item tool-bar-add-item) "tool-bar" "tool-bar.el" | 27458 | ;;;;;; tool-bar-local-item tool-bar-add-item) "tool-bar" "tool-bar.el" |
| 27456 | ;;;;;; (17851 10845)) | 27459 | ;;;;;; (17843 27864)) |
| 27457 | ;;; Generated autoloads from tool-bar.el | 27460 | ;;; Generated autoloads from tool-bar.el |
| 27458 | 27461 | ||
| 27459 | (put (quote tool-bar-mode) (quote standard-value) (quote (t))) | 27462 | (put (quote tool-bar-mode) (quote standard-value) (quote (t))) |
| @@ -27520,7 +27523,7 @@ holds a keymap. | |||
| 27520 | ;;;*** | 27523 | ;;;*** |
| 27521 | 27524 | ||
| 27522 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" | 27525 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" |
| 27523 | ;;;;;; (17851 10853)) | 27526 | ;;;;;; (17843 27870)) |
| 27524 | ;;; Generated autoloads from emulation/tpu-edt.el | 27527 | ;;; Generated autoloads from emulation/tpu-edt.el |
| 27525 | 27528 | ||
| 27526 | (defvar tpu-edt-mode nil "\ | 27529 | (defvar tpu-edt-mode nil "\ |
| @@ -27547,7 +27550,7 @@ Turn on TPU/edt emulation. | |||
| 27547 | ;;;*** | 27550 | ;;;*** |
| 27548 | 27551 | ||
| 27549 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) | 27552 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) |
| 27550 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17851 10853)) | 27553 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17843 27870)) |
| 27551 | ;;; Generated autoloads from emulation/tpu-extras.el | 27554 | ;;; Generated autoloads from emulation/tpu-extras.el |
| 27552 | 27555 | ||
| 27553 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ | 27556 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ |
| @@ -27567,7 +27570,7 @@ Constrain the cursor to the flow of the text. | |||
| 27567 | 27570 | ||
| 27568 | ;;;*** | 27571 | ;;;*** |
| 27569 | 27572 | ||
| 27570 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17851 10853)) | 27573 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17843 27869)) |
| 27571 | ;;; Generated autoloads from emacs-lisp/tq.el | 27574 | ;;; Generated autoloads from emacs-lisp/tq.el |
| 27572 | 27575 | ||
| 27573 | (autoload (quote tq-create) "tq" "\ | 27576 | (autoload (quote tq-create) "tq" "\ |
| @@ -27581,7 +27584,7 @@ to a tcp server on another machine. | |||
| 27581 | ;;;*** | 27584 | ;;;*** |
| 27582 | 27585 | ||
| 27583 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) | 27586 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) |
| 27584 | ;;;;;; "trace" "emacs-lisp/trace.el" (17851 10853)) | 27587 | ;;;;;; "trace" "emacs-lisp/trace.el" (17843 27869)) |
| 27585 | ;;; Generated autoloads from emacs-lisp/trace.el | 27588 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 27586 | 27589 | ||
| 27587 | (defvar trace-buffer "*trace-output*" "\ | 27590 | (defvar trace-buffer "*trace-output*" "\ |
| @@ -27618,7 +27621,7 @@ BUFFER defaults to `trace-buffer'. | |||
| 27618 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion | 27621 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion |
| 27619 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers | 27622 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers |
| 27620 | ;;;;;; tramp-file-name-handler tramp-completion-file-name-regexp | 27623 | ;;;;;; tramp-file-name-handler tramp-completion-file-name-regexp |
| 27621 | ;;;;;; tramp-file-name-regexp) "tramp" "net/tramp.el" (17872 44165)) | 27624 | ;;;;;; tramp-file-name-regexp) "tramp" "net/tramp.el" (17893 65071)) |
| 27622 | ;;; Generated autoloads from net/tramp.el | 27625 | ;;; Generated autoloads from net/tramp.el |
| 27623 | 27626 | ||
| 27624 | (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ | 27627 | (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ |
| @@ -27731,7 +27734,7 @@ Discard Tramp from loading remote files. | |||
| 27731 | ;;;*** | 27734 | ;;;*** |
| 27732 | 27735 | ||
| 27733 | ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" | 27736 | ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" |
| 27734 | ;;;;;; (17851 10864)) | 27737 | ;;;;;; (17843 27879)) |
| 27735 | ;;; Generated autoloads from net/tramp-ftp.el | 27738 | ;;; Generated autoloads from net/tramp-ftp.el |
| 27736 | 27739 | ||
| 27737 | (autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ | 27740 | (autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ |
| @@ -27746,8 +27749,8 @@ Not documented | |||
| 27746 | ;;;;;; tumme-display-thumb tumme-display-thumbs-append tumme-setup-dired-keybindings | 27749 | ;;;;;; tumme-display-thumb tumme-display-thumbs-append tumme-setup-dired-keybindings |
| 27747 | ;;;;;; tumme-jump-thumbnail-buffer tumme-delete-tag tumme-tag-files | 27750 | ;;;;;; tumme-jump-thumbnail-buffer tumme-delete-tag tumme-tag-files |
| 27748 | ;;;;;; tumme-show-all-from-dir tumme-display-thumbs tumme-dired-with-window-configuration | 27751 | ;;;;;; tumme-show-all-from-dir tumme-display-thumbs tumme-dired-with-window-configuration |
| 27749 | ;;;;;; tumme-dired-insert-marked-thumbs) "tumme" "tumme.el" (17851 | 27752 | ;;;;;; tumme-dired-insert-marked-thumbs) "tumme" "tumme.el" (17843 |
| 27750 | ;;;;;; 10847)) | 27753 | ;;;;;; 27864)) |
| 27751 | ;;; Generated autoloads from tumme.el | 27754 | ;;; Generated autoloads from tumme.el |
| 27752 | 27755 | ||
| 27753 | (autoload (quote tumme-dired-insert-marked-thumbs) "tumme" "\ | 27756 | (autoload (quote tumme-dired-insert-marked-thumbs) "tumme" "\ |
| @@ -27877,8 +27880,8 @@ easy-to-use form. | |||
| 27877 | 27880 | ||
| 27878 | ;;;*** | 27881 | ;;;*** |
| 27879 | 27882 | ||
| 27880 | ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (17856 | 27883 | ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (17893 |
| 27881 | ;;;;;; 1486)) | 27884 | ;;;;;; 52880)) |
| 27882 | ;;; Generated autoloads from tutorial.el | 27885 | ;;; Generated autoloads from tutorial.el |
| 27883 | 27886 | ||
| 27884 | (autoload (quote help-with-tutorial) "tutorial" "\ | 27887 | (autoload (quote help-with-tutorial) "tutorial" "\ |
| @@ -27903,7 +27906,7 @@ resumed later. | |||
| 27903 | ;;;*** | 27906 | ;;;*** |
| 27904 | 27907 | ||
| 27905 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" | 27908 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" |
| 27906 | ;;;;;; "textmodes/two-column.el" (17851 10873)) | 27909 | ;;;;;; "textmodes/two-column.el" (17843 27887)) |
| 27907 | ;;; Generated autoloads from textmodes/two-column.el | 27910 | ;;; Generated autoloads from textmodes/two-column.el |
| 27908 | (autoload '2C-command "two-column" () t 'keymap) | 27911 | (autoload '2C-command "two-column" () t 'keymap) |
| 27909 | (global-set-key "\C-x6" '2C-command) | 27912 | (global-set-key "\C-x6" '2C-command) |
| @@ -28137,7 +28140,7 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 28137 | ;;;*** | 28140 | ;;;*** |
| 28138 | 28141 | ||
| 28139 | ;;;### (autoloads (ununderline-region underline-region) "underline" | 28142 | ;;;### (autoloads (ununderline-region underline-region) "underline" |
| 28140 | ;;;;;; "textmodes/underline.el" (17851 10873)) | 28143 | ;;;;;; "textmodes/underline.el" (17843 27887)) |
| 28141 | ;;; Generated autoloads from textmodes/underline.el | 28144 | ;;; Generated autoloads from textmodes/underline.el |
| 28142 | 28145 | ||
| 28143 | (autoload (quote underline-region) "underline" "\ | 28146 | (autoload (quote underline-region) "underline" "\ |
| @@ -28158,7 +28161,7 @@ which specify the range to operate on. | |||
| 28158 | ;;;*** | 28161 | ;;;*** |
| 28159 | 28162 | ||
| 28160 | ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) | 28163 | ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) |
| 28161 | ;;;;;; "undigest" "mail/undigest.el" (17851 10862)) | 28164 | ;;;;;; "undigest" "mail/undigest.el" (17843 27878)) |
| 28162 | ;;; Generated autoloads from mail/undigest.el | 28165 | ;;; Generated autoloads from mail/undigest.el |
| 28163 | 28166 | ||
| 28164 | (autoload (quote undigestify-rmail-message) "undigest" "\ | 28167 | (autoload (quote undigestify-rmail-message) "undigest" "\ |
| @@ -28177,7 +28180,7 @@ following the containing message. | |||
| 28177 | ;;;*** | 28180 | ;;;*** |
| 28178 | 28181 | ||
| 28179 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" | 28182 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" |
| 28180 | ;;;;;; (17851 10862)) | 28183 | ;;;;;; (17843 27878)) |
| 28181 | ;;; Generated autoloads from mail/unrmail.el | 28184 | ;;; Generated autoloads from mail/unrmail.el |
| 28182 | 28185 | ||
| 28183 | (autoload (quote batch-unrmail) "unrmail" "\ | 28186 | (autoload (quote batch-unrmail) "unrmail" "\ |
| @@ -28196,8 +28199,8 @@ Convert Rmail file FILE to system inbox format file TO-FILE. | |||
| 28196 | 28199 | ||
| 28197 | ;;;*** | 28200 | ;;;*** |
| 28198 | 28201 | ||
| 28199 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17851 | 28202 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17843 |
| 28200 | ;;;;;; 10853)) | 28203 | ;;;;;; 27869)) |
| 28201 | ;;; Generated autoloads from emacs-lisp/unsafep.el | 28204 | ;;; Generated autoloads from emacs-lisp/unsafep.el |
| 28202 | 28205 | ||
| 28203 | (autoload (quote unsafep) "unsafep" "\ | 28206 | (autoload (quote unsafep) "unsafep" "\ |
| @@ -28210,7 +28213,7 @@ of symbols with local bindings. | |||
| 28210 | ;;;*** | 28213 | ;;;*** |
| 28211 | 28214 | ||
| 28212 | ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" | 28215 | ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" |
| 28213 | ;;;;;; "url/url.el" (17851 10875)) | 28216 | ;;;;;; "url/url.el" (17843 27888)) |
| 28214 | ;;; Generated autoloads from url/url.el | 28217 | ;;; Generated autoloads from url/url.el |
| 28215 | 28218 | ||
| 28216 | (autoload (quote url-retrieve) "url" "\ | 28219 | (autoload (quote url-retrieve) "url" "\ |
| @@ -28292,8 +28295,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. | |||
| 28292 | ;;;*** | 28295 | ;;;*** |
| 28293 | 28296 | ||
| 28294 | ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached | 28297 | ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached |
| 28295 | ;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17851 | 28298 | ;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17843 |
| 28296 | ;;;;;; 10873)) | 28299 | ;;;;;; 27887)) |
| 28297 | ;;; Generated autoloads from url/url-cache.el | 28300 | ;;; Generated autoloads from url/url-cache.el |
| 28298 | 28301 | ||
| 28299 | (autoload (quote url-store-in-cache) "url-cache" "\ | 28302 | (autoload (quote url-store-in-cache) "url-cache" "\ |
| @@ -28318,7 +28321,7 @@ Return t iff a cached file has expired. | |||
| 28318 | 28321 | ||
| 28319 | ;;;*** | 28322 | ;;;*** |
| 28320 | 28323 | ||
| 28321 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17851 10873)) | 28324 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17843 27887)) |
| 28322 | ;;; Generated autoloads from url/url-cid.el | 28325 | ;;; Generated autoloads from url/url-cid.el |
| 28323 | 28326 | ||
| 28324 | (autoload (quote url-cid) "url-cid" "\ | 28327 | (autoload (quote url-cid) "url-cid" "\ |
| @@ -28329,7 +28332,7 @@ Not documented | |||
| 28329 | ;;;*** | 28332 | ;;;*** |
| 28330 | 28333 | ||
| 28331 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" | 28334 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" |
| 28332 | ;;;;;; "url/url-dav.el" (17851 10873)) | 28335 | ;;;;;; "url/url-dav.el" (17843 27887)) |
| 28333 | ;;; Generated autoloads from url/url-dav.el | 28336 | ;;; Generated autoloads from url/url-dav.el |
| 28334 | 28337 | ||
| 28335 | (autoload (quote url-dav-supported-p) "url-dav" "\ | 28338 | (autoload (quote url-dav-supported-p) "url-dav" "\ |
| @@ -28344,8 +28347,8 @@ Not documented | |||
| 28344 | 28347 | ||
| 28345 | ;;;*** | 28348 | ;;;*** |
| 28346 | 28349 | ||
| 28347 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17851 | 28350 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17843 |
| 28348 | ;;;;;; 10873)) | 28351 | ;;;;;; 27887)) |
| 28349 | ;;; Generated autoloads from url/url-file.el | 28352 | ;;; Generated autoloads from url/url-file.el |
| 28350 | 28353 | ||
| 28351 | (autoload (quote url-file) "url-file" "\ | 28354 | (autoload (quote url-file) "url-file" "\ |
| @@ -28356,7 +28359,7 @@ Handle file: and ftp: URLs. | |||
| 28356 | ;;;*** | 28359 | ;;;*** |
| 28357 | 28360 | ||
| 28358 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" | 28361 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" |
| 28359 | ;;;;;; "url/url-gw.el" (17851 10873)) | 28362 | ;;;;;; "url/url-gw.el" (17843 27887)) |
| 28360 | ;;; Generated autoloads from url/url-gw.el | 28363 | ;;; Generated autoloads from url/url-gw.el |
| 28361 | 28364 | ||
| 28362 | (autoload (quote url-gateway-nslookup-host) "url-gw" "\ | 28365 | (autoload (quote url-gateway-nslookup-host) "url-gw" "\ |
| @@ -28375,8 +28378,8 @@ Might do a non-blocking connection; use `process-status' to check. | |||
| 28375 | ;;;*** | 28378 | ;;;*** |
| 28376 | 28379 | ||
| 28377 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file | 28380 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file |
| 28378 | ;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17851 | 28381 | ;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17843 |
| 28379 | ;;;;;; 10873)) | 28382 | ;;;;;; 27887)) |
| 28380 | ;;; Generated autoloads from url/url-handlers.el | 28383 | ;;; Generated autoloads from url/url-handlers.el |
| 28381 | 28384 | ||
| 28382 | (defvar url-handler-mode nil "\ | 28385 | (defvar url-handler-mode nil "\ |
| @@ -28485,7 +28488,7 @@ HTTPS retrievals are asynchronous.") | |||
| 28485 | 28488 | ||
| 28486 | ;;;*** | 28489 | ;;;*** |
| 28487 | 28490 | ||
| 28488 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17851 10873)) | 28491 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17843 27888)) |
| 28489 | ;;; Generated autoloads from url/url-irc.el | 28492 | ;;; Generated autoloads from url/url-irc.el |
| 28490 | 28493 | ||
| 28491 | (autoload (quote url-irc) "url-irc" "\ | 28494 | (autoload (quote url-irc) "url-irc" "\ |
| @@ -28495,8 +28498,8 @@ Not documented | |||
| 28495 | 28498 | ||
| 28496 | ;;;*** | 28499 | ;;;*** |
| 28497 | 28500 | ||
| 28498 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17851 | 28501 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17843 |
| 28499 | ;;;;;; 10873)) | 28502 | ;;;;;; 27888)) |
| 28500 | ;;; Generated autoloads from url/url-ldap.el | 28503 | ;;; Generated autoloads from url/url-ldap.el |
| 28501 | 28504 | ||
| 28502 | (autoload (quote url-ldap) "url-ldap" "\ | 28505 | (autoload (quote url-ldap) "url-ldap" "\ |
| @@ -28510,7 +28513,7 @@ URL can be a URL string, or a URL vector of the type returned by | |||
| 28510 | ;;;*** | 28513 | ;;;*** |
| 28511 | 28514 | ||
| 28512 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" | 28515 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" |
| 28513 | ;;;;;; (17851 10874)) | 28516 | ;;;;;; (17843 27888)) |
| 28514 | ;;; Generated autoloads from url/url-mailto.el | 28517 | ;;; Generated autoloads from url/url-mailto.el |
| 28515 | 28518 | ||
| 28516 | (autoload (quote url-mail) "url-mailto" "\ | 28519 | (autoload (quote url-mail) "url-mailto" "\ |
| @@ -28526,7 +28529,7 @@ Handle the mailto: URL syntax. | |||
| 28526 | ;;;*** | 28529 | ;;;*** |
| 28527 | 28530 | ||
| 28528 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info | 28531 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info |
| 28529 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (17851 10874)) | 28532 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (17843 27888)) |
| 28530 | ;;; Generated autoloads from url/url-misc.el | 28533 | ;;; Generated autoloads from url/url-misc.el |
| 28531 | 28534 | ||
| 28532 | (autoload (quote url-man) "url-misc" "\ | 28535 | (autoload (quote url-man) "url-misc" "\ |
| @@ -28558,7 +28561,7 @@ Fetch a data URL (RFC 2397). | |||
| 28558 | ;;;*** | 28561 | ;;;*** |
| 28559 | 28562 | ||
| 28560 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" | 28563 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" |
| 28561 | ;;;;;; (17851 10874)) | 28564 | ;;;;;; (17843 27888)) |
| 28562 | ;;; Generated autoloads from url/url-news.el | 28565 | ;;; Generated autoloads from url/url-news.el |
| 28563 | 28566 | ||
| 28564 | (autoload (quote url-news) "url-news" "\ | 28567 | (autoload (quote url-news) "url-news" "\ |
| @@ -28575,7 +28578,7 @@ Not documented | |||
| 28575 | 28578 | ||
| 28576 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable | 28579 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable |
| 28577 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" | 28580 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" |
| 28578 | ;;;;;; (17851 10874)) | 28581 | ;;;;;; (17843 27888)) |
| 28579 | ;;; Generated autoloads from url/url-ns.el | 28582 | ;;; Generated autoloads from url/url-ns.el |
| 28580 | 28583 | ||
| 28581 | (autoload (quote isPlainHostName) "url-ns" "\ | 28584 | (autoload (quote isPlainHostName) "url-ns" "\ |
| @@ -28616,7 +28619,7 @@ Not documented | |||
| 28616 | ;;;*** | 28619 | ;;;*** |
| 28617 | 28620 | ||
| 28618 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" | 28621 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" |
| 28619 | ;;;;;; "url/url-parse.el" (17851 10874)) | 28622 | ;;;;;; "url/url-parse.el" (17843 27888)) |
| 28620 | ;;; Generated autoloads from url/url-parse.el | 28623 | ;;; Generated autoloads from url/url-parse.el |
| 28621 | 28624 | ||
| 28622 | (autoload (quote url-recreate-url) "url-parse" "\ | 28625 | (autoload (quote url-recreate-url) "url-parse" "\ |
| @@ -28634,7 +28637,7 @@ Format is: | |||
| 28634 | ;;;*** | 28637 | ;;;*** |
| 28635 | 28638 | ||
| 28636 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" | 28639 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" |
| 28637 | ;;;;;; (17851 10874)) | 28640 | ;;;;;; (17843 27888)) |
| 28638 | ;;; Generated autoloads from url/url-privacy.el | 28641 | ;;; Generated autoloads from url/url-privacy.el |
| 28639 | 28642 | ||
| 28640 | (autoload (quote url-setup-privacy-info) "url-privacy" "\ | 28643 | (autoload (quote url-setup-privacy-info) "url-privacy" "\ |
| @@ -28650,7 +28653,7 @@ Setup variables that expose info about you and your system. | |||
| 28650 | ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date | 28653 | ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date |
| 28651 | ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string | 28654 | ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string |
| 28652 | ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" | 28655 | ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" |
| 28653 | ;;;;;; (17851 10874)) | 28656 | ;;;;;; (17843 27888)) |
| 28654 | ;;; Generated autoloads from url/url-util.el | 28657 | ;;; Generated autoloads from url/url-util.el |
| 28655 | 28658 | ||
| 28656 | (defvar url-debug nil "\ | 28659 | (defvar url-debug nil "\ |
| @@ -28779,7 +28782,7 @@ This uses `url-current-object', set locally to the buffer. | |||
| 28779 | ;;;*** | 28782 | ;;;*** |
| 28780 | 28783 | ||
| 28781 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) | 28784 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) |
| 28782 | ;;;;;; "userlock" "userlock.el" (17851 10848)) | 28785 | ;;;;;; "userlock" "userlock.el" (17843 27864)) |
| 28783 | ;;; Generated autoloads from userlock.el | 28786 | ;;; Generated autoloads from userlock.el |
| 28784 | 28787 | ||
| 28785 | (autoload (quote ask-user-about-lock) "userlock" "\ | 28788 | (autoload (quote ask-user-about-lock) "userlock" "\ |
| @@ -28839,7 +28842,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 28839 | ;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window | 28842 | ;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window |
| 28840 | ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file | 28843 | ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file |
| 28841 | ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook | 28844 | ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook |
| 28842 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17851 10849)) | 28845 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17843 27865)) |
| 28843 | ;;; Generated autoloads from vc.el | 28846 | ;;; Generated autoloads from vc.el |
| 28844 | 28847 | ||
| 28845 | (defvar vc-checkout-hook nil "\ | 28848 | (defvar vc-checkout-hook nil "\ |
| @@ -29137,7 +29140,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29137 | 29140 | ||
| 29138 | ;;;*** | 29141 | ;;;*** |
| 29139 | 29142 | ||
| 29140 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17851 10848)) | 29143 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17843 27864)) |
| 29141 | ;;; Generated autoloads from vc-cvs.el | 29144 | ;;; Generated autoloads from vc-cvs.el |
| 29142 | (defun vc-cvs-registered (f) | 29145 | (defun vc-cvs-registered (f) |
| 29143 | (when (file-readable-p (expand-file-name | 29146 | (when (file-readable-p (expand-file-name |
| @@ -29147,7 +29150,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29147 | 29150 | ||
| 29148 | ;;;*** | 29151 | ;;;*** |
| 29149 | 29152 | ||
| 29150 | ;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17851 10848)) | 29153 | ;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17843 27864)) |
| 29151 | ;;; Generated autoloads from vc-mcvs.el | 29154 | ;;; Generated autoloads from vc-mcvs.el |
| 29152 | (defun vc-mcvs-registered (file) | 29155 | (defun vc-mcvs-registered (file) |
| 29153 | (if (vc-find-root file "MCVS/CVS") | 29156 | (if (vc-find-root file "MCVS/CVS") |
| @@ -29158,7 +29161,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29158 | ;;;*** | 29161 | ;;;*** |
| 29159 | 29162 | ||
| 29160 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" | 29163 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" |
| 29161 | ;;;;;; (17851 10848)) | 29164 | ;;;;;; (17843 27865)) |
| 29162 | ;;; Generated autoloads from vc-rcs.el | 29165 | ;;; Generated autoloads from vc-rcs.el |
| 29163 | 29166 | ||
| 29164 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 29167 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -29171,7 +29174,7 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29171 | ;;;*** | 29174 | ;;;*** |
| 29172 | 29175 | ||
| 29173 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" | 29176 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" |
| 29174 | ;;;;;; (17851 10848)) | 29177 | ;;;;;; (17843 27865)) |
| 29175 | ;;; Generated autoloads from vc-sccs.el | 29178 | ;;; Generated autoloads from vc-sccs.el |
| 29176 | 29179 | ||
| 29177 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 29180 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -29747,7 +29750,7 @@ Key bindings: | |||
| 29747 | 29750 | ||
| 29748 | ;;;*** | 29751 | ;;;*** |
| 29749 | 29752 | ||
| 29750 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17806 44346)) | 29753 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17796 47944)) |
| 29751 | ;;; Generated autoloads from emulation/vi.el | 29754 | ;;; Generated autoloads from emulation/vi.el |
| 29752 | 29755 | ||
| 29753 | (autoload (quote vi-mode) "vi" "\ | 29756 | (autoload (quote vi-mode) "vi" "\ |
| @@ -29802,7 +29805,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. | |||
| 29802 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion | 29805 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion |
| 29803 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer | 29806 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer |
| 29804 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" | 29807 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" |
| 29805 | ;;;;;; "language/viet-util.el" (17851 10861)) | 29808 | ;;;;;; "language/viet-util.el" (17843 27878)) |
| 29806 | ;;; Generated autoloads from language/viet-util.el | 29809 | ;;; Generated autoloads from language/viet-util.el |
| 29807 | 29810 | ||
| 29808 | (autoload (quote viet-encode-viscii-char) "viet-util" "\ | 29811 | (autoload (quote viet-encode-viscii-char) "viet-util" "\ |
| @@ -29848,8 +29851,8 @@ Not documented | |||
| 29848 | 29851 | ||
| 29849 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame | 29852 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame |
| 29850 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame | 29853 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame |
| 29851 | ;;;;;; view-file-other-window view-file) "view" "view.el" (17851 | 29854 | ;;;;;; view-file-other-window view-file) "view" "view.el" (17843 |
| 29852 | ;;;;;; 10849)) | 29855 | ;;;;;; 27865)) |
| 29853 | ;;; Generated autoloads from view.el | 29856 | ;;; Generated autoloads from view.el |
| 29854 | 29857 | ||
| 29855 | (defvar view-mode nil "\ | 29858 | (defvar view-mode nil "\ |
| @@ -30058,8 +30061,8 @@ Exit View mode and make the current buffer editable. | |||
| 30058 | 30061 | ||
| 30059 | ;;;*** | 30062 | ;;;*** |
| 30060 | 30063 | ||
| 30061 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17851 | 30064 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17843 |
| 30062 | ;;;;;; 10854)) | 30065 | ;;;;;; 27870)) |
| 30063 | ;;; Generated autoloads from emulation/vip.el | 30066 | ;;; Generated autoloads from emulation/vip.el |
| 30064 | 30067 | ||
| 30065 | (autoload (quote vip-setup) "vip" "\ | 30068 | (autoload (quote vip-setup) "vip" "\ |
| @@ -30092,7 +30095,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. | |||
| 30092 | ;;;*** | 30095 | ;;;*** |
| 30093 | 30096 | ||
| 30094 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" | 30097 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" |
| 30095 | ;;;;;; (17851 10853)) | 30098 | ;;;;;; (17843 27869)) |
| 30096 | ;;; Generated autoloads from emacs-lisp/warnings.el | 30099 | ;;; Generated autoloads from emacs-lisp/warnings.el |
| 30097 | 30100 | ||
| 30098 | (defvar warning-prefix-function nil "\ | 30101 | (defvar warning-prefix-function nil "\ |
| @@ -30197,7 +30200,7 @@ See `wdired-mode'. | |||
| 30197 | 30200 | ||
| 30198 | ;;;*** | 30201 | ;;;*** |
| 30199 | 30202 | ||
| 30200 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17851 10865)) | 30203 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17843 27879)) |
| 30201 | ;;; Generated autoloads from net/webjump.el | 30204 | ;;; Generated autoloads from net/webjump.el |
| 30202 | 30205 | ||
| 30203 | (autoload (quote webjump) "webjump" "\ | 30206 | (autoload (quote webjump) "webjump" "\ |
| @@ -30214,7 +30217,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 30214 | ;;;*** | 30217 | ;;;*** |
| 30215 | 30218 | ||
| 30216 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" | 30219 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" |
| 30217 | ;;;;;; (17851 10871)) | 30220 | ;;;;;; (17843 27884)) |
| 30218 | ;;; Generated autoloads from progmodes/which-func.el | 30221 | ;;; Generated autoloads from progmodes/which-func.el |
| 30219 | (put 'which-func-format 'risky-local-variable t) | 30222 | (put 'which-func-format 'risky-local-variable t) |
| 30220 | (put 'which-func-current 'risky-local-variable t) | 30223 | (put 'which-func-current 'risky-local-variable t) |
| @@ -30247,7 +30250,7 @@ and off otherwise. | |||
| 30247 | ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check | 30250 | ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check |
| 30248 | ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check | 30251 | ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check |
| 30249 | ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" | 30252 | ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" |
| 30250 | ;;;;;; (17851 10849)) | 30253 | ;;;;;; (17843 27866)) |
| 30251 | ;;; Generated autoloads from whitespace.el | 30254 | ;;; Generated autoloads from whitespace.el |
| 30252 | 30255 | ||
| 30253 | (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ | 30256 | (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ |
| @@ -30338,7 +30341,7 @@ This is meant to be added buffer-locally to `write-file-functions'. | |||
| 30338 | ;;;*** | 30341 | ;;;*** |
| 30339 | 30342 | ||
| 30340 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse | 30343 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse |
| 30341 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17851 10849)) | 30344 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17843 27866)) |
| 30342 | ;;; Generated autoloads from wid-browse.el | 30345 | ;;; Generated autoloads from wid-browse.el |
| 30343 | 30346 | ||
| 30344 | (autoload (quote widget-browse-at) "wid-browse" "\ | 30347 | (autoload (quote widget-browse-at) "wid-browse" "\ |
| @@ -30410,8 +30413,8 @@ Setup current buffer so editing string widgets works. | |||
| 30410 | ;;;*** | 30413 | ;;;*** |
| 30411 | 30414 | ||
| 30412 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right | 30415 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right |
| 30413 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17851 | 30416 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17843 |
| 30414 | ;;;;;; 10849)) | 30417 | ;;;;;; 27866)) |
| 30415 | ;;; Generated autoloads from windmove.el | 30418 | ;;; Generated autoloads from windmove.el |
| 30416 | 30419 | ||
| 30417 | (autoload (quote windmove-left) "windmove" "\ | 30420 | (autoload (quote windmove-left) "windmove" "\ |
| @@ -30464,7 +30467,7 @@ Default MODIFIER is 'shift. | |||
| 30464 | ;;;*** | 30467 | ;;;*** |
| 30465 | 30468 | ||
| 30466 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" | 30469 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" |
| 30467 | ;;;;;; (17851 10849)) | 30470 | ;;;;;; (17843 27866)) |
| 30468 | ;;; Generated autoloads from winner.el | 30471 | ;;; Generated autoloads from winner.el |
| 30469 | 30472 | ||
| 30470 | (defvar winner-mode nil "\ | 30473 | (defvar winner-mode nil "\ |
| @@ -30483,7 +30486,7 @@ With arg, turn Winner mode on if and only if arg is positive. | |||
| 30483 | ;;;*** | 30486 | ;;;*** |
| 30484 | 30487 | ||
| 30485 | ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" | 30488 | ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" |
| 30486 | ;;;;;; "woman.el" (17851 10849)) | 30489 | ;;;;;; "woman.el" (17843 27866)) |
| 30487 | ;;; Generated autoloads from woman.el | 30490 | ;;; Generated autoloads from woman.el |
| 30488 | 30491 | ||
| 30489 | (autoload (quote woman) "woman" "\ | 30492 | (autoload (quote woman) "woman" "\ |
| @@ -30519,7 +30522,7 @@ decompress the file if appropriate. See the documentation for the | |||
| 30519 | ;;;*** | 30522 | ;;;*** |
| 30520 | 30523 | ||
| 30521 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" | 30524 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" |
| 30522 | ;;;;;; (17851 10854)) | 30525 | ;;;;;; (17843 27870)) |
| 30523 | ;;; Generated autoloads from emulation/ws-mode.el | 30526 | ;;; Generated autoloads from emulation/ws-mode.el |
| 30524 | 30527 | ||
| 30525 | (autoload (quote wordstar-mode) "ws-mode" "\ | 30528 | (autoload (quote wordstar-mode) "ws-mode" "\ |
| @@ -30632,7 +30635,7 @@ The key bindings are: | |||
| 30632 | ;;;*** | 30635 | ;;;*** |
| 30633 | 30636 | ||
| 30634 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" | 30637 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" |
| 30635 | ;;;;;; (17851 10850)) | 30638 | ;;;;;; (17843 27867)) |
| 30636 | ;;; Generated autoloads from xml.el | 30639 | ;;; Generated autoloads from xml.el |
| 30637 | 30640 | ||
| 30638 | (autoload (quote xml-parse-file) "xml" "\ | 30641 | (autoload (quote xml-parse-file) "xml" "\ |
| @@ -30657,8 +30660,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. | |||
| 30657 | 30660 | ||
| 30658 | ;;;*** | 30661 | ;;;*** |
| 30659 | 30662 | ||
| 30660 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17851 | 30663 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17843 |
| 30661 | ;;;;;; 10850)) | 30664 | ;;;;;; 27867)) |
| 30662 | ;;; Generated autoloads from xt-mouse.el | 30665 | ;;; Generated autoloads from xt-mouse.el |
| 30663 | 30666 | ||
| 30664 | (defvar xterm-mouse-mode nil "\ | 30667 | (defvar xterm-mouse-mode nil "\ |
| @@ -30686,7 +30689,7 @@ down the SHIFT key while pressing the mouse button. | |||
| 30686 | ;;;*** | 30689 | ;;;*** |
| 30687 | 30690 | ||
| 30688 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" | 30691 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" |
| 30689 | ;;;;;; "gnus/yenc.el" (17851 10860)) | 30692 | ;;;;;; "gnus/yenc.el" (17843 27876)) |
| 30690 | ;;; Generated autoloads from gnus/yenc.el | 30693 | ;;; Generated autoloads from gnus/yenc.el |
| 30691 | 30694 | ||
| 30692 | (autoload (quote yenc-decode-region) "yenc" "\ | 30695 | (autoload (quote yenc-decode-region) "yenc" "\ |
| @@ -30702,7 +30705,7 @@ Extract file name from an yenc header. | |||
| 30702 | ;;;*** | 30705 | ;;;*** |
| 30703 | 30706 | ||
| 30704 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism | 30707 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism |
| 30705 | ;;;;;; yow) "yow" "play/yow.el" (17851 10866)) | 30708 | ;;;;;; yow) "yow" "play/yow.el" (17843 27880)) |
| 30706 | ;;; Generated autoloads from play/yow.el | 30709 | ;;; Generated autoloads from play/yow.el |
| 30707 | 30710 | ||
| 30708 | (autoload (quote yow) "yow" "\ | 30711 | (autoload (quote yow) "yow" "\ |
| @@ -30728,7 +30731,7 @@ Zippy goes to the analyst. | |||
| 30728 | 30731 | ||
| 30729 | ;;;*** | 30732 | ;;;*** |
| 30730 | 30733 | ||
| 30731 | ;;;### (autoloads (zone) "zone" "play/zone.el" (17851 10866)) | 30734 | ;;;### (autoloads (zone) "zone" "play/zone.el" (17843 27880)) |
| 30732 | ;;; Generated autoloads from play/zone.el | 30735 | ;;; Generated autoloads from play/zone.el |
| 30733 | 30736 | ||
| 30734 | (autoload (quote zone) "zone" "\ | 30737 | (autoload (quote zone) "zone" "\ |
| @@ -30868,7 +30871,7 @@ Zone out, completely. | |||
| 30868 | ;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" | 30871 | ;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" |
| 30869 | ;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" | 30872 | ;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" |
| 30870 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" | 30873 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" |
| 30871 | ;;;;;; "x-dnd.el") (17887 8772 360075)) | 30874 | ;;;;;; "x-dnd.el") (17895 22686 433097)) |
| 30872 | 30875 | ||
| 30873 | ;;;*** | 30876 | ;;;*** |
| 30874 | 30877 | ||
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index 1a2b8c31ef4..a5689e6f0ea 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el | |||
| @@ -514,7 +514,17 @@ FILE is created there." | |||
| 514 | 514 | ||
| 515 | (defun gamegrid-add-score-with-update-game-score-1 (file target score) | 515 | (defun gamegrid-add-score-with-update-game-score-1 (file target score) |
| 516 | (let ((default-directory "/") | 516 | (let ((default-directory "/") |
| 517 | (errbuf (generate-new-buffer " *update-game-score loss*"))) | 517 | (errbuf (generate-new-buffer " *update-game-score loss*")) |
| 518 | (marker-string (concat | ||
| 519 | (user-full-name) | ||
| 520 | " <" | ||
| 521 | (cond ((fboundp 'user-mail-address) | ||
| 522 | (user-mail-address)) | ||
| 523 | ((boundp 'user-mail-address) | ||
| 524 | user-mail-address) | ||
| 525 | (t "")) | ||
| 526 | "> " | ||
| 527 | (current-time-string)))) | ||
| 518 | ;; This can be called from a timer, so enable local quits. | 528 | ;; This can be called from a timer, so enable local quits. |
| 519 | (with-local-quit | 529 | (with-local-quit |
| 520 | (apply | 530 | (apply |
| @@ -529,28 +539,25 @@ FILE is created there." | |||
| 529 | (file-name-directory target)) | 539 | (file-name-directory target)) |
| 530 | file | 540 | file |
| 531 | (int-to-string score) | 541 | (int-to-string score) |
| 532 | (concat | 542 | marker-string)))) |
| 533 | (user-full-name) | ||
| 534 | " <" | ||
| 535 | (cond ((fboundp 'user-mail-address) | ||
| 536 | (user-mail-address)) | ||
| 537 | ((boundp 'user-mail-address) | ||
| 538 | user-mail-address) | ||
| 539 | (t "")) | ||
| 540 | "> " | ||
| 541 | (current-time-string)))))) | ||
| 542 | (if (buffer-modified-p errbuf) | 543 | (if (buffer-modified-p errbuf) |
| 543 | (progn | 544 | (progn |
| 544 | (display-buffer errbuf) | 545 | (display-buffer errbuf) |
| 545 | (error "Failed to update game score file")) | 546 | (error "Failed to update game score file")) |
| 546 | (kill-buffer errbuf)) | 547 | (kill-buffer errbuf)) |
| 547 | (let ((buf (find-buffer-visiting target))) | 548 | (let ((buf (find-buffer-visiting target))) |
| 548 | (if buf | 549 | (save-excursion |
| 549 | (progn | 550 | (if buf |
| 550 | (with-current-buffer buf | 551 | (progn |
| 551 | (revert-buffer nil t nil)) | 552 | (switch-to-buffer buf) |
| 552 | (display-buffer buf)) | 553 | (revert-buffer nil t nil) |
| 553 | (find-file-read-only-other-window target))))) | 554 | (display-buffer buf)) |
| 555 | (find-file-read-only target)) | ||
| 556 | (goto-char (point-min)) | ||
| 557 | (search-forward (concat (int-to-string score) | ||
| 558 | " " (user-login-name) " " | ||
| 559 | marker-string)) | ||
| 560 | (beginning-of-line))))) | ||
| 554 | 561 | ||
| 555 | (defun gamegrid-add-score-insecure (file score &optional directory) | 562 | (defun gamegrid-add-score-insecure (file score &optional directory) |
| 556 | (save-excursion | 563 | (save-excursion |
diff --git a/lisp/play/tetris.el b/lisp/play/tetris.el index 53305a08e66..f1901a129dd 100644 --- a/lisp/play/tetris.el +++ b/lisp/play/tetris.el | |||
| @@ -512,19 +512,21 @@ Drops the shape one square, testing for collision." | |||
| 512 | (defun tetris-move-bottom () | 512 | (defun tetris-move-bottom () |
| 513 | "Drops the shape to the bottom of the playing area" | 513 | "Drops the shape to the bottom of the playing area" |
| 514 | (interactive) | 514 | (interactive) |
| 515 | (let ((hit nil)) | 515 | (if (not tetris-paused) |
| 516 | (tetris-erase-shape) | 516 | (let ((hit nil)) |
| 517 | (while (not hit) | 517 | (tetris-erase-shape) |
| 518 | (setq tetris-pos-y (1+ tetris-pos-y)) | 518 | (while (not hit) |
| 519 | (setq hit (tetris-test-shape))) | 519 | (setq tetris-pos-y (1+ tetris-pos-y)) |
| 520 | (setq tetris-pos-y (1- tetris-pos-y)) | 520 | (setq hit (tetris-test-shape))) |
| 521 | (tetris-draw-shape) | 521 | (setq tetris-pos-y (1- tetris-pos-y)) |
| 522 | (tetris-shape-done))) | 522 | (tetris-draw-shape) |
| 523 | (tetris-shape-done)))) | ||
| 523 | 524 | ||
| 524 | (defun tetris-move-left () | 525 | (defun tetris-move-left () |
| 525 | "Moves the shape one square to the left" | 526 | "Moves the shape one square to the left" |
| 526 | (interactive) | 527 | (interactive) |
| 527 | (unless (= tetris-pos-x 0) | 528 | (unless (or (= tetris-pos-x 0) |
| 529 | tetris-paused) | ||
| 528 | (tetris-erase-shape) | 530 | (tetris-erase-shape) |
| 529 | (setq tetris-pos-x (1- tetris-pos-x)) | 531 | (setq tetris-pos-x (1- tetris-pos-x)) |
| 530 | (if (tetris-test-shape) | 532 | (if (tetris-test-shape) |
| @@ -534,8 +536,9 @@ Drops the shape one square, testing for collision." | |||
| 534 | (defun tetris-move-right () | 536 | (defun tetris-move-right () |
| 535 | "Moves the shape one square to the right" | 537 | "Moves the shape one square to the right" |
| 536 | (interactive) | 538 | (interactive) |
| 537 | (unless (= (+ tetris-pos-x (tetris-shape-width)) | 539 | (unless (or (= (+ tetris-pos-x (tetris-shape-width)) |
| 538 | tetris-width) | 540 | tetris-width) |
| 541 | tetris-paused) | ||
| 539 | (tetris-erase-shape) | 542 | (tetris-erase-shape) |
| 540 | (setq tetris-pos-x (1+ tetris-pos-x)) | 543 | (setq tetris-pos-x (1+ tetris-pos-x)) |
| 541 | (if (tetris-test-shape) | 544 | (if (tetris-test-shape) |
| @@ -545,20 +548,23 @@ Drops the shape one square, testing for collision." | |||
| 545 | (defun tetris-rotate-prev () | 548 | (defun tetris-rotate-prev () |
| 546 | "Rotates the shape clockwise" | 549 | "Rotates the shape clockwise" |
| 547 | (interactive) | 550 | (interactive) |
| 548 | (tetris-erase-shape) | 551 | (if (not tetris-paused) |
| 549 | (setq tetris-rot (% (+ 1 tetris-rot) 4)) | 552 | (progn (tetris-erase-shape) |
| 550 | (if (tetris-test-shape) | 553 | (setq tetris-rot (% (+ 1 tetris-rot) 4)) |
| 551 | (setq tetris-rot (% (+ 3 tetris-rot) 4))) | 554 | (if (tetris-test-shape) |
| 552 | (tetris-draw-shape)) | 555 | (setq tetris-rot (% (+ 3 tetris-rot) 4))) |
| 556 | (tetris-draw-shape)))) | ||
| 553 | 557 | ||
| 554 | (defun tetris-rotate-next () | 558 | (defun tetris-rotate-next () |
| 555 | "Rotates the shape anticlockwise" | 559 | "Rotates the shape anticlockwise" |
| 556 | (interactive) | 560 | (interactive) |
| 557 | (tetris-erase-shape) | 561 | (if (not tetris-paused) |
| 558 | (setq tetris-rot (% (+ 3 tetris-rot) 4)) | 562 | (progn |
| 559 | (if (tetris-test-shape) | 563 | (tetris-erase-shape) |
| 560 | (setq tetris-rot (% (+ 1 tetris-rot) 4))) | 564 | (setq tetris-rot (% (+ 3 tetris-rot) 4)) |
| 561 | (tetris-draw-shape)) | 565 | (if (tetris-test-shape) |
| 566 | (setq tetris-rot (% (+ 1 tetris-rot) 4))) | ||
| 567 | (tetris-draw-shape)))) | ||
| 562 | 568 | ||
| 563 | (defun tetris-end-game () | 569 | (defun tetris-end-game () |
| 564 | "Terminates the current game" | 570 | "Terminates the current game" |
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 02c65ae07df..b598f2de1f7 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el | |||
| @@ -618,8 +618,9 @@ With arg, use separate IO iff arg is positive." | |||
| 618 | 618 | ||
| 619 | (defun gdb-mouse-until (event) | 619 | (defun gdb-mouse-until (event) |
| 620 | "Continue running until a source line past the current line. | 620 | "Continue running until a source line past the current line. |
| 621 | The destination source line can be selected either by clicking with mouse-2 | 621 | The destination source line can be selected either by clicking |
| 622 | on the fringe/margin or dragging the arrow with mouse-1 (default bindings)." | 622 | with mouse-3 on the fringe/margin or dragging the arrow |
| 623 | with mouse-1 (default bindings)." | ||
| 623 | (interactive "e") | 624 | (interactive "e") |
| 624 | (let ((start (event-start event)) | 625 | (let ((start (event-start event)) |
| 625 | (end (event-end event))) | 626 | (end (event-end event))) |
| @@ -634,8 +635,8 @@ on the fringe/margin or dragging the arrow with mouse-1 (default bindings)." | |||
| 634 | 635 | ||
| 635 | (defun gdb-mouse-jump (event) | 636 | (defun gdb-mouse-jump (event) |
| 636 | "Set execution address/line. | 637 | "Set execution address/line. |
| 637 | The destination source line can be selected either by clicking with mouse-2 | 638 | The destination source line can be selected either by clicking with C-mouse-3 |
| 638 | on the fringe/margin or dragging the arrow with mouse-1 (default bindings). | 639 | on the fringe/margin or dragging the arrow with C-mouse-1 (default bindings). |
| 639 | Unlike gdb-mouse-until the destination address can be before the current | 640 | Unlike gdb-mouse-until the destination address can be before the current |
| 640 | line, and no execution takes place." | 641 | line, and no execution takes place." |
| 641 | (interactive "e") | 642 | (interactive "e") |
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index f94a3d63653..38e846aa2cc 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -163,7 +163,7 @@ Used for syntactic keywords. N is the match number (1, 2 or 3)." | |||
| 163 | (= (match-beginning 1) (match-end 1))) ; prefix is null | 163 | (= (match-beginning 1) (match-end 1))) ; prefix is null |
| 164 | (and (= n 1) ; prefix | 164 | (and (= n 1) ; prefix |
| 165 | (/= (match-beginning 1) (match-end 1)))) ; non-empty | 165 | (/= (match-beginning 1) (match-end 1)))) ; non-empty |
| 166 | (unless (eq 'string (syntax-ppss-context (syntax-ppss))) | 166 | (unless (nth 3 (syntax-ppss)) |
| 167 | (eval-when-compile (string-to-syntax "|")))) | 167 | (eval-when-compile (string-to-syntax "|")))) |
| 168 | ;; Otherwise (we're in a non-matching string) the property is | 168 | ;; Otherwise (we're in a non-matching string) the property is |
| 169 | ;; nil, which is OK. | 169 | ;; nil, which is OK. |
| @@ -1743,12 +1743,11 @@ Otherwise, do nothing." | |||
| 1743 | (orig (point)) | 1743 | (orig (point)) |
| 1744 | (start (nth 8 syntax)) | 1744 | (start (nth 8 syntax)) |
| 1745 | end) | 1745 | end) |
| 1746 | (cond ((eq t (nth 3 syntax)) ; in fenced string | 1746 | (cond ((eq t (nth 3 syntax)) ; in fenced string |
| 1747 | (goto-char (nth 8 syntax)) ; string start | 1747 | (goto-char (nth 8 syntax)) ; string start |
| 1748 | (condition-case () ; for unbalanced quotes | 1748 | (setq end (condition-case () ; for unbalanced quotes |
| 1749 | (progn (forward-sexp) | 1749 | (progn (forward-sexp) (point)) |
| 1750 | (setq end (point))) | 1750 | (error (point-max))))) |
| 1751 | (error (setq end (point-max))))) | ||
| 1752 | ((re-search-backward "\\s|\\s-*\\=" nil t) ; end of fenced | 1751 | ((re-search-backward "\\s|\\s-*\\=" nil t) ; end of fenced |
| 1753 | ; string | 1752 | ; string |
| 1754 | (forward-char) | 1753 | (forward-char) |
| @@ -1756,13 +1755,17 @@ Otherwise, do nothing." | |||
| 1756 | (condition-case () | 1755 | (condition-case () |
| 1757 | (progn (backward-sexp) | 1756 | (progn (backward-sexp) |
| 1758 | (setq start (point))) | 1757 | (setq start (point))) |
| 1759 | (error nil)))) | 1758 | (error (setq end nil))))) |
| 1760 | (when end | 1759 | (when end |
| 1761 | (save-restriction | 1760 | (save-restriction |
| 1762 | (narrow-to-region start end) | 1761 | (narrow-to-region start end) |
| 1763 | (goto-char orig) | 1762 | (goto-char orig) |
| 1764 | (fill-paragraph justify)))))) | 1763 | (let ((paragraph-separate |
| 1765 | t) | 1764 | ;; Make sure that fenced-string delimiters that stand |
| 1765 | ;; on their own line stay there. | ||
| 1766 | (concat "[ \t]*['\"]+[ \t]*$\\|" paragraph-separate))) | ||
| 1767 | (fill-paragraph justify)))))) | ||
| 1768 | t)) | ||
| 1766 | 1769 | ||
| 1767 | (defun python-shift-left (start end &optional count) | 1770 | (defun python-shift-left (start end &optional count) |
| 1768 | "Shift lines in region COUNT (the prefix arg) columns to the left. | 1771 | "Shift lines in region COUNT (the prefix arg) columns to the left. |
diff --git a/lisp/replace.el b/lisp/replace.el index 9790dacd82b..5b970681ea7 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -1423,8 +1423,10 @@ make, or the user didn't cancel the call." | |||
| 1423 | 1423 | ||
| 1424 | (message | 1424 | (message |
| 1425 | (if query-flag | 1425 | (if query-flag |
| 1426 | (substitute-command-keys | 1426 | (apply 'propertize |
| 1427 | "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")))) | 1427 | (substitute-command-keys |
| 1428 | "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ") | ||
| 1429 | minibuffer-prompt-properties)))) | ||
| 1428 | 1430 | ||
| 1429 | ;; If region is active, in Transient Mark mode, operate on region. | 1431 | ;; If region is active, in Transient Mark mode, operate on region. |
| 1430 | (when start | 1432 | (when start |
| @@ -1466,27 +1468,35 @@ make, or the user didn't cancel the call." | |||
| 1466 | ;; otherwise, search for a match after moving forward | 1468 | ;; otherwise, search for a match after moving forward |
| 1467 | ;; one char if progress is required. | 1469 | ;; one char if progress is required. |
| 1468 | (setq real-match-data | 1470 | (setq real-match-data |
| 1469 | (if (consp match-again) | 1471 | (cond ((consp match-again) |
| 1470 | (progn (goto-char (nth 1 match-again)) | 1472 | (goto-char (nth 1 match-again)) |
| 1471 | (replace-match-data t | 1473 | (replace-match-data |
| 1472 | real-match-data | 1474 | t real-match-data match-again)) |
| 1473 | match-again)) | 1475 | ;; MATCH-AGAIN non-nil means accept an |
| 1474 | (and (or match-again | 1476 | ;; adjacent match. |
| 1475 | ;; MATCH-AGAIN non-nil means we | 1477 | (match-again |
| 1476 | ;; accept an adjacent match. If | 1478 | (and |
| 1477 | ;; we don't, move one char to the | 1479 | (funcall search-function search-string |
| 1478 | ;; right. This takes us a | 1480 | limit t) |
| 1479 | ;; character too far at the end, | 1481 | ;; For speed, use only integers and |
| 1480 | ;; but this is undone after the | 1482 | ;; reuse the list used last time. |
| 1481 | ;; while-loop. | 1483 | (replace-match-data t real-match-data))) |
| 1482 | (progn | 1484 | ((and (< (1+ (point)) (point-max)) |
| 1483 | (forward-char 1) | 1485 | (or (null limit) |
| 1484 | (not (or (eobp) | 1486 | (< (1+ (point)) limit))) |
| 1485 | (and limit (>= (point) limit)))))) | 1487 | ;; If not accepting adjacent matches, |
| 1486 | (funcall search-function search-string limit t) | 1488 | ;; move one char to the right before |
| 1487 | ;; For speed, use only integers and | 1489 | ;; searching again. Undo the motion |
| 1488 | ;; reuse the list used last time. | 1490 | ;; if the search fails. |
| 1489 | (replace-match-data t real-match-data))))) | 1491 | (let ((opoint (point))) |
| 1492 | (forward-char 1) | ||
| 1493 | (if (funcall | ||
| 1494 | search-function search-string | ||
| 1495 | limit t) | ||
| 1496 | (replace-match-data | ||
| 1497 | t real-match-data) | ||
| 1498 | (goto-char opoint) | ||
| 1499 | nil)))))) | ||
| 1490 | 1500 | ||
| 1491 | ;; Record whether the match is nonempty, to avoid an infinite loop | 1501 | ;; Record whether the match is nonempty, to avoid an infinite loop |
| 1492 | ;; repeatedly matching the same empty string. | 1502 | ;; repeatedly matching the same empty string. |
| @@ -1702,12 +1712,6 @@ make, or the user didn't cancel the call." | |||
| 1702 | (match-data t))) | 1712 | (match-data t))) |
| 1703 | stack))))) | 1713 | stack))))) |
| 1704 | 1714 | ||
| 1705 | ;; The code preventing adjacent regexp matches in the condition | ||
| 1706 | ;; of the while-loop above will haven taken us one character | ||
| 1707 | ;; beyond the last replacement. Undo that. | ||
| 1708 | (when (and regexp-flag (not match-again) (> replace-count 0)) | ||
| 1709 | (backward-char 1)) | ||
| 1710 | |||
| 1711 | (replace-dehighlight)) | 1715 | (replace-dehighlight)) |
| 1712 | (or unread-command-events | 1716 | (or unread-command-events |
| 1713 | (message "Replaced %d occurrence%s" | 1717 | (message "Replaced %d occurrence%s" |
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el index 313748e8e43..bba5832b0e6 100644 --- a/lisp/textmodes/org.el +++ b/lisp/textmodes/org.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: Carsten Dominik <dominik at science dot uva dot nl> | 5 | ;; Author: Carsten Dominik <dominik at science dot uva dot nl> |
| 6 | ;; Keywords: outlines, hypermedia, calendar, wp | 6 | ;; Keywords: outlines, hypermedia, calendar, wp |
| 7 | ;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/ | 7 | ;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/ |
| 8 | ;; Version: 4.67 | 8 | ;; Version: 4.67c |
| 9 | ;; | 9 | ;; |
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | ;; | 11 | ;; |
| @@ -83,7 +83,7 @@ | |||
| 83 | 83 | ||
| 84 | ;;; Version | 84 | ;;; Version |
| 85 | 85 | ||
| 86 | (defvar org-version "4.67" | 86 | (defvar org-version "4.67c" |
| 87 | "The version number of the file org.el.") | 87 | "The version number of the file org.el.") |
| 88 | (defun org-version () | 88 | (defun org-version () |
| 89 | (interactive) | 89 | (interactive) |
| @@ -5528,9 +5528,10 @@ this heading. " | |||
| 5528 | (org-done-string tr-org-done-string) | 5528 | (org-done-string tr-org-done-string) |
| 5529 | (org-todo-regexp tr-org-todo-regexp) | 5529 | (org-todo-regexp tr-org-todo-regexp) |
| 5530 | (org-todo-line-regexp tr-org-todo-line-regexp) | 5530 | (org-todo-line-regexp tr-org-todo-line-regexp) |
| 5531 | (org-odd-levels-only (if (local-variable-p org-odd-levels-only) | 5531 | (org-odd-levels-only |
| 5532 | org-odd-levels-only | 5532 | (if (local-variable-p 'org-odd-levels-only) |
| 5533 | tr-org-odd-levels-only))) | 5533 | org-odd-levels-only |
| 5534 | tr-org-odd-levels-only))) | ||
| 5534 | (goto-char (point-min)) | 5535 | (goto-char (point-min)) |
| 5535 | (if heading | 5536 | (if heading |
| 5536 | (progn | 5537 | (progn |
| @@ -6323,7 +6324,7 @@ is always the old value." | |||
| 6323 | (let* ((pos (match-beginning 0)) | 6324 | (let* ((pos (match-beginning 0)) |
| 6324 | (val (buffer-substring (1+ pos) (match-end 0)))) | 6325 | (val (buffer-substring (1+ pos) (match-end 0)))) |
| 6325 | (if replace | 6326 | (if replace |
| 6326 | (replace-match (concat "|" replace))) | 6327 | (replace-match (concat "|" replace) t t)) |
| 6327 | (goto-char (min (point-at-eol) (+ 2 pos))) | 6328 | (goto-char (min (point-at-eol) (+ 2 pos))) |
| 6328 | val) | 6329 | val) |
| 6329 | (forward-char 1) "")) | 6330 | (forward-char 1) "")) |
| @@ -11613,21 +11614,22 @@ With prefix ARG, realign all tags in headings in the current buffer." | |||
| 11613 | (if just-align | 11614 | (if just-align |
| 11614 | (setq tags current) | 11615 | (setq tags current) |
| 11615 | ;; Get a new set of tags from the user | 11616 | ;; Get a new set of tags from the user |
| 11616 | (setq table (or org-tag-alist (org-get-buffer-tags)) | 11617 | (save-excursion |
| 11617 | org-last-tags-completion-table table | 11618 | (setq table (or org-tag-alist (org-get-buffer-tags)) |
| 11618 | current-tags (org-split-string current ":") | 11619 | org-last-tags-completion-table table |
| 11619 | inherited-tags (nreverse | 11620 | current-tags (org-split-string current ":") |
| 11620 | (nthcdr (length current-tags) | 11621 | inherited-tags (nreverse |
| 11621 | (nreverse (org-get-tags-at)))) | 11622 | (nthcdr (length current-tags) |
| 11622 | tags | 11623 | (nreverse (org-get-tags-at)))) |
| 11623 | (if (or (eq t org-use-fast-tag-selection) | 11624 | tags |
| 11624 | (and org-use-fast-tag-selection | 11625 | (if (or (eq t org-use-fast-tag-selection) |
| 11625 | (delq nil (mapcar 'cdr table)))) | 11626 | (and org-use-fast-tag-selection |
| 11626 | (org-fast-tag-selection current-tags inherited-tags table) | 11627 | (delq nil (mapcar 'cdr table)))) |
| 11627 | (let ((org-add-colon-after-tag-completion t)) | 11628 | (org-fast-tag-selection current-tags inherited-tags table) |
| 11628 | (org-trim | 11629 | (let ((org-add-colon-after-tag-completion t)) |
| 11629 | (completing-read "Tags: " 'org-tags-completion-function | 11630 | (org-trim |
| 11630 | nil nil current 'org-tags-history))))) | 11631 | (completing-read "Tags: " 'org-tags-completion-function |
| 11632 | nil nil current 'org-tags-history)))))) | ||
| 11631 | (while (string-match "[-+&]+" tags) | 11633 | (while (string-match "[-+&]+" tags) |
| 11632 | ;; No boolean logic, just a list | 11634 | ;; No boolean logic, just a list |
| 11633 | (setq tags (replace-match ":" t t tags)))) | 11635 | (setq tags (replace-match ":" t t tags)))) |
| @@ -11635,7 +11637,7 @@ With prefix ARG, realign all tags in headings in the current buffer." | |||
| 11635 | (setq tags "") | 11637 | (setq tags "") |
| 11636 | (unless (string-match ":$" tags) (setq tags (concat tags ":"))) | 11638 | (unless (string-match ":$" tags) (setq tags (concat tags ":"))) |
| 11637 | (unless (string-match "^:" tags) (setq tags (concat ":" tags)))) | 11639 | (unless (string-match "^:" tags) (setq tags (concat ":" tags)))) |
| 11638 | 11640 | ||
| 11639 | ;; Insert new tags at the correct column | 11641 | ;; Insert new tags at the correct column |
| 11640 | (beginning-of-line 1) | 11642 | (beginning-of-line 1) |
| 11641 | (if (re-search-forward | 11643 | (if (re-search-forward |
| @@ -11650,7 +11652,7 @@ With prefix ARG, realign all tags in headings in the current buffer." | |||
| 11650 | org-tags-column | 11652 | org-tags-column |
| 11651 | (- (- org-tags-column) (length tags)))) | 11653 | (- (- org-tags-column) (length tags)))) |
| 11652 | rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags))) | 11654 | rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags))) |
| 11653 | (replace-match rpl) | 11655 | (replace-match rpl t t) |
| 11654 | (and (not (featurep 'xemacs)) c0 (tabify p0 (point))) | 11656 | (and (not (featurep 'xemacs)) c0 (tabify p0 (point))) |
| 11655 | tags) | 11657 | tags) |
| 11656 | (error "Tags alignment failed"))))) | 11658 | (error "Tags alignment failed"))))) |
| @@ -12981,6 +12983,7 @@ The following commands are available: | |||
| 12981 | (define-key org-agenda-mode-map "\C-m" 'org-agenda-switch-to) | 12983 | (define-key org-agenda-mode-map "\C-m" 'org-agenda-switch-to) |
| 12982 | (define-key org-agenda-mode-map "\C-k" 'org-agenda-kill) | 12984 | (define-key org-agenda-mode-map "\C-k" 'org-agenda-kill) |
| 12983 | (define-key org-agenda-mode-map "\C-c$" 'org-agenda-archive) | 12985 | (define-key org-agenda-mode-map "\C-c$" 'org-agenda-archive) |
| 12986 | (define-key org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive) | ||
| 12984 | (define-key org-agenda-mode-map "$" 'org-agenda-archive) | 12987 | (define-key org-agenda-mode-map "$" 'org-agenda-archive) |
| 12985 | (define-key org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link) | 12988 | (define-key org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link) |
| 12986 | (define-key org-agenda-mode-map " " 'org-agenda-show) | 12989 | (define-key org-agenda-mode-map " " 'org-agenda-show) |
| @@ -13631,7 +13634,7 @@ Optional argument FILE means, use this file instead of the current." | |||
| 13631 | (when org-agenda-skip-archived-trees | 13634 | (when org-agenda-skip-archived-trees |
| 13632 | (goto-char (point-min)) | 13635 | (goto-char (point-min)) |
| 13633 | (while (re-search-forward rea nil t) | 13636 | (while (re-search-forward rea nil t) |
| 13634 | (if (org-on-heading-p) | 13637 | (if (org-on-heading-p t) |
| 13635 | (add-text-properties (point-at-bol) (org-end-of-subtree t) pa)))) | 13638 | (add-text-properties (point-at-bol) (org-end-of-subtree t) pa)))) |
| 13636 | (goto-char (point-min)) | 13639 | (goto-char (point-min)) |
| 13637 | (setq re (concat "^\\*+ +" org-comment-string "\\>")) | 13640 | (setq re (concat "^\\*+ +" org-comment-string "\\>")) |
| @@ -14465,6 +14468,7 @@ the documentation of `org-diary'." | |||
| 14465 | (goto-char beg) | 14468 | (goto-char beg) |
| 14466 | (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible)) | 14469 | (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible)) |
| 14467 | (throw :skip nil))) | 14470 | (throw :skip nil))) |
| 14471 | (goto-char beg) | ||
| 14468 | (org-agenda-skip) | 14472 | (org-agenda-skip) |
| 14469 | (goto-char (match-beginning 1)) | 14473 | (goto-char (match-beginning 1)) |
| 14470 | (setq marker (org-agenda-new-marker (1+ (match-beginning 0))) | 14474 | (setq marker (org-agenda-new-marker (1+ (match-beginning 0))) |
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index f1da71a8e5d..8495f1db6d9 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -154,7 +154,10 @@ options: | |||
| 154 | (format "%s" db) | 154 | (format "%s" db) |
| 155 | " RET instead.")) | 155 | " RET instead.")) |
| 156 | (insert "\n\nWith your current key bindings" | 156 | (insert "\n\nWith your current key bindings" |
| 157 | " you can use the key " | 157 | " you can use " |
| 158 | (if (string-equal "the menus" where) | ||
| 159 | "" | ||
| 160 | "the key ") | ||
| 158 | where | 161 | where |
| 159 | " to get the function `" | 162 | " to get the function `" |
| 160 | (format "%s" db) | 163 | (format "%s" db) |
diff --git a/lisp/version.el b/lisp/version.el index 0d203b3385f..f3cfe90a9df 100644 --- a/lisp/version.el +++ b/lisp/version.el | |||
| @@ -32,13 +32,13 @@ Version numbers of this version of Emacs.") | |||
| 32 | 32 | ||
| 33 | (defconst emacs-major-version | 33 | (defconst emacs-major-version |
| 34 | (progn (string-match "^[0-9]+" emacs-version) | 34 | (progn (string-match "^[0-9]+" emacs-version) |
| 35 | (string-to-int (match-string 0 emacs-version))) | 35 | (string-to-number (match-string 0 emacs-version))) |
| 36 | "Major version number of this version of Emacs. | 36 | "Major version number of this version of Emacs. |
| 37 | This variable first existed in version 19.23.") | 37 | This variable first existed in version 19.23.") |
| 38 | 38 | ||
| 39 | (defconst emacs-minor-version | 39 | (defconst emacs-minor-version |
| 40 | (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version) | 40 | (progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version) |
| 41 | (string-to-int (match-string 1 emacs-version))) | 41 | (string-to-number (match-string 1 emacs-version))) |
| 42 | "Minor version number of this version of Emacs. | 42 | "Minor version number of this version of Emacs. |
| 43 | This variable first existed in version 19.23.") | 43 | This variable first existed in version 19.23.") |
| 44 | 44 | ||
| @@ -92,5 +92,5 @@ to the system configuration; look at `system-configuration' instead." | |||
| 92 | ;;version-control: never | 92 | ;;version-control: never |
| 93 | ;;End: | 93 | ;;End: |
| 94 | 94 | ||
| 95 | ;;; arch-tag: e60dc445-6218-4a4c-a7df-f15a818642a0 | 95 | ;; arch-tag: e60dc445-6218-4a4c-a7df-f15a818642a0 |
| 96 | ;;; version.el ends here | 96 | ;;; version.el ends here |