diff options
| author | Dan Nicolaescu | 2007-10-29 18:32:32 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-10-29 18:32:32 +0000 |
| commit | fc5e09b3ee29bda2f2ef666ffd7b7f460cbc6058 (patch) | |
| tree | 3cd49b7f1aba52f016bf6899d98dd276c7e982fb | |
| parent | 383b707ece960321295197fcb188de9f70010bb6 (diff) | |
| download | emacs-fc5e09b3ee29bda2f2ef666ffd7b7f460cbc6058.tar.gz emacs-fc5e09b3ee29bda2f2ef666ffd7b7f460cbc6058.zip | |
* textmodes/flyspell.el (message-signature-separator):
* longlines.el (message-indent-citation-function): Pacify byte
compiler.
* emacs-lisp/cl-loaddefs.el:
* ldefs-boot.el: Regenerate.
* Makefile.in (BYTE_COMPILE_EXTRA_FLAGS): New variable.
(.el.elc, compile, compile-always, compile-calc)
($(lisp)/progmodes/cc-mode.elc): Use it.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/Makefile.in | 16 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-loaddefs.el | 120 | ||||
| -rw-r--r-- | lisp/ldefs-boot.el | 7915 | ||||
| -rw-r--r-- | lisp/longlines.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 1 |
6 files changed, 4063 insertions, 4002 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0a46ee2d2d4..1e043d634e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2007-10-29 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2007-10-29 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * textmodes/flyspell.el (message-signature-separator): | ||
| 4 | * longlines.el (message-indent-citation-function): Pacify byte | ||
| 5 | compiler. | ||
| 6 | |||
| 7 | * emacs-lisp/cl-loaddefs.el: | ||
| 8 | * ldefs-boot.el: Regenerate. | ||
| 9 | |||
| 10 | * Makefile.in (BYTE_COMPILE_EXTRA_FLAGS): New variable. | ||
| 11 | (.el.elc, compile, compile-always, compile-calc) | ||
| 12 | ($(lisp)/progmodes/cc-mode.elc): Use it. | ||
| 13 | |||
| 3 | * ps-print.el (ps-xemacs-color-name, ps-xemacs-face-kind-p): Only | 14 | * ps-print.el (ps-xemacs-color-name, ps-xemacs-face-kind-p): Only |
| 4 | do work for XEmacs. | 15 | do work for XEmacs. |
| 5 | (ps-xemacs-mapper): Rename from ps-mapper, only work on XEmacs. | 16 | (ps-xemacs-mapper): Rename from ps-mapper, only work on XEmacs. |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 78a251b3f7c..efb95b37057 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -35,6 +35,12 @@ EMACS = ../src/emacs | |||
| 35 | 35 | ||
| 36 | EMACSOPT = -batch --no-site-file --multibyte | 36 | EMACSOPT = -batch --no-site-file --multibyte |
| 37 | 37 | ||
| 38 | # Extra flags to pass to the byte compiler | ||
| 39 | BYTE_COMPILE_EXTRA_FLAGS = | ||
| 40 | # For example to not display the undefined function warnings you can use this: | ||
| 41 | # BYTE_COMPILE_EXTRA_FLAGS = --eval '(setq byte-compile-warnings (quote (not unresolved)))' | ||
| 42 | # The example above is just for developers, it should not be used by default. | ||
| 43 | |||
| 38 | SOURCES = *.el COPYING Makefile | 44 | SOURCES = *.el COPYING Makefile |
| 39 | lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el | 45 | lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el |
| 40 | lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el | 46 | lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el |
| @@ -141,7 +147,7 @@ TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) | |||
| 141 | .SUFFIXES: .elc .el | 147 | .SUFFIXES: .elc .el |
| 142 | 148 | ||
| 143 | .el.elc: $(lisp)/subdirs.el | 149 | .el.elc: $(lisp)/subdirs.el |
| 144 | -$(emacs) -f batch-byte-compile $< | 150 | -$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $< |
| 145 | 151 | ||
| 146 | # Compile all Lisp files, but don't recompile those that are up to | 152 | # Compile all Lisp files, but don't recompile those that are up to |
| 147 | # date. Some files don't actually get compiled because they set the | 153 | # date. Some files don't actually get compiled because they set the |
| @@ -166,7 +172,7 @@ compile: $(lisp)/subdirs.el mh-autoloads doit | |||
| 166 | if test -f $$el; \ | 172 | if test -f $$el; \ |
| 167 | then \ | 173 | then \ |
| 168 | echo Compiling $$el; \ | 174 | echo Compiling $$el; \ |
| 169 | $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ | 175 | $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile-if-not-done $$el || exit 1; \ |
| 170 | fi \ | 176 | fi \ |
| 171 | done | 177 | done |
| 172 | 178 | ||
| @@ -185,14 +191,14 @@ compile-always: $(lisp)/subdirs.el mh-autoloads doit | |||
| 185 | if test -f $$el; \ | 191 | if test -f $$el; \ |
| 186 | then \ | 192 | then \ |
| 187 | echo Compiling $$el; \ | 193 | echo Compiling $$el; \ |
| 188 | $(emacs) -f batch-byte-compile $$el || exit 1; \ | 194 | $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \ |
| 189 | fi \ | 195 | fi \ |
| 190 | done | 196 | done |
| 191 | 197 | ||
| 192 | compile-calc: | 198 | compile-calc: |
| 193 | for el in `find $(lisp)/calc -name '*.el'`; do \ | 199 | for el in `find $(lisp)/calc -name '*.el'`; do \ |
| 194 | echo Compiling $$el; \ | 200 | echo Compiling $$el; \ |
| 195 | $(emacs) -f batch-byte-compile $$el || exit 1; \ | 201 | $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \ |
| 196 | done | 202 | done |
| 197 | 203 | ||
| 198 | # Backup compiled Lisp files in elc.tar.gz. If that file already | 204 | # Backup compiled Lisp files in elc.tar.gz. If that file already |
| @@ -219,7 +225,7 @@ $(lisp)/progmodes/cc-mode.elc: \ | |||
| 219 | $(lisp)/progmodes/cc-mode.el \ | 225 | $(lisp)/progmodes/cc-mode.el \ |
| 220 | $(lisp)/progmodes/cc-langs.el \ | 226 | $(lisp)/progmodes/cc-langs.el \ |
| 221 | $(lisp)/progmodes/cc-defs.el | 227 | $(lisp)/progmodes/cc-defs.el |
| 222 | $(emacs) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el | 228 | $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el |
| 223 | 229 | ||
| 224 | # Update MH-E internal autoloads. These are not to be confused with | 230 | # Update MH-E internal autoloads. These are not to be confused with |
| 225 | # the autoloads for the MH-E entry points, which are already in | 231 | # the autoloads for the MH-E entry points, which are already in |
diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el index a46fead6eb5..e47247557d0 100644 --- a/lisp/emacs-lisp/cl-loaddefs.el +++ b/lisp/emacs-lisp/cl-loaddefs.el | |||
| @@ -283,7 +283,7 @@ Not documented | |||
| 283 | ;;;;;; do* do loop return-from return block etypecase typecase ecase | 283 | ;;;;;; do* do loop return-from return block etypecase typecase ecase |
| 284 | ;;;;;; case load-time-value eval-when destructuring-bind function* | 284 | ;;;;;; case load-time-value eval-when destructuring-bind function* |
| 285 | ;;;;;; defmacro* defun* gentemp gensym cl-compile-time-init) "cl-macs" | 285 | ;;;;;; defmacro* defun* gentemp gensym cl-compile-time-init) "cl-macs" |
| 286 | ;;;;;; "cl-macs.el" "d1c9f68f599fbec644a06dd5cf520fb5") | 286 | ;;;;;; "cl-macs.el" "c9b59a98f2066022e751aa5203b8d6b0") |
| 287 | ;;; Generated autoloads from cl-macs.el | 287 | ;;; Generated autoloads from cl-macs.el |
| 288 | 288 | ||
| 289 | (autoload 'cl-compile-time-init "cl-macs" "\ | 289 | (autoload 'cl-compile-time-init "cl-macs" "\ |
| @@ -745,24 +745,24 @@ Not documented | |||
| 745 | ;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not | 745 | ;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not |
| 746 | ;;;;;; substitute-if substitute delete-duplicates remove-duplicates | 746 | ;;;;;; substitute-if substitute delete-duplicates remove-duplicates |
| 747 | ;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove* | 747 | ;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove* |
| 748 | ;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "c972a97c053d4e001ac1d1012c315b28") | 748 | ;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "77bee7df392948b6ab0699e391e8abc1") |
| 749 | ;;; Generated autoloads from cl-seq.el | 749 | ;;; Generated autoloads from cl-seq.el |
| 750 | 750 | ||
| 751 | (autoload (quote reduce) "cl-seq" "\ | 751 | (autoload 'reduce "cl-seq" "\ |
| 752 | Reduce two-argument FUNCTION across SEQ. | 752 | Reduce two-argument FUNCTION across SEQ. |
| 753 | 753 | ||
| 754 | Keywords supported: :start :end :from-end :initial-value :key | 754 | Keywords supported: :start :end :from-end :initial-value :key |
| 755 | 755 | ||
| 756 | \(fn FUNCTION SEQ [KEYWORD VALUE]...)" nil nil) | 756 | \(fn FUNCTION SEQ [KEYWORD VALUE]...)" nil nil) |
| 757 | 757 | ||
| 758 | (autoload (quote fill) "cl-seq" "\ | 758 | (autoload 'fill "cl-seq" "\ |
| 759 | Fill the elements of SEQ with ITEM. | 759 | Fill the elements of SEQ with ITEM. |
| 760 | 760 | ||
| 761 | Keywords supported: :start :end | 761 | Keywords supported: :start :end |
| 762 | 762 | ||
| 763 | \(fn SEQ ITEM [KEYWORD VALUE]...)" nil nil) | 763 | \(fn SEQ ITEM [KEYWORD VALUE]...)" nil nil) |
| 764 | 764 | ||
| 765 | (autoload (quote replace) "cl-seq" "\ | 765 | (autoload 'replace "cl-seq" "\ |
| 766 | Replace the elements of SEQ1 with the elements of SEQ2. | 766 | Replace the elements of SEQ1 with the elements of SEQ2. |
| 767 | SEQ1 is destructively modified, then returned. | 767 | SEQ1 is destructively modified, then returned. |
| 768 | 768 | ||
| @@ -770,7 +770,7 @@ Keywords supported: :start1 :end1 :start2 :end2 | |||
| 770 | 770 | ||
| 771 | \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil) | 771 | \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil) |
| 772 | 772 | ||
| 773 | (autoload (quote remove*) "cl-seq" "\ | 773 | (autoload 'remove* "cl-seq" "\ |
| 774 | Remove all occurrences of ITEM in SEQ. | 774 | Remove all occurrences of ITEM in SEQ. |
| 775 | This is a non-destructive function; it makes a copy of SEQ if necessary | 775 | This is a non-destructive function; it makes a copy of SEQ if necessary |
| 776 | to avoid corrupting the original SEQ. | 776 | to avoid corrupting the original SEQ. |
| @@ -779,7 +779,7 @@ Keywords supported: :test :test-not :key :count :start :end :from-end | |||
| 779 | 779 | ||
| 780 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) | 780 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) |
| 781 | 781 | ||
| 782 | (autoload (quote remove-if) "cl-seq" "\ | 782 | (autoload 'remove-if "cl-seq" "\ |
| 783 | Remove all items satisfying PREDICATE in SEQ. | 783 | Remove all items satisfying PREDICATE in SEQ. |
| 784 | This is a non-destructive function; it makes a copy of SEQ if necessary | 784 | This is a non-destructive function; it makes a copy of SEQ if necessary |
| 785 | to avoid corrupting the original SEQ. | 785 | to avoid corrupting the original SEQ. |
| @@ -788,7 +788,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 788 | 788 | ||
| 789 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 789 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 790 | 790 | ||
| 791 | (autoload (quote remove-if-not) "cl-seq" "\ | 791 | (autoload 'remove-if-not "cl-seq" "\ |
| 792 | Remove all items not satisfying PREDICATE in SEQ. | 792 | Remove all items not satisfying PREDICATE in SEQ. |
| 793 | This is a non-destructive function; it makes a copy of SEQ if necessary | 793 | This is a non-destructive function; it makes a copy of SEQ if necessary |
| 794 | to avoid corrupting the original SEQ. | 794 | to avoid corrupting the original SEQ. |
| @@ -797,7 +797,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 797 | 797 | ||
| 798 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 798 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 799 | 799 | ||
| 800 | (autoload (quote delete*) "cl-seq" "\ | 800 | (autoload 'delete* "cl-seq" "\ |
| 801 | Remove all occurrences of ITEM in SEQ. | 801 | Remove all occurrences of ITEM in SEQ. |
| 802 | This is a destructive function; it reuses the storage of SEQ whenever possible. | 802 | This is a destructive function; it reuses the storage of SEQ whenever possible. |
| 803 | 803 | ||
| @@ -805,7 +805,7 @@ Keywords supported: :test :test-not :key :count :start :end :from-end | |||
| 805 | 805 | ||
| 806 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) | 806 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) |
| 807 | 807 | ||
| 808 | (autoload (quote delete-if) "cl-seq" "\ | 808 | (autoload 'delete-if "cl-seq" "\ |
| 809 | Remove all items satisfying PREDICATE in SEQ. | 809 | Remove all items satisfying PREDICATE in SEQ. |
| 810 | This is a destructive function; it reuses the storage of SEQ whenever possible. | 810 | This is a destructive function; it reuses the storage of SEQ whenever possible. |
| 811 | 811 | ||
| @@ -813,7 +813,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 813 | 813 | ||
| 814 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 814 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 815 | 815 | ||
| 816 | (autoload (quote delete-if-not) "cl-seq" "\ | 816 | (autoload 'delete-if-not "cl-seq" "\ |
| 817 | Remove all items not satisfying PREDICATE in SEQ. | 817 | Remove all items not satisfying PREDICATE in SEQ. |
| 818 | This is a destructive function; it reuses the storage of SEQ whenever possible. | 818 | This is a destructive function; it reuses the storage of SEQ whenever possible. |
| 819 | 819 | ||
| @@ -821,21 +821,21 @@ Keywords supported: :key :count :start :end :from-end | |||
| 821 | 821 | ||
| 822 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 822 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 823 | 823 | ||
| 824 | (autoload (quote remove-duplicates) "cl-seq" "\ | 824 | (autoload 'remove-duplicates "cl-seq" "\ |
| 825 | Return a copy of SEQ with all duplicate elements removed. | 825 | Return a copy of SEQ with all duplicate elements removed. |
| 826 | 826 | ||
| 827 | Keywords supported: :test :test-not :key :start :end :from-end | 827 | Keywords supported: :test :test-not :key :start :end :from-end |
| 828 | 828 | ||
| 829 | \(fn SEQ [KEYWORD VALUE]...)" nil nil) | 829 | \(fn SEQ [KEYWORD VALUE]...)" nil nil) |
| 830 | 830 | ||
| 831 | (autoload (quote delete-duplicates) "cl-seq" "\ | 831 | (autoload 'delete-duplicates "cl-seq" "\ |
| 832 | Remove all duplicate elements from SEQ (destructively). | 832 | Remove all duplicate elements from SEQ (destructively). |
| 833 | 833 | ||
| 834 | Keywords supported: :test :test-not :key :start :end :from-end | 834 | Keywords supported: :test :test-not :key :start :end :from-end |
| 835 | 835 | ||
| 836 | \(fn SEQ [KEYWORD VALUE]...)" nil nil) | 836 | \(fn SEQ [KEYWORD VALUE]...)" nil nil) |
| 837 | 837 | ||
| 838 | (autoload (quote substitute) "cl-seq" "\ | 838 | (autoload 'substitute "cl-seq" "\ |
| 839 | Substitute NEW for OLD in SEQ. | 839 | Substitute NEW for OLD in SEQ. |
| 840 | This is a non-destructive function; it makes a copy of SEQ if necessary | 840 | This is a non-destructive function; it makes a copy of SEQ if necessary |
| 841 | to avoid corrupting the original SEQ. | 841 | to avoid corrupting the original SEQ. |
| @@ -844,7 +844,7 @@ Keywords supported: :test :test-not :key :count :start :end :from-end | |||
| 844 | 844 | ||
| 845 | \(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil) | 845 | \(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil) |
| 846 | 846 | ||
| 847 | (autoload (quote substitute-if) "cl-seq" "\ | 847 | (autoload 'substitute-if "cl-seq" "\ |
| 848 | Substitute NEW for all items satisfying PREDICATE in SEQ. | 848 | Substitute NEW for all items satisfying PREDICATE in SEQ. |
| 849 | This is a non-destructive function; it makes a copy of SEQ if necessary | 849 | This is a non-destructive function; it makes a copy of SEQ if necessary |
| 850 | to avoid corrupting the original SEQ. | 850 | to avoid corrupting the original SEQ. |
| @@ -853,7 +853,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 853 | 853 | ||
| 854 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 854 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 855 | 855 | ||
| 856 | (autoload (quote substitute-if-not) "cl-seq" "\ | 856 | (autoload 'substitute-if-not "cl-seq" "\ |
| 857 | Substitute NEW for all items not satisfying PREDICATE in SEQ. | 857 | Substitute NEW for all items not satisfying PREDICATE in SEQ. |
| 858 | This is a non-destructive function; it makes a copy of SEQ if necessary | 858 | This is a non-destructive function; it makes a copy of SEQ if necessary |
| 859 | to avoid corrupting the original SEQ. | 859 | to avoid corrupting the original SEQ. |
| @@ -862,7 +862,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 862 | 862 | ||
| 863 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 863 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 864 | 864 | ||
| 865 | (autoload (quote nsubstitute) "cl-seq" "\ | 865 | (autoload 'nsubstitute "cl-seq" "\ |
| 866 | Substitute NEW for OLD in SEQ. | 866 | Substitute NEW for OLD in SEQ. |
| 867 | This is a destructive function; it reuses the storage of SEQ whenever possible. | 867 | This is a destructive function; it reuses the storage of SEQ whenever possible. |
| 868 | 868 | ||
| @@ -870,7 +870,7 @@ Keywords supported: :test :test-not :key :count :start :end :from-end | |||
| 870 | 870 | ||
| 871 | \(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil) | 871 | \(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil) |
| 872 | 872 | ||
| 873 | (autoload (quote nsubstitute-if) "cl-seq" "\ | 873 | (autoload 'nsubstitute-if "cl-seq" "\ |
| 874 | Substitute NEW for all items satisfying PREDICATE in SEQ. | 874 | Substitute NEW for all items satisfying PREDICATE in SEQ. |
| 875 | This is a destructive function; it reuses the storage of SEQ whenever possible. | 875 | This is a destructive function; it reuses the storage of SEQ whenever possible. |
| 876 | 876 | ||
| @@ -878,7 +878,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 878 | 878 | ||
| 879 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 879 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 880 | 880 | ||
| 881 | (autoload (quote nsubstitute-if-not) "cl-seq" "\ | 881 | (autoload 'nsubstitute-if-not "cl-seq" "\ |
| 882 | Substitute NEW for all items not satisfying PREDICATE in SEQ. | 882 | Substitute NEW for all items not satisfying PREDICATE in SEQ. |
| 883 | This is a destructive function; it reuses the storage of SEQ whenever possible. | 883 | This is a destructive function; it reuses the storage of SEQ whenever possible. |
| 884 | 884 | ||
| @@ -886,7 +886,7 @@ Keywords supported: :key :count :start :end :from-end | |||
| 886 | 886 | ||
| 887 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 887 | \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 888 | 888 | ||
| 889 | (autoload (quote find) "cl-seq" "\ | 889 | (autoload 'find "cl-seq" "\ |
| 890 | Find the first occurrence of ITEM in SEQ. | 890 | Find the first occurrence of ITEM in SEQ. |
| 891 | Return the matching ITEM, or nil if not found. | 891 | Return the matching ITEM, or nil if not found. |
| 892 | 892 | ||
| @@ -894,7 +894,7 @@ Keywords supported: :test :test-not :key :start :end :from-end | |||
| 894 | 894 | ||
| 895 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) | 895 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) |
| 896 | 896 | ||
| 897 | (autoload (quote find-if) "cl-seq" "\ | 897 | (autoload 'find-if "cl-seq" "\ |
| 898 | Find the first item satisfying PREDICATE in SEQ. | 898 | Find the first item satisfying PREDICATE in SEQ. |
| 899 | Return the matching item, or nil if not found. | 899 | Return the matching item, or nil if not found. |
| 900 | 900 | ||
| @@ -902,7 +902,7 @@ Keywords supported: :key :start :end :from-end | |||
| 902 | 902 | ||
| 903 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 903 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 904 | 904 | ||
| 905 | (autoload (quote find-if-not) "cl-seq" "\ | 905 | (autoload 'find-if-not "cl-seq" "\ |
| 906 | Find the first item not satisfying PREDICATE in SEQ. | 906 | Find the first item not satisfying PREDICATE in SEQ. |
| 907 | Return the matching item, or nil if not found. | 907 | Return the matching item, or nil if not found. |
| 908 | 908 | ||
| @@ -910,7 +910,7 @@ Keywords supported: :key :start :end :from-end | |||
| 910 | 910 | ||
| 911 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 911 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 912 | 912 | ||
| 913 | (autoload (quote position) "cl-seq" "\ | 913 | (autoload 'position "cl-seq" "\ |
| 914 | Find the first occurrence of ITEM in SEQ. | 914 | Find the first occurrence of ITEM in SEQ. |
| 915 | Return the index of the matching item, or nil if not found. | 915 | Return the index of the matching item, or nil if not found. |
| 916 | 916 | ||
| @@ -918,7 +918,7 @@ Keywords supported: :test :test-not :key :start :end :from-end | |||
| 918 | 918 | ||
| 919 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) | 919 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) |
| 920 | 920 | ||
| 921 | (autoload (quote position-if) "cl-seq" "\ | 921 | (autoload 'position-if "cl-seq" "\ |
| 922 | Find the first item satisfying PREDICATE in SEQ. | 922 | Find the first item satisfying PREDICATE in SEQ. |
| 923 | Return the index of the matching item, or nil if not found. | 923 | Return the index of the matching item, or nil if not found. |
| 924 | 924 | ||
| @@ -926,7 +926,7 @@ Keywords supported: :key :start :end :from-end | |||
| 926 | 926 | ||
| 927 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 927 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 928 | 928 | ||
| 929 | (autoload (quote position-if-not) "cl-seq" "\ | 929 | (autoload 'position-if-not "cl-seq" "\ |
| 930 | Find the first item not satisfying PREDICATE in SEQ. | 930 | Find the first item not satisfying PREDICATE in SEQ. |
| 931 | Return the index of the matching item, or nil if not found. | 931 | Return the index of the matching item, or nil if not found. |
| 932 | 932 | ||
| @@ -934,28 +934,28 @@ Keywords supported: :key :start :end :from-end | |||
| 934 | 934 | ||
| 935 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 935 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 936 | 936 | ||
| 937 | (autoload (quote count) "cl-seq" "\ | 937 | (autoload 'count "cl-seq" "\ |
| 938 | Count the number of occurrences of ITEM in SEQ. | 938 | Count the number of occurrences of ITEM in SEQ. |
| 939 | 939 | ||
| 940 | Keywords supported: :test :test-not :key :start :end | 940 | Keywords supported: :test :test-not :key :start :end |
| 941 | 941 | ||
| 942 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) | 942 | \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil) |
| 943 | 943 | ||
| 944 | (autoload (quote count-if) "cl-seq" "\ | 944 | (autoload 'count-if "cl-seq" "\ |
| 945 | Count the number of items satisfying PREDICATE in SEQ. | 945 | Count the number of items satisfying PREDICATE in SEQ. |
| 946 | 946 | ||
| 947 | Keywords supported: :key :start :end | 947 | Keywords supported: :key :start :end |
| 948 | 948 | ||
| 949 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 949 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 950 | 950 | ||
| 951 | (autoload (quote count-if-not) "cl-seq" "\ | 951 | (autoload 'count-if-not "cl-seq" "\ |
| 952 | Count the number of items not satisfying PREDICATE in SEQ. | 952 | Count the number of items not satisfying PREDICATE in SEQ. |
| 953 | 953 | ||
| 954 | Keywords supported: :key :start :end | 954 | Keywords supported: :key :start :end |
| 955 | 955 | ||
| 956 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) | 956 | \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil) |
| 957 | 957 | ||
| 958 | (autoload (quote mismatch) "cl-seq" "\ | 958 | (autoload 'mismatch "cl-seq" "\ |
| 959 | Compare SEQ1 with SEQ2, return index of first mismatching element. | 959 | Compare SEQ1 with SEQ2, return index of first mismatching element. |
| 960 | Return nil if the sequences match. If one sequence is a prefix of the | 960 | Return nil if the sequences match. If one sequence is a prefix of the |
| 961 | other, the return value indicates the end of the shorter sequence. | 961 | other, the return value indicates the end of the shorter sequence. |
| @@ -964,7 +964,7 @@ Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end | |||
| 964 | 964 | ||
| 965 | \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil) | 965 | \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil) |
| 966 | 966 | ||
| 967 | (autoload (quote search) "cl-seq" "\ | 967 | (autoload 'search "cl-seq" "\ |
| 968 | Search for SEQ1 as a subsequence of SEQ2. | 968 | Search for SEQ1 as a subsequence of SEQ2. |
| 969 | Return the index of the leftmost element of the first match found; | 969 | Return the index of the leftmost element of the first match found; |
| 970 | return nil if there are no matches. | 970 | return nil if there are no matches. |
| @@ -973,7 +973,7 @@ Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end | |||
| 973 | 973 | ||
| 974 | \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil) | 974 | \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil) |
| 975 | 975 | ||
| 976 | (autoload (quote sort*) "cl-seq" "\ | 976 | (autoload 'sort* "cl-seq" "\ |
| 977 | Sort the argument SEQ according to PREDICATE. | 977 | Sort the argument SEQ according to PREDICATE. |
| 978 | This is a destructive function; it reuses the storage of SEQ if possible. | 978 | This is a destructive function; it reuses the storage of SEQ if possible. |
| 979 | 979 | ||
| @@ -981,7 +981,7 @@ Keywords supported: :key | |||
| 981 | 981 | ||
| 982 | \(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil) | 982 | \(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil) |
| 983 | 983 | ||
| 984 | (autoload (quote stable-sort) "cl-seq" "\ | 984 | (autoload 'stable-sort "cl-seq" "\ |
| 985 | Sort the argument SEQ stably according to PREDICATE. | 985 | Sort the argument SEQ stably according to PREDICATE. |
| 986 | This is a destructive function; it reuses the storage of SEQ if possible. | 986 | This is a destructive function; it reuses the storage of SEQ if possible. |
| 987 | 987 | ||
| @@ -989,7 +989,7 @@ Keywords supported: :key | |||
| 989 | 989 | ||
| 990 | \(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil) | 990 | \(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil) |
| 991 | 991 | ||
| 992 | (autoload (quote merge) "cl-seq" "\ | 992 | (autoload 'merge "cl-seq" "\ |
| 993 | Destructively merge the two sequences to produce a new sequence. | 993 | Destructively merge the two sequences to produce a new sequence. |
| 994 | TYPE is the sequence type to return, SEQ1 and SEQ2 are the two argument | 994 | TYPE is the sequence type to return, SEQ1 and SEQ2 are the two argument |
| 995 | sequences, and PREDICATE is a `less-than' predicate on the elements. | 995 | sequences, and PREDICATE is a `less-than' predicate on the elements. |
| @@ -998,7 +998,7 @@ Keywords supported: :key | |||
| 998 | 998 | ||
| 999 | \(fn TYPE SEQ1 SEQ2 PREDICATE [KEYWORD VALUE]...)" nil nil) | 999 | \(fn TYPE SEQ1 SEQ2 PREDICATE [KEYWORD VALUE]...)" nil nil) |
| 1000 | 1000 | ||
| 1001 | (autoload (quote member*) "cl-seq" "\ | 1001 | (autoload 'member* "cl-seq" "\ |
| 1002 | Find the first occurrence of ITEM in LIST. | 1002 | Find the first occurrence of ITEM in LIST. |
| 1003 | Return the sublist of LIST whose car is ITEM. | 1003 | Return the sublist of LIST whose car is ITEM. |
| 1004 | 1004 | ||
| @@ -1006,7 +1006,7 @@ Keywords supported: :test :test-not :key | |||
| 1006 | 1006 | ||
| 1007 | \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil) | 1007 | \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil) |
| 1008 | 1008 | ||
| 1009 | (autoload (quote member-if) "cl-seq" "\ | 1009 | (autoload 'member-if "cl-seq" "\ |
| 1010 | Find the first item satisfying PREDICATE in LIST. | 1010 | Find the first item satisfying PREDICATE in LIST. |
| 1011 | Return the sublist of LIST whose car matches. | 1011 | Return the sublist of LIST whose car matches. |
| 1012 | 1012 | ||
| @@ -1014,7 +1014,7 @@ Keywords supported: :key | |||
| 1014 | 1014 | ||
| 1015 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) | 1015 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) |
| 1016 | 1016 | ||
| 1017 | (autoload (quote member-if-not) "cl-seq" "\ | 1017 | (autoload 'member-if-not "cl-seq" "\ |
| 1018 | Find the first item not satisfying PREDICATE in LIST. | 1018 | Find the first item not satisfying PREDICATE in LIST. |
| 1019 | Return the sublist of LIST whose car matches. | 1019 | Return the sublist of LIST whose car matches. |
| 1020 | 1020 | ||
| @@ -1022,54 +1022,54 @@ Keywords supported: :key | |||
| 1022 | 1022 | ||
| 1023 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) | 1023 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) |
| 1024 | 1024 | ||
| 1025 | (autoload (quote cl-adjoin) "cl-seq" "\ | 1025 | (autoload 'cl-adjoin "cl-seq" "\ |
| 1026 | Not documented | 1026 | Not documented |
| 1027 | 1027 | ||
| 1028 | \(fn CL-ITEM CL-LIST &rest CL-KEYS)" nil nil) | 1028 | \(fn CL-ITEM CL-LIST &rest CL-KEYS)" nil nil) |
| 1029 | 1029 | ||
| 1030 | (autoload (quote assoc*) "cl-seq" "\ | 1030 | (autoload 'assoc* "cl-seq" "\ |
| 1031 | Find the first item whose car matches ITEM in LIST. | 1031 | Find the first item whose car matches ITEM in LIST. |
| 1032 | 1032 | ||
| 1033 | Keywords supported: :test :test-not :key | 1033 | Keywords supported: :test :test-not :key |
| 1034 | 1034 | ||
| 1035 | \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil) | 1035 | \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil) |
| 1036 | 1036 | ||
| 1037 | (autoload (quote assoc-if) "cl-seq" "\ | 1037 | (autoload 'assoc-if "cl-seq" "\ |
| 1038 | Find the first item whose car satisfies PREDICATE in LIST. | 1038 | Find the first item whose car satisfies PREDICATE in LIST. |
| 1039 | 1039 | ||
| 1040 | Keywords supported: :key | 1040 | Keywords supported: :key |
| 1041 | 1041 | ||
| 1042 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) | 1042 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) |
| 1043 | 1043 | ||
| 1044 | (autoload (quote assoc-if-not) "cl-seq" "\ | 1044 | (autoload 'assoc-if-not "cl-seq" "\ |
| 1045 | Find the first item whose car does not satisfy PREDICATE in LIST. | 1045 | Find the first item whose car does not satisfy PREDICATE in LIST. |
| 1046 | 1046 | ||
| 1047 | Keywords supported: :key | 1047 | Keywords supported: :key |
| 1048 | 1048 | ||
| 1049 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) | 1049 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) |
| 1050 | 1050 | ||
| 1051 | (autoload (quote rassoc*) "cl-seq" "\ | 1051 | (autoload 'rassoc* "cl-seq" "\ |
| 1052 | Find the first item whose cdr matches ITEM in LIST. | 1052 | Find the first item whose cdr matches ITEM in LIST. |
| 1053 | 1053 | ||
| 1054 | Keywords supported: :test :test-not :key | 1054 | Keywords supported: :test :test-not :key |
| 1055 | 1055 | ||
| 1056 | \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil) | 1056 | \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil) |
| 1057 | 1057 | ||
| 1058 | (autoload (quote rassoc-if) "cl-seq" "\ | 1058 | (autoload 'rassoc-if "cl-seq" "\ |
| 1059 | Find the first item whose cdr satisfies PREDICATE in LIST. | 1059 | Find the first item whose cdr satisfies PREDICATE in LIST. |
| 1060 | 1060 | ||
| 1061 | Keywords supported: :key | 1061 | Keywords supported: :key |
| 1062 | 1062 | ||
| 1063 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) | 1063 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) |
| 1064 | 1064 | ||
| 1065 | (autoload (quote rassoc-if-not) "cl-seq" "\ | 1065 | (autoload 'rassoc-if-not "cl-seq" "\ |
| 1066 | Find the first item whose cdr does not satisfy PREDICATE in LIST. | 1066 | Find the first item whose cdr does not satisfy PREDICATE in LIST. |
| 1067 | 1067 | ||
| 1068 | Keywords supported: :key | 1068 | Keywords supported: :key |
| 1069 | 1069 | ||
| 1070 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) | 1070 | \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil) |
| 1071 | 1071 | ||
| 1072 | (autoload (quote union) "cl-seq" "\ | 1072 | (autoload 'union "cl-seq" "\ |
| 1073 | Combine LIST1 and LIST2 using a set-union operation. | 1073 | Combine LIST1 and LIST2 using a set-union operation. |
| 1074 | The result list contains all items that appear in either LIST1 or LIST2. | 1074 | The result list contains all items that appear in either LIST1 or LIST2. |
| 1075 | This is a non-destructive function; it makes a copy of the data if necessary | 1075 | This is a non-destructive function; it makes a copy of the data if necessary |
| @@ -1079,7 +1079,7 @@ Keywords supported: :test :test-not :key | |||
| 1079 | 1079 | ||
| 1080 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1080 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1081 | 1081 | ||
| 1082 | (autoload (quote nunion) "cl-seq" "\ | 1082 | (autoload 'nunion "cl-seq" "\ |
| 1083 | Combine LIST1 and LIST2 using a set-union operation. | 1083 | Combine LIST1 and LIST2 using a set-union operation. |
| 1084 | The result list contains all items that appear in either LIST1 or LIST2. | 1084 | The result list contains all items that appear in either LIST1 or LIST2. |
| 1085 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1085 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| @@ -1089,7 +1089,7 @@ Keywords supported: :test :test-not :key | |||
| 1089 | 1089 | ||
| 1090 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1090 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1091 | 1091 | ||
| 1092 | (autoload (quote intersection) "cl-seq" "\ | 1092 | (autoload 'intersection "cl-seq" "\ |
| 1093 | Combine LIST1 and LIST2 using a set-intersection operation. | 1093 | Combine LIST1 and LIST2 using a set-intersection operation. |
| 1094 | The result list contains all items that appear in both LIST1 and LIST2. | 1094 | The result list contains all items that appear in both LIST1 and LIST2. |
| 1095 | This is a non-destructive function; it makes a copy of the data if necessary | 1095 | This is a non-destructive function; it makes a copy of the data if necessary |
| @@ -1099,7 +1099,7 @@ Keywords supported: :test :test-not :key | |||
| 1099 | 1099 | ||
| 1100 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1100 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1101 | 1101 | ||
| 1102 | (autoload (quote nintersection) "cl-seq" "\ | 1102 | (autoload 'nintersection "cl-seq" "\ |
| 1103 | Combine LIST1 and LIST2 using a set-intersection operation. | 1103 | Combine LIST1 and LIST2 using a set-intersection operation. |
| 1104 | The result list contains all items that appear in both LIST1 and LIST2. | 1104 | The result list contains all items that appear in both LIST1 and LIST2. |
| 1105 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1105 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| @@ -1109,7 +1109,7 @@ Keywords supported: :test :test-not :key | |||
| 1109 | 1109 | ||
| 1110 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1110 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1111 | 1111 | ||
| 1112 | (autoload (quote set-difference) "cl-seq" "\ | 1112 | (autoload 'set-difference "cl-seq" "\ |
| 1113 | Combine LIST1 and LIST2 using a set-difference operation. | 1113 | Combine LIST1 and LIST2 using a set-difference operation. |
| 1114 | The result list contains all items that appear in LIST1 but not LIST2. | 1114 | The result list contains all items that appear in LIST1 but not LIST2. |
| 1115 | This is a non-destructive function; it makes a copy of the data if necessary | 1115 | This is a non-destructive function; it makes a copy of the data if necessary |
| @@ -1119,7 +1119,7 @@ Keywords supported: :test :test-not :key | |||
| 1119 | 1119 | ||
| 1120 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1120 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1121 | 1121 | ||
| 1122 | (autoload (quote nset-difference) "cl-seq" "\ | 1122 | (autoload 'nset-difference "cl-seq" "\ |
| 1123 | Combine LIST1 and LIST2 using a set-difference operation. | 1123 | Combine LIST1 and LIST2 using a set-difference operation. |
| 1124 | The result list contains all items that appear in LIST1 but not LIST2. | 1124 | The result list contains all items that appear in LIST1 but not LIST2. |
| 1125 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1125 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| @@ -1129,7 +1129,7 @@ Keywords supported: :test :test-not :key | |||
| 1129 | 1129 | ||
| 1130 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1130 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1131 | 1131 | ||
| 1132 | (autoload (quote set-exclusive-or) "cl-seq" "\ | 1132 | (autoload 'set-exclusive-or "cl-seq" "\ |
| 1133 | Combine LIST1 and LIST2 using a set-exclusive-or operation. | 1133 | Combine LIST1 and LIST2 using a set-exclusive-or operation. |
| 1134 | The result list contains all items that appear in exactly one of LIST1, LIST2. | 1134 | The result list contains all items that appear in exactly one of LIST1, LIST2. |
| 1135 | This is a non-destructive function; it makes a copy of the data if necessary | 1135 | This is a non-destructive function; it makes a copy of the data if necessary |
| @@ -1139,7 +1139,7 @@ Keywords supported: :test :test-not :key | |||
| 1139 | 1139 | ||
| 1140 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1140 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1141 | 1141 | ||
| 1142 | (autoload (quote nset-exclusive-or) "cl-seq" "\ | 1142 | (autoload 'nset-exclusive-or "cl-seq" "\ |
| 1143 | Combine LIST1 and LIST2 using a set-exclusive-or operation. | 1143 | Combine LIST1 and LIST2 using a set-exclusive-or operation. |
| 1144 | The result list contains all items that appear in exactly one of LIST1, LIST2. | 1144 | The result list contains all items that appear in exactly one of LIST1, LIST2. |
| 1145 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1145 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| @@ -1149,7 +1149,7 @@ Keywords supported: :test :test-not :key | |||
| 1149 | 1149 | ||
| 1150 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1150 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1151 | 1151 | ||
| 1152 | (autoload (quote subsetp) "cl-seq" "\ | 1152 | (autoload 'subsetp "cl-seq" "\ |
| 1153 | Return true if LIST1 is a subset of LIST2. | 1153 | Return true if LIST1 is a subset of LIST2. |
| 1154 | I.e., if every element of LIST1 also appears in LIST2. | 1154 | I.e., if every element of LIST1 also appears in LIST2. |
| 1155 | 1155 | ||
| @@ -1157,7 +1157,7 @@ Keywords supported: :test :test-not :key | |||
| 1157 | 1157 | ||
| 1158 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) | 1158 | \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil) |
| 1159 | 1159 | ||
| 1160 | (autoload (quote subst-if) "cl-seq" "\ | 1160 | (autoload 'subst-if "cl-seq" "\ |
| 1161 | Substitute NEW for elements matching PREDICATE in TREE (non-destructively). | 1161 | Substitute NEW for elements matching PREDICATE in TREE (non-destructively). |
| 1162 | Return a copy of TREE with all matching elements replaced by NEW. | 1162 | Return a copy of TREE with all matching elements replaced by NEW. |
| 1163 | 1163 | ||
| @@ -1165,7 +1165,7 @@ Keywords supported: :key | |||
| 1165 | 1165 | ||
| 1166 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) | 1166 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) |
| 1167 | 1167 | ||
| 1168 | (autoload (quote subst-if-not) "cl-seq" "\ | 1168 | (autoload 'subst-if-not "cl-seq" "\ |
| 1169 | Substitute NEW for elts not matching PREDICATE in TREE (non-destructively). | 1169 | Substitute NEW for elts not matching PREDICATE in TREE (non-destructively). |
| 1170 | Return a copy of TREE with all non-matching elements replaced by NEW. | 1170 | Return a copy of TREE with all non-matching elements replaced by NEW. |
| 1171 | 1171 | ||
| @@ -1173,7 +1173,7 @@ Keywords supported: :key | |||
| 1173 | 1173 | ||
| 1174 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) | 1174 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) |
| 1175 | 1175 | ||
| 1176 | (autoload (quote nsubst) "cl-seq" "\ | 1176 | (autoload 'nsubst "cl-seq" "\ |
| 1177 | Substitute NEW for OLD everywhere in TREE (destructively). | 1177 | Substitute NEW for OLD everywhere in TREE (destructively). |
| 1178 | Any element of TREE which is `eql' to OLD is changed to NEW (via a call | 1178 | Any element of TREE which is `eql' to OLD is changed to NEW (via a call |
| 1179 | to `setcar'). | 1179 | to `setcar'). |
| @@ -1182,7 +1182,7 @@ Keywords supported: :test :test-not :key | |||
| 1182 | 1182 | ||
| 1183 | \(fn NEW OLD TREE [KEYWORD VALUE]...)" nil nil) | 1183 | \(fn NEW OLD TREE [KEYWORD VALUE]...)" nil nil) |
| 1184 | 1184 | ||
| 1185 | (autoload (quote nsubst-if) "cl-seq" "\ | 1185 | (autoload 'nsubst-if "cl-seq" "\ |
| 1186 | Substitute NEW for elements matching PREDICATE in TREE (destructively). | 1186 | Substitute NEW for elements matching PREDICATE in TREE (destructively). |
| 1187 | Any element of TREE which matches is changed to NEW (via a call to `setcar'). | 1187 | Any element of TREE which matches is changed to NEW (via a call to `setcar'). |
| 1188 | 1188 | ||
| @@ -1190,7 +1190,7 @@ Keywords supported: :key | |||
| 1190 | 1190 | ||
| 1191 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) | 1191 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) |
| 1192 | 1192 | ||
| 1193 | (autoload (quote nsubst-if-not) "cl-seq" "\ | 1193 | (autoload 'nsubst-if-not "cl-seq" "\ |
| 1194 | Substitute NEW for elements not matching PREDICATE in TREE (destructively). | 1194 | Substitute NEW for elements not matching PREDICATE in TREE (destructively). |
| 1195 | Any element of TREE which matches is changed to NEW (via a call to `setcar'). | 1195 | Any element of TREE which matches is changed to NEW (via a call to `setcar'). |
| 1196 | 1196 | ||
| @@ -1198,7 +1198,7 @@ Keywords supported: :key | |||
| 1198 | 1198 | ||
| 1199 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) | 1199 | \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil) |
| 1200 | 1200 | ||
| 1201 | (autoload (quote sublis) "cl-seq" "\ | 1201 | (autoload 'sublis "cl-seq" "\ |
| 1202 | Perform substitutions indicated by ALIST in TREE (non-destructively). | 1202 | Perform substitutions indicated by ALIST in TREE (non-destructively). |
| 1203 | Return a copy of TREE with all matching elements replaced. | 1203 | Return a copy of TREE with all matching elements replaced. |
| 1204 | 1204 | ||
| @@ -1206,7 +1206,7 @@ Keywords supported: :test :test-not :key | |||
| 1206 | 1206 | ||
| 1207 | \(fn ALIST TREE [KEYWORD VALUE]...)" nil nil) | 1207 | \(fn ALIST TREE [KEYWORD VALUE]...)" nil nil) |
| 1208 | 1208 | ||
| 1209 | (autoload (quote nsublis) "cl-seq" "\ | 1209 | (autoload 'nsublis "cl-seq" "\ |
| 1210 | Perform substitutions indicated by ALIST in TREE (destructively). | 1210 | Perform substitutions indicated by ALIST in TREE (destructively). |
| 1211 | Any matching element of TREE is changed via a call to `setcar'. | 1211 | Any matching element of TREE is changed via a call to `setcar'. |
| 1212 | 1212 | ||
| @@ -1214,7 +1214,7 @@ Keywords supported: :test :test-not :key | |||
| 1214 | 1214 | ||
| 1215 | \(fn ALIST TREE [KEYWORD VALUE]...)" nil nil) | 1215 | \(fn ALIST TREE [KEYWORD VALUE]...)" nil nil) |
| 1216 | 1216 | ||
| 1217 | (autoload (quote tree-equal) "cl-seq" "\ | 1217 | (autoload 'tree-equal "cl-seq" "\ |
| 1218 | Return t if trees TREE1 and TREE2 have `eql' leaves. | 1218 | Return t if trees TREE1 and TREE2 have `eql' leaves. |
| 1219 | Atoms are compared by `eql'; cons cells are compared recursively. | 1219 | Atoms are compared by `eql'; cons cells are compared recursively. |
| 1220 | 1220 | ||
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 4a443629d38..8704a6d8ccb 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -4,10 +4,10 @@ | |||
| 4 | 4 | ||
| 5 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best | 5 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best |
| 6 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" | 6 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" |
| 7 | ;;;;;; "play/5x5.el" (18104 24760)) | 7 | ;;;;;; "play/5x5.el" (18088 55113)) |
| 8 | ;;; Generated autoloads from play/5x5.el | 8 | ;;; Generated autoloads from play/5x5.el |
| 9 | 9 | ||
| 10 | (autoload (quote 5x5) "5x5" "\ | 10 | (autoload '5x5 "5x5" "\ |
| 11 | Play 5x5. | 11 | Play 5x5. |
| 12 | 12 | ||
| 13 | The object of 5x5 is very simple, by moving around the grid and flipping | 13 | The object of 5x5 is very simple, by moving around the grid and flipping |
| @@ -30,28 +30,28 @@ Quit current game \\[5x5-quit-game] | |||
| 30 | 30 | ||
| 31 | \(fn &optional SIZE)" t nil) | 31 | \(fn &optional SIZE)" t nil) |
| 32 | 32 | ||
| 33 | (autoload (quote 5x5-crack-randomly) "5x5" "\ | 33 | (autoload '5x5-crack-randomly "5x5" "\ |
| 34 | Attempt to crack 5x5 using random solutions. | 34 | Attempt to crack 5x5 using random solutions. |
| 35 | 35 | ||
| 36 | \(fn)" t nil) | 36 | \(fn)" t nil) |
| 37 | 37 | ||
| 38 | (autoload (quote 5x5-crack-mutating-current) "5x5" "\ | 38 | (autoload '5x5-crack-mutating-current "5x5" "\ |
| 39 | Attempt to crack 5x5 by mutating the current solution. | 39 | Attempt to crack 5x5 by mutating the current solution. |
| 40 | 40 | ||
| 41 | \(fn)" t nil) | 41 | \(fn)" t nil) |
| 42 | 42 | ||
| 43 | (autoload (quote 5x5-crack-mutating-best) "5x5" "\ | 43 | (autoload '5x5-crack-mutating-best "5x5" "\ |
| 44 | Attempt to crack 5x5 by mutating the best solution. | 44 | Attempt to crack 5x5 by mutating the best solution. |
| 45 | 45 | ||
| 46 | \(fn)" t nil) | 46 | \(fn)" t nil) |
| 47 | 47 | ||
| 48 | (autoload (quote 5x5-crack-xor-mutate) "5x5" "\ | 48 | (autoload '5x5-crack-xor-mutate "5x5" "\ |
| 49 | Attempt to crack 5x5 by xoring the current and best solution. | 49 | Attempt to crack 5x5 by xoring the current and best solution. |
| 50 | Mutate the result. | 50 | Mutate the result. |
| 51 | 51 | ||
| 52 | \(fn)" t nil) | 52 | \(fn)" t nil) |
| 53 | 53 | ||
| 54 | (autoload (quote 5x5-crack) "5x5" "\ | 54 | (autoload '5x5-crack "5x5" "\ |
| 55 | Attempt to find a solution for 5x5. | 55 | Attempt to find a solution for 5x5. |
| 56 | 56 | ||
| 57 | 5x5-crack takes the argument BREEDER which should be a function that takes | 57 | 5x5-crack takes the argument BREEDER which should be a function that takes |
| @@ -63,17 +63,17 @@ should return a grid vector array that is the new solution. | |||
| 63 | 63 | ||
| 64 | ;;;*** | 64 | ;;;*** |
| 65 | 65 | ||
| 66 | ;;;### (autoloads nil "abbrev" "abbrev.el" (18104 24730)) | 66 | ;;;### (autoloads nil "abbrev" "abbrev.el" (18212 46004)) |
| 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 | ;;;;;; (18104 24730)) | 73 | ;;;;;; (18088 55079)) |
| 74 | ;;; Generated autoloads from abbrevlist.el | 74 | ;;; Generated autoloads from abbrevlist.el |
| 75 | 75 | ||
| 76 | (autoload (quote list-one-abbrev-table) "abbrevlist" "\ | 76 | (autoload 'list-one-abbrev-table "abbrevlist" "\ |
| 77 | Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER. | 77 | Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER. |
| 78 | 78 | ||
| 79 | \(fn ABBREV-TABLE OUTPUT-BUFFER)" nil nil) | 79 | \(fn ABBREV-TABLE OUTPUT-BUFFER)" nil nil) |
| @@ -81,10 +81,10 @@ 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 | ;;;;;; (18104 24762)) | 84 | ;;;;;; (18173 8195)) |
| 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 'ada-add-extensions "ada-mode" "\ |
| 88 | Define SPEC and BODY as being valid extensions for Ada files. | 88 | Define SPEC and BODY as being valid extensions for Ada files. |
| 89 | Going from body to spec with `ff-find-other-file' used these | 89 | Going from body to spec with `ff-find-other-file' used these |
| 90 | extensions. | 90 | extensions. |
| @@ -93,7 +93,7 @@ the file name. | |||
| 93 | 93 | ||
| 94 | \(fn SPEC BODY)" nil nil) | 94 | \(fn SPEC BODY)" nil nil) |
| 95 | 95 | ||
| 96 | (autoload (quote ada-mode) "ada-mode" "\ | 96 | (autoload 'ada-mode "ada-mode" "\ |
| 97 | Ada mode is the major mode for editing Ada code. | 97 | Ada mode is the major mode for editing Ada code. |
| 98 | 98 | ||
| 99 | Bindings are as follows: (Note: 'LFD' is control-j.) | 99 | Bindings are as follows: (Note: 'LFD' is control-j.) |
| @@ -142,10 +142,10 @@ 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 | ;;;;;; (18104 24762)) | 145 | ;;;;;; (18088 55114)) |
| 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 'ada-header "ada-stmt" "\ |
| 149 | Insert a descriptive header at the top of the file. | 149 | Insert a descriptive header at the top of the file. |
| 150 | 150 | ||
| 151 | \(fn)" t nil) | 151 | \(fn)" t nil) |
| @@ -153,10 +153,10 @@ 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 | ;;;;;; (18104 24762)) | 156 | ;;;;;; (18201 33327)) |
| 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 'ada-find-file "ada-xref" "\ |
| 160 | Open FILENAME, from anywhere in the source path. | 160 | Open FILENAME, from anywhere in the source path. |
| 161 | Completion is available. | 161 | Completion is available. |
| 162 | 162 | ||
| @@ -167,8 +167,8 @@ Completion is available. | |||
| 167 | ;;;### (autoloads (change-log-merge add-log-current-defun change-log-mode | 167 | ;;;### (autoloads (change-log-merge add-log-current-defun change-log-mode |
| 168 | ;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log | 168 | ;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log |
| 169 | ;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name | 169 | ;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name |
| 170 | ;;;;;; add-log-current-defun-function) "add-log" "add-log.el" (18104 | 170 | ;;;;;; add-log-current-defun-function) "add-log" "add-log.el" (18210 |
| 171 | ;;;;;; 24730)) | 171 | ;;;;;; 13714)) |
| 172 | ;;; Generated autoloads from add-log.el | 172 | ;;; Generated autoloads from add-log.el |
| 173 | 173 | ||
| 174 | (defvar add-log-current-defun-function nil "\ | 174 | (defvar add-log-current-defun-function nil "\ |
| @@ -176,13 +176,13 @@ If non-nil, function to guess name of surrounding function. | |||
| 176 | It is used by `add-log-current-defun' in preference to built-in rules. | 176 | It is used by `add-log-current-defun' in preference to built-in rules. |
| 177 | Returns function's name as a string, or nil if outside a function.") | 177 | Returns function's name as a string, or nil if outside a function.") |
| 178 | 178 | ||
| 179 | (custom-autoload (quote add-log-current-defun-function) "add-log" t) | 179 | (custom-autoload 'add-log-current-defun-function "add-log" t) |
| 180 | 180 | ||
| 181 | (defvar add-log-full-name nil "\ | 181 | (defvar add-log-full-name nil "\ |
| 182 | Full name of user, for inclusion in ChangeLog daily headers. | 182 | Full name of user, for inclusion in ChangeLog daily headers. |
| 183 | This defaults to the value returned by the function `user-full-name'.") | 183 | This defaults to the value returned by the function `user-full-name'.") |
| 184 | 184 | ||
| 185 | (custom-autoload (quote add-log-full-name) "add-log" t) | 185 | (custom-autoload 'add-log-full-name "add-log" t) |
| 186 | 186 | ||
| 187 | (defvar add-log-mailing-address nil "\ | 187 | (defvar add-log-mailing-address nil "\ |
| 188 | Email addresses of user, for inclusion in ChangeLog headers. | 188 | Email addresses of user, for inclusion in ChangeLog headers. |
| @@ -191,14 +191,14 @@ being a simple string, this value can also be a list. All elements | |||
| 191 | will be recognized as referring to the same user; when creating a new | 191 | will be recognized as referring to the same user; when creating a new |
| 192 | ChangeLog entry, one element will be chosen at random.") | 192 | ChangeLog entry, one element will be chosen at random.") |
| 193 | 193 | ||
| 194 | (custom-autoload (quote add-log-mailing-address) "add-log" t) | 194 | (custom-autoload 'add-log-mailing-address "add-log" t) |
| 195 | 195 | ||
| 196 | (autoload (quote prompt-for-change-log-name) "add-log" "\ | 196 | (autoload 'prompt-for-change-log-name "add-log" "\ |
| 197 | Prompt for a change log name. | 197 | Prompt for a change log name. |
| 198 | 198 | ||
| 199 | \(fn)" nil nil) | 199 | \(fn)" nil nil) |
| 200 | 200 | ||
| 201 | (autoload (quote find-change-log) "add-log" "\ | 201 | (autoload 'find-change-log "add-log" "\ |
| 202 | Find a change log file for \\[add-change-log-entry] and return the name. | 202 | Find a change log file for \\[add-change-log-entry] and return the name. |
| 203 | 203 | ||
| 204 | Optional arg FILE-NAME specifies the file to use. | 204 | Optional arg FILE-NAME specifies the file to use. |
| @@ -216,7 +216,7 @@ Optional arg BUFFER-FILE overrides `buffer-file-name'. | |||
| 216 | 216 | ||
| 217 | \(fn &optional FILE-NAME BUFFER-FILE)" nil nil) | 217 | \(fn &optional FILE-NAME BUFFER-FILE)" nil nil) |
| 218 | 218 | ||
| 219 | (autoload (quote add-change-log-entry) "add-log" "\ | 219 | (autoload 'add-change-log-entry "add-log" "\ |
| 220 | Find change log file, and add an entry for today and an item for this file. | 220 | Find change log file, and add an entry for today and an item for this file. |
| 221 | Optional arg WHOAMI (interactive prefix) non-nil means prompt for user | 221 | Optional arg WHOAMI (interactive prefix) non-nil means prompt for user |
| 222 | name and email (stored in `add-log-full-name' and `add-log-mailing-address'). | 222 | name and email (stored in `add-log-full-name' and `add-log-mailing-address'). |
| @@ -243,7 +243,7 @@ non-nil, otherwise in local time. | |||
| 243 | 243 | ||
| 244 | \(fn &optional WHOAMI FILE-NAME OTHER-WINDOW NEW-ENTRY)" t nil) | 244 | \(fn &optional WHOAMI FILE-NAME OTHER-WINDOW NEW-ENTRY)" t nil) |
| 245 | 245 | ||
| 246 | (autoload (quote add-change-log-entry-other-window) "add-log" "\ | 246 | (autoload 'add-change-log-entry-other-window "add-log" "\ |
| 247 | Find change log file in other window and add entry and item. | 247 | Find change log file in other window and add entry and item. |
| 248 | This is just like `add-change-log-entry' except that it displays | 248 | This is just like `add-change-log-entry' except that it displays |
| 249 | the change log file in another window. | 249 | the change log file in another window. |
| @@ -251,7 +251,7 @@ the change log file in another window. | |||
| 251 | \(fn &optional WHOAMI FILE-NAME)" t nil) | 251 | \(fn &optional WHOAMI FILE-NAME)" t nil) |
| 252 | (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window) | 252 | (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window) |
| 253 | 253 | ||
| 254 | (autoload (quote change-log-mode) "add-log" "\ | 254 | (autoload 'change-log-mode "add-log" "\ |
| 255 | Major mode for editing change logs; like Indented Text Mode. | 255 | Major mode for editing change logs; like Indented Text Mode. |
| 256 | Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. | 256 | Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. |
| 257 | New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. | 257 | New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. |
| @@ -261,16 +261,16 @@ Runs `change-log-mode-hook'. | |||
| 261 | 261 | ||
| 262 | \(fn)" t nil) | 262 | \(fn)" t nil) |
| 263 | 263 | ||
| 264 | (defvar add-log-lisp-like-modes (quote (emacs-lisp-mode lisp-mode scheme-mode dsssl-mode lisp-interaction-mode)) "\ | 264 | (defvar add-log-lisp-like-modes '(emacs-lisp-mode lisp-mode scheme-mode dsssl-mode lisp-interaction-mode) "\ |
| 265 | *Modes that look like Lisp to `add-log-current-defun'.") | 265 | *Modes that look like Lisp to `add-log-current-defun'.") |
| 266 | 266 | ||
| 267 | (defvar add-log-c-like-modes (quote (c-mode c++-mode c++-c-mode objc-mode)) "\ | 267 | (defvar add-log-c-like-modes '(c-mode c++-mode c++-c-mode objc-mode) "\ |
| 268 | *Modes that look like C to `add-log-current-defun'.") | 268 | *Modes that look like C to `add-log-current-defun'.") |
| 269 | 269 | ||
| 270 | (defvar add-log-tex-like-modes (quote (TeX-mode plain-TeX-mode LaTeX-mode tex-mode)) "\ | 270 | (defvar add-log-tex-like-modes '(TeX-mode plain-TeX-mode LaTeX-mode tex-mode) "\ |
| 271 | *Modes that look like TeX to `add-log-current-defun'.") | 271 | *Modes that look like TeX to `add-log-current-defun'.") |
| 272 | 272 | ||
| 273 | (autoload (quote add-log-current-defun) "add-log" "\ | 273 | (autoload 'add-log-current-defun "add-log" "\ |
| 274 | Return name of function definition point is in, or nil. | 274 | Return name of function definition point is in, or nil. |
| 275 | 275 | ||
| 276 | Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), | 276 | Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), |
| @@ -286,7 +286,7 @@ Has a preference of looking backwards. | |||
| 286 | 286 | ||
| 287 | \(fn)" nil nil) | 287 | \(fn)" nil nil) |
| 288 | 288 | ||
| 289 | (autoload (quote change-log-merge) "add-log" "\ | 289 | (autoload 'change-log-merge "add-log" "\ |
| 290 | Merge the contents of change log file OTHER-LOG with this buffer. | 290 | Merge the contents of change log file OTHER-LOG with this buffer. |
| 291 | Both must be found in Change Log mode (since the merging depends on | 291 | Both must be found in Change Log mode (since the merging depends on |
| 292 | the appropriate motion commands). OTHER-LOG can be either a file name | 292 | the appropriate motion commands). OTHER-LOG can be either a file name |
| @@ -301,10 +301,10 @@ old-style time formats for entries are supported. | |||
| 301 | 301 | ||
| 302 | ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice | 302 | ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice |
| 303 | ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) | 303 | ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) |
| 304 | ;;;;;; "advice" "emacs-lisp/advice.el" (18104 24745)) | 304 | ;;;;;; "advice" "emacs-lisp/advice.el" (18213 13926)) |
| 305 | ;;; Generated autoloads from emacs-lisp/advice.el | 305 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 306 | 306 | ||
| 307 | (defvar ad-redefinition-action (quote warn) "\ | 307 | (defvar ad-redefinition-action 'warn "\ |
| 308 | *Defines what to do with redefinitions during Advice de/activation. | 308 | *Defines what to do with redefinitions during Advice de/activation. |
| 309 | Redefinition occurs if a previously activated function that already has an | 309 | Redefinition occurs if a previously activated function that already has an |
| 310 | original definition associated with it gets redefined and then de/activated. | 310 | original definition associated with it gets redefined and then de/activated. |
| @@ -315,9 +315,9 @@ old original, or keep it and raise an error. The values `accept', `discard', | |||
| 315 | it additionally prints a warning message. All other values will be | 315 | it additionally prints a warning message. All other values will be |
| 316 | interpreted as `error'.") | 316 | interpreted as `error'.") |
| 317 | 317 | ||
| 318 | (custom-autoload (quote ad-redefinition-action) "advice" t) | 318 | (custom-autoload 'ad-redefinition-action "advice" t) |
| 319 | 319 | ||
| 320 | (defvar ad-default-compilation-action (quote maybe) "\ | 320 | (defvar ad-default-compilation-action 'maybe "\ |
| 321 | *Defines whether to compile advised definitions during activation. | 321 | *Defines whether to compile advised definitions during activation. |
| 322 | A value of `always' will result in unconditional compilation, `never' will | 322 | A value of `always' will result in unconditional compilation, `never' will |
| 323 | always avoid compilation, `maybe' will compile if the byte-compiler is already | 323 | always avoid compilation, `maybe' will compile if the byte-compiler is already |
| @@ -326,19 +326,19 @@ advised function is compiled or a built-in function. Every other value will | |||
| 326 | be interpreted as `maybe'. This variable will only be considered if the | 326 | be interpreted as `maybe'. This variable will only be considered if the |
| 327 | COMPILE argument of `ad-activate' was supplied as nil.") | 327 | COMPILE argument of `ad-activate' was supplied as nil.") |
| 328 | 328 | ||
| 329 | (custom-autoload (quote ad-default-compilation-action) "advice" t) | 329 | (custom-autoload 'ad-default-compilation-action "advice" t) |
| 330 | 330 | ||
| 331 | (autoload (quote ad-enable-advice) "advice" "\ | 331 | (autoload 'ad-enable-advice "advice" "\ |
| 332 | Enables the advice of FUNCTION with CLASS and NAME. | 332 | Enables the advice of FUNCTION with CLASS and NAME. |
| 333 | 333 | ||
| 334 | \(fn FUNCTION CLASS NAME)" t nil) | 334 | \(fn FUNCTION CLASS NAME)" t nil) |
| 335 | 335 | ||
| 336 | (autoload (quote ad-disable-advice) "advice" "\ | 336 | (autoload 'ad-disable-advice "advice" "\ |
| 337 | Disable the advice of FUNCTION with CLASS and NAME. | 337 | Disable the advice of FUNCTION with CLASS and NAME. |
| 338 | 338 | ||
| 339 | \(fn FUNCTION CLASS NAME)" t nil) | 339 | \(fn FUNCTION CLASS NAME)" t nil) |
| 340 | 340 | ||
| 341 | (autoload (quote ad-add-advice) "advice" "\ | 341 | (autoload 'ad-add-advice "advice" "\ |
| 342 | Add a piece of ADVICE to FUNCTION's list of advices in CLASS. | 342 | Add a piece of ADVICE to FUNCTION's list of advices in CLASS. |
| 343 | If FUNCTION already has one or more pieces of advice of the specified | 343 | If FUNCTION already has one or more pieces of advice of the specified |
| 344 | CLASS then POSITION determines where the new piece will go. The value | 344 | CLASS then POSITION determines where the new piece will go. The value |
| @@ -353,7 +353,7 @@ will clear the cache. | |||
| 353 | 353 | ||
| 354 | \(fn FUNCTION ADVICE CLASS POSITION)" nil nil) | 354 | \(fn FUNCTION ADVICE CLASS POSITION)" nil nil) |
| 355 | 355 | ||
| 356 | (autoload (quote ad-activate) "advice" "\ | 356 | (autoload 'ad-activate "advice" "\ |
| 357 | Activate all the advice information of an advised FUNCTION. | 357 | Activate all the advice information of an advised FUNCTION. |
| 358 | If FUNCTION has a proper original definition then an advised | 358 | If FUNCTION has a proper original definition then an advised |
| 359 | definition will be generated from FUNCTION's advice info and the | 359 | definition will be generated from FUNCTION's advice info and the |
| @@ -372,7 +372,7 @@ definition will always be cached for later usage. | |||
| 372 | 372 | ||
| 373 | \(fn FUNCTION &optional COMPILE)" t nil) | 373 | \(fn FUNCTION &optional COMPILE)" t nil) |
| 374 | 374 | ||
| 375 | (autoload (quote defadvice) "advice" "\ | 375 | (autoload 'defadvice "advice" "\ |
| 376 | Define a piece of advice for FUNCTION (a symbol). | 376 | Define a piece of advice for FUNCTION (a symbol). |
| 377 | The syntax of `defadvice' is as follows: | 377 | The syntax of `defadvice' is as follows: |
| 378 | 378 | ||
| @@ -429,10 +429,10 @@ See Info node `(elisp)Advising Functions' for comprehensive documentation. | |||
| 429 | 429 | ||
| 430 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule | 430 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule |
| 431 | ;;;;;; align-highlight-rule align-current align-entire align-regexp | 431 | ;;;;;; align-highlight-rule align-current align-entire align-regexp |
| 432 | ;;;;;; align) "align" "align.el" (18104 24730)) | 432 | ;;;;;; align) "align" "align.el" (18088 55079)) |
| 433 | ;;; Generated autoloads from align.el | 433 | ;;; Generated autoloads from align.el |
| 434 | 434 | ||
| 435 | (autoload (quote align) "align" "\ | 435 | (autoload 'align "align" "\ |
| 436 | Attempt to align a region based on a set of alignment rules. | 436 | Attempt to align a region based on a set of alignment rules. |
| 437 | BEG and END mark the region. If BEG and END are specifically set to | 437 | BEG and END mark the region. If BEG and END are specifically set to |
| 438 | nil (this can only be done programmatically), the beginning and end of | 438 | nil (this can only be done programmatically), the beginning and end of |
| @@ -451,7 +451,7 @@ on the format of these lists. | |||
| 451 | 451 | ||
| 452 | \(fn BEG END &optional SEPARATE RULES EXCLUDE-RULES)" t nil) | 452 | \(fn BEG END &optional SEPARATE RULES EXCLUDE-RULES)" t nil) |
| 453 | 453 | ||
| 454 | (autoload (quote align-regexp) "align" "\ | 454 | (autoload 'align-regexp "align" "\ |
| 455 | Align the current region using an ad-hoc rule read from the minibuffer. | 455 | Align the current region using an ad-hoc rule read from the minibuffer. |
| 456 | BEG and END mark the limits of the region. This function will prompt | 456 | BEG and END mark the limits of the region. This function will prompt |
| 457 | for the REGEXP to align with. If no prefix arg was specified, you | 457 | for the REGEXP to align with. If no prefix arg was specified, you |
| @@ -477,7 +477,7 @@ region, call `align-regexp' and type in that regular expression. | |||
| 477 | 477 | ||
| 478 | \(fn BEG END REGEXP &optional GROUP SPACING REPEAT)" t nil) | 478 | \(fn BEG END REGEXP &optional GROUP SPACING REPEAT)" t nil) |
| 479 | 479 | ||
| 480 | (autoload (quote align-entire) "align" "\ | 480 | (autoload 'align-entire "align" "\ |
| 481 | Align the selected region as if it were one alignment section. | 481 | Align the selected region as if it were one alignment section. |
| 482 | BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES | 482 | BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES |
| 483 | is set to a list of rules (see `align-rules-list'), it can be used to | 483 | is set to a list of rules (see `align-rules-list'), it can be used to |
| @@ -486,7 +486,7 @@ align that section. | |||
| 486 | 486 | ||
| 487 | \(fn BEG END &optional RULES EXCLUDE-RULES)" t nil) | 487 | \(fn BEG END &optional RULES EXCLUDE-RULES)" t nil) |
| 488 | 488 | ||
| 489 | (autoload (quote align-current) "align" "\ | 489 | (autoload 'align-current "align" "\ |
| 490 | Call `align' on the current alignment section. | 490 | Call `align' on the current alignment section. |
| 491 | This function assumes you want to align only the current section, and | 491 | This function assumes you want to align only the current section, and |
| 492 | so saves you from having to specify the region. If RULES or | 492 | so saves you from having to specify the region. If RULES or |
| @@ -496,7 +496,7 @@ been used to align that section. | |||
| 496 | 496 | ||
| 497 | \(fn &optional RULES EXCLUDE-RULES)" t nil) | 497 | \(fn &optional RULES EXCLUDE-RULES)" t nil) |
| 498 | 498 | ||
| 499 | (autoload (quote align-highlight-rule) "align" "\ | 499 | (autoload 'align-highlight-rule "align" "\ |
| 500 | Highlight the whitespace which a given rule would have modified. | 500 | Highlight the whitespace which a given rule would have modified. |
| 501 | BEG and END mark the extent of the region. TITLE identifies the rule | 501 | BEG and END mark the extent of the region. TITLE identifies the rule |
| 502 | that should be highlighted. If RULES or EXCLUDE-RULES is set to a | 502 | that should be highlighted. If RULES or EXCLUDE-RULES is set to a |
| @@ -506,12 +506,12 @@ to be colored. | |||
| 506 | 506 | ||
| 507 | \(fn BEG END TITLE &optional RULES EXCLUDE-RULES)" t nil) | 507 | \(fn BEG END TITLE &optional RULES EXCLUDE-RULES)" t nil) |
| 508 | 508 | ||
| 509 | (autoload (quote align-unhighlight-rule) "align" "\ | 509 | (autoload 'align-unhighlight-rule "align" "\ |
| 510 | Remove any highlighting that was added by `align-highlight-rule'. | 510 | Remove any highlighting that was added by `align-highlight-rule'. |
| 511 | 511 | ||
| 512 | \(fn)" t nil) | 512 | \(fn)" t nil) |
| 513 | 513 | ||
| 514 | (autoload (quote align-newline-and-indent) "align" "\ | 514 | (autoload 'align-newline-and-indent "align" "\ |
| 515 | A replacement function for `newline-and-indent', aligning as it goes. | 515 | A replacement function for `newline-and-indent', aligning as it goes. |
| 516 | 516 | ||
| 517 | \(fn)" t nil) | 517 | \(fn)" t nil) |
| @@ -519,47 +519,48 @@ A replacement function for `newline-and-indent', aligning as it goes. | |||
| 519 | ;;;*** | 519 | ;;;*** |
| 520 | 520 | ||
| 521 | ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" | 521 | ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" |
| 522 | ;;;;;; (18104 24730)) | 522 | ;;;;;; (18187 36838)) |
| 523 | ;;; Generated autoloads from allout.el | 523 | ;;; Generated autoloads from allout.el |
| 524 | 524 | ||
| 525 | (put (quote allout-show-bodies) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) | 525 | (put 'allout-show-bodies 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil))))) |
| 526 | 526 | ||
| 527 | (put (quote allout-header-prefix) (quote safe-local-variable) (quote stringp)) | 527 | (put 'allout-header-prefix 'safe-local-variable 'stringp) |
| 528 | 528 | ||
| 529 | (put (quote allout-primary-bullet) (quote safe-local-variable) (quote stringp)) | 529 | (put 'allout-primary-bullet 'safe-local-variable 'stringp) |
| 530 | 530 | ||
| 531 | (put (quote allout-plain-bullets-string) (quote safe-local-variable) (quote stringp)) | 531 | (put 'allout-plain-bullets-string 'safe-local-variable 'stringp) |
| 532 | 532 | ||
| 533 | (put (quote allout-distinctive-bullets-string) (quote safe-local-variable) (quote stringp)) | 533 | (put 'allout-distinctive-bullets-string 'safe-local-variable 'stringp) |
| 534 | 534 | ||
| 535 | (put (quote allout-use-mode-specific-leader) (quote safe-local-variable) (quote (lambda (x) (or (memq x (quote (t nil allout-mode-leaders comment-start))) (stringp x))))) | 535 | (put 'allout-use-mode-specific-leader 'safe-local-variable '(lambda (x) (or (memq x '(t nil allout-mode-leaders comment-start)) (stringp x)))) |
| 536 | 536 | ||
| 537 | (put (quote allout-old-style-prefixes) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) | 537 | (put 'allout-old-style-prefixes 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil))))) |
| 538 | 538 | ||
| 539 | (put (quote allout-stylish-prefixes) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) | 539 | (put 'allout-stylish-prefixes 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil))))) |
| 540 | 540 | ||
| 541 | (put (quote allout-numbered-bullet) (quote safe-local-variable) (if (fboundp (quote string-or-null-p)) (quote string-or-null-p) (quote (lambda (x) (or (stringp x) (null x)))))) | 541 | (put 'allout-numbered-bullet 'safe-local-variable (if (fboundp 'string-or-null-p) 'string-or-null-p '(lambda (x) (or (stringp x) (null x))))) |
| 542 | 542 | ||
| 543 | (put (quote allout-file-xref-bullet) (quote safe-local-variable) (if (fboundp (quote string-or-null-p)) (quote string-or-null-p) (quote (lambda (x) (or (stringp x) (null x)))))) | 543 | (put 'allout-file-xref-bullet 'safe-local-variable (if (fboundp 'string-or-null-p) 'string-or-null-p '(lambda (x) (or (stringp x) (null x))))) |
| 544 | 544 | ||
| 545 | (put (quote allout-presentation-padding) (quote safe-local-variable) (quote integerp)) | 545 | (put 'allout-presentation-padding 'safe-local-variable 'integerp) |
| 546 | 546 | ||
| 547 | (put (quote allout-use-hanging-indents) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) | 547 | (put 'allout-use-hanging-indents 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil))))) |
| 548 | 548 | ||
| 549 | (put (quote allout-reindent-bodies) (quote safe-local-variable) (quote (lambda (x) (memq x (quote (nil t text force)))))) | 549 | (put 'allout-reindent-bodies 'safe-local-variable '(lambda (x) (memq x '(nil t text force)))) |
| 550 | 550 | ||
| 551 | (put (quote allout-layout) (quote safe-local-variable) (quote (lambda (x) (or (numberp x) (listp x) (memq x (quote (: * + -))))))) | 551 | (put 'allout-layout 'safe-local-variable '(lambda (x) (or (numberp x) (listp x) (memq x '(: * + -))))) |
| 552 | 552 | ||
| 553 | (put (quote allout-passphrase-verifier-string) (quote safe-local-variable) (quote stringp)) | 553 | (put 'allout-passphrase-verifier-string 'safe-local-variable 'stringp) |
| 554 | 554 | ||
| 555 | (put (quote allout-passphrase-hint-string) (quote safe-local-variable) (quote stringp)) | 555 | (put 'allout-passphrase-hint-string 'safe-local-variable 'stringp) |
| 556 | 556 | ||
| 557 | (autoload (quote allout-mode) "allout" "\ | 557 | (autoload 'allout-mode "allout" "\ |
| 558 | Toggle minor mode for controlling exposure and editing of text outlines. | 558 | Toggle minor mode for controlling exposure and editing of text outlines. |
| 559 | \\<allout-mode-map> | 559 | \\<allout-mode-map> |
| 560 | 560 | ||
| 561 | Optional arg forces mode to re-initialize iff arg is positive num or | 561 | Optional prefix argument TOGGLE forces the mode to re-initialize |
| 562 | symbol. Allout outline mode always runs as a minor mode. | 562 | if it is positive, otherwise it turns the mode off. Allout |
| 563 | outline mode always runs as a minor mode. | ||
| 563 | 564 | ||
| 564 | Allout outline mode provides extensive outline oriented formatting and | 565 | Allout outline mode provides extensive outline oriented formatting and |
| 565 | manipulation. It enables structural editing of outlines, as well as | 566 | manipulation. It enables structural editing of outlines, as well as |
| @@ -812,9 +813,9 @@ OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be. | |||
| 812 | 813 | ||
| 813 | \(fn &optional TOGGLE)" t nil) | 814 | \(fn &optional TOGGLE)" t nil) |
| 814 | 815 | ||
| 815 | (defalias (quote outlinify-sticky) (quote outlineify-sticky)) | 816 | (defalias 'outlinify-sticky 'outlineify-sticky) |
| 816 | 817 | ||
| 817 | (autoload (quote outlineify-sticky) "allout" "\ | 818 | (autoload 'outlineify-sticky "allout" "\ |
| 818 | Activate outline mode and establish file var so it is started subsequently. | 819 | Activate outline mode and establish file var so it is started subsequently. |
| 819 | 820 | ||
| 820 | See doc-string for `allout-layout' and `allout-init' for details on | 821 | See doc-string for `allout-layout' and `allout-init' for details on |
| @@ -825,12 +826,12 @@ setup for auto-startup. | |||
| 825 | ;;;*** | 826 | ;;;*** |
| 826 | 827 | ||
| 827 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" | 828 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" |
| 828 | ;;;;;; "net/ange-ftp.el" (18104 24759)) | 829 | ;;;;;; "net/ange-ftp.el" (18203 37788)) |
| 829 | ;;; Generated autoloads from net/ange-ftp.el | 830 | ;;; Generated autoloads from net/ange-ftp.el |
| 830 | 831 | ||
| 831 | (defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir)) | 832 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
| 832 | 833 | ||
| 833 | (autoload (quote ange-ftp-reread-dir) "ange-ftp" "\ | 834 | (autoload 'ange-ftp-reread-dir "ange-ftp" "\ |
| 834 | Reread remote directory DIR to update the directory cache. | 835 | Reread remote directory DIR to update the directory cache. |
| 835 | The implementation of remote ftp file names caches directory contents | 836 | The implementation of remote ftp file names caches directory contents |
| 836 | for speed. Therefore, when new remote files are created, Emacs | 837 | for speed. Therefore, when new remote files are created, Emacs |
| @@ -839,7 +840,7 @@ directory, so that Emacs will know its current contents. | |||
| 839 | 840 | ||
| 840 | \(fn &optional DIR)" t nil) | 841 | \(fn &optional DIR)" t nil) |
| 841 | 842 | ||
| 842 | (autoload (quote ange-ftp-hook-function) "ange-ftp" "\ | 843 | (autoload 'ange-ftp-hook-function "ange-ftp" "\ |
| 843 | Not documented | 844 | Not documented |
| 844 | 845 | ||
| 845 | \(fn OPERATION &rest ARGS)" nil nil) | 846 | \(fn OPERATION &rest ARGS)" nil nil) |
| @@ -847,10 +848,10 @@ Not documented | |||
| 847 | ;;;*** | 848 | ;;;*** |
| 848 | 849 | ||
| 849 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) | 850 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) |
| 850 | ;;;;;; "animate" "play/animate.el" (18104 24760)) | 851 | ;;;;;; "animate" "play/animate.el" (18088 55113)) |
| 851 | ;;; Generated autoloads from play/animate.el | 852 | ;;; Generated autoloads from play/animate.el |
| 852 | 853 | ||
| 853 | (autoload (quote animate-string) "animate" "\ | 854 | (autoload 'animate-string "animate" "\ |
| 854 | Display STRING starting at position VPOS, HPOS, using animation. | 855 | Display STRING starting at position VPOS, HPOS, using animation. |
| 855 | The characters start at randomly chosen places, | 856 | The characters start at randomly chosen places, |
| 856 | and all slide in parallel to their final positions, | 857 | and all slide in parallel to their final positions, |
| @@ -860,13 +861,13 @@ in the current window. | |||
| 860 | 861 | ||
| 861 | \(fn STRING VPOS &optional HPOS)" nil nil) | 862 | \(fn STRING VPOS &optional HPOS)" nil nil) |
| 862 | 863 | ||
| 863 | (autoload (quote animate-sequence) "animate" "\ | 864 | (autoload 'animate-sequence "animate" "\ |
| 864 | Display strings from LIST-OF-STRING with animation in a new buffer. | 865 | Display strings from LIST-OF-STRING with animation in a new buffer. |
| 865 | Strings will be separated from each other by SPACE lines. | 866 | Strings will be separated from each other by SPACE lines. |
| 866 | 867 | ||
| 867 | \(fn LIST-OF-STRINGS SPACE)" nil nil) | 868 | \(fn LIST-OF-STRINGS SPACE)" nil nil) |
| 868 | 869 | ||
| 869 | (autoload (quote animate-birthday-present) "animate" "\ | 870 | (autoload 'animate-birthday-present "animate" "\ |
| 870 | Display one's birthday present in a new buffer. | 871 | Display one's birthday present in a new buffer. |
| 871 | You can specify the one's name by NAME; the default value is \"Sarah\". | 872 | You can specify the one's name by NAME; the default value is \"Sarah\". |
| 872 | 873 | ||
| @@ -875,15 +876,15 @@ You can specify the one's name by NAME; the default value is \"Sarah\". | |||
| 875 | ;;;*** | 876 | ;;;*** |
| 876 | 877 | ||
| 877 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) | 878 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) |
| 878 | ;;;;;; "ansi-color" "ansi-color.el" (18104 24730)) | 879 | ;;;;;; "ansi-color" "ansi-color.el" (18169 11930)) |
| 879 | ;;; Generated autoloads from ansi-color.el | 880 | ;;; Generated autoloads from ansi-color.el |
| 880 | 881 | ||
| 881 | (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ | 882 | (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ |
| 882 | Set `ansi-color-for-comint-mode' to t. | 883 | Set `ansi-color-for-comint-mode' to t. |
| 883 | 884 | ||
| 884 | \(fn)" t nil) | 885 | \(fn)" t nil) |
| 885 | 886 | ||
| 886 | (autoload (quote ansi-color-process-output) "ansi-color" "\ | 887 | (autoload 'ansi-color-process-output "ansi-color" "\ |
| 887 | Maybe translate SGR control sequences of comint output into text-properties. | 888 | Maybe translate SGR control sequences of comint output into text-properties. |
| 888 | 889 | ||
| 889 | Depending on variable `ansi-color-for-comint-mode' the comint output is | 890 | Depending on variable `ansi-color-for-comint-mode' the comint output is |
| @@ -901,10 +902,10 @@ This is a good function to put in `comint-output-filter-functions'. | |||
| 901 | ;;;*** | 902 | ;;;*** |
| 902 | 903 | ||
| 903 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) | 904 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) |
| 904 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (18104 24763)) | 905 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (18203 37788)) |
| 905 | ;;; Generated autoloads from progmodes/antlr-mode.el | 906 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 906 | 907 | ||
| 907 | (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ | 908 | (autoload 'antlr-show-makefile-rules "antlr-mode" "\ |
| 908 | Show Makefile rules for all grammar files in the current directory. | 909 | Show Makefile rules for all grammar files in the current directory. |
| 909 | If the `major-mode' of the current buffer has the value `makefile-mode', | 910 | If the `major-mode' of the current buffer has the value `makefile-mode', |
| 910 | the rules are directory inserted at point. Otherwise, a *Help* buffer | 911 | the rules are directory inserted at point. Otherwise, a *Help* buffer |
| @@ -923,13 +924,13 @@ commentary with value `antlr-help-unknown-file-text' is added. The | |||
| 923 | 924 | ||
| 924 | \(fn)" t nil) | 925 | \(fn)" t nil) |
| 925 | 926 | ||
| 926 | (autoload (quote antlr-mode) "antlr-mode" "\ | 927 | (autoload 'antlr-mode "antlr-mode" "\ |
| 927 | Major mode for editing ANTLR grammar files. | 928 | Major mode for editing ANTLR grammar files. |
| 928 | \\{antlr-mode-map} | 929 | \\{antlr-mode-map} |
| 929 | 930 | ||
| 930 | \(fn)" t nil) | 931 | \(fn)" t nil) |
| 931 | 932 | ||
| 932 | (autoload (quote antlr-set-tabs) "antlr-mode" "\ | 933 | (autoload 'antlr-set-tabs "antlr-mode" "\ |
| 933 | Use ANTLR's convention for TABs according to `antlr-tab-offset-alist'. | 934 | Use ANTLR's convention for TABs according to `antlr-tab-offset-alist'. |
| 934 | Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | 935 | Used in `antlr-mode'. Also a useful function in `java-mode-hook'. |
| 935 | 936 | ||
| @@ -940,7 +941,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 940 | ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add | 941 | ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add |
| 941 | ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line | 942 | ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line |
| 942 | ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time | 943 | ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time |
| 943 | ;;;;;; appt-issue-message) "appt" "calendar/appt.el" (18104 24745)) | 944 | ;;;;;; appt-issue-message) "appt" "calendar/appt.el" (18090 40233)) |
| 944 | ;;; Generated autoloads from calendar/appt.el | 945 | ;;; Generated autoloads from calendar/appt.el |
| 945 | 946 | ||
| 946 | (defvar appt-issue-message t "\ | 947 | (defvar appt-issue-message t "\ |
| @@ -948,60 +949,60 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 948 | To be detected, the diary entry must have the format described in the | 949 | To be detected, the diary entry must have the format described in the |
| 949 | documentation of the function `appt-check'.") | 950 | documentation of the function `appt-check'.") |
| 950 | 951 | ||
| 951 | (custom-autoload (quote appt-issue-message) "appt" t) | 952 | (custom-autoload 'appt-issue-message "appt" t) |
| 952 | 953 | ||
| 953 | (defvar appt-message-warning-time 12 "\ | 954 | (defvar appt-message-warning-time 12 "\ |
| 954 | *Time in minutes before an appointment that the warning begins.") | 955 | *Time in minutes before an appointment that the warning begins.") |
| 955 | 956 | ||
| 956 | (custom-autoload (quote appt-message-warning-time) "appt" t) | 957 | (custom-autoload 'appt-message-warning-time "appt" t) |
| 957 | 958 | ||
| 958 | (defvar appt-audible t "\ | 959 | (defvar appt-audible t "\ |
| 959 | *Non-nil means beep to indicate appointment.") | 960 | *Non-nil means beep to indicate appointment.") |
| 960 | 961 | ||
| 961 | (custom-autoload (quote appt-audible) "appt" t) | 962 | (custom-autoload 'appt-audible "appt" t) |
| 962 | 963 | ||
| 963 | (defvar appt-visible t "\ | 964 | (defvar appt-visible t "\ |
| 964 | *Non-nil means display appointment message in echo area. | 965 | *Non-nil means display appointment message in echo area. |
| 965 | This variable is only relevant if `appt-msg-window' is nil.") | 966 | This variable is only relevant if `appt-msg-window' is nil.") |
| 966 | 967 | ||
| 967 | (custom-autoload (quote appt-visible) "appt" t) | 968 | (custom-autoload 'appt-visible "appt" t) |
| 968 | 969 | ||
| 969 | (defvar appt-msg-window t "\ | 970 | (defvar appt-msg-window t "\ |
| 970 | *Non-nil means display appointment message in another window. | 971 | *Non-nil means display appointment message in another window. |
| 971 | If non-nil, this variable overrides `appt-visible'.") | 972 | If non-nil, this variable overrides `appt-visible'.") |
| 972 | 973 | ||
| 973 | (custom-autoload (quote appt-msg-window) "appt" t) | 974 | (custom-autoload 'appt-msg-window "appt" t) |
| 974 | 975 | ||
| 975 | (defvar appt-display-mode-line t "\ | 976 | (defvar appt-display-mode-line t "\ |
| 976 | *Non-nil means display minutes to appointment and time on the mode line. | 977 | *Non-nil means display minutes to appointment and time on the mode line. |
| 977 | This is in addition to any other display of appointment messages.") | 978 | This is in addition to any other display of appointment messages.") |
| 978 | 979 | ||
| 979 | (custom-autoload (quote appt-display-mode-line) "appt" t) | 980 | (custom-autoload 'appt-display-mode-line "appt" t) |
| 980 | 981 | ||
| 981 | (defvar appt-display-duration 10 "\ | 982 | (defvar appt-display-duration 10 "\ |
| 982 | *The number of seconds an appointment message is displayed. | 983 | *The number of seconds an appointment message is displayed. |
| 983 | Only relevant if reminders are to be displayed in their own window.") | 984 | Only relevant if reminders are to be displayed in their own window.") |
| 984 | 985 | ||
| 985 | (custom-autoload (quote appt-display-duration) "appt" t) | 986 | (custom-autoload 'appt-display-duration "appt" t) |
| 986 | 987 | ||
| 987 | (defvar appt-display-diary t "\ | 988 | (defvar appt-display-diary t "\ |
| 988 | *Non-nil displays the diary when the appointment list is first initialized. | 989 | *Non-nil displays the diary when the appointment list is first initialized. |
| 989 | This will occur at midnight when the appointment list is updated.") | 990 | This will occur at midnight when the appointment list is updated.") |
| 990 | 991 | ||
| 991 | (custom-autoload (quote appt-display-diary) "appt" t) | 992 | (custom-autoload 'appt-display-diary "appt" t) |
| 992 | 993 | ||
| 993 | (autoload (quote appt-add) "appt" "\ | 994 | (autoload 'appt-add "appt" "\ |
| 994 | Add an appointment for today at NEW-APPT-TIME with message NEW-APPT-MSG. | 995 | Add an appointment for today at NEW-APPT-TIME with message NEW-APPT-MSG. |
| 995 | The time should be in either 24 hour format or am/pm format. | 996 | The time should be in either 24 hour format or am/pm format. |
| 996 | 997 | ||
| 997 | \(fn NEW-APPT-TIME NEW-APPT-MSG)" t nil) | 998 | \(fn NEW-APPT-TIME NEW-APPT-MSG)" t nil) |
| 998 | 999 | ||
| 999 | (autoload (quote appt-delete) "appt" "\ | 1000 | (autoload 'appt-delete "appt" "\ |
| 1000 | Delete an appointment from the list of appointments. | 1001 | Delete an appointment from the list of appointments. |
| 1001 | 1002 | ||
| 1002 | \(fn)" t nil) | 1003 | \(fn)" t nil) |
| 1003 | 1004 | ||
| 1004 | (autoload (quote appt-make-list) "appt" "\ | 1005 | (autoload 'appt-make-list "appt" "\ |
| 1005 | Update the appointments list from today's diary buffer. | 1006 | Update the appointments list from today's diary buffer. |
| 1006 | The time must be at the beginning of a line for it to be | 1007 | The time must be at the beginning of a line for it to be |
| 1007 | put in the appointments list (see examples in documentation of | 1008 | put in the appointments list (see examples in documentation of |
| @@ -1017,7 +1018,7 @@ appointment package (if it is not already active). | |||
| 1017 | 1018 | ||
| 1018 | \(fn)" nil nil) | 1019 | \(fn)" nil nil) |
| 1019 | 1020 | ||
| 1020 | (autoload (quote appt-activate) "appt" "\ | 1021 | (autoload 'appt-activate "appt" "\ |
| 1021 | Toggle checking of appointments. | 1022 | Toggle checking of appointments. |
| 1022 | With optional numeric argument ARG, turn appointment checking on if | 1023 | With optional numeric argument ARG, turn appointment checking on if |
| 1023 | ARG is positive, otherwise off. | 1024 | ARG is positive, otherwise off. |
| @@ -1028,10 +1029,10 @@ ARG is positive, otherwise off. | |||
| 1028 | 1029 | ||
| 1029 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property | 1030 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property |
| 1030 | ;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" | 1031 | ;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" |
| 1031 | ;;;;;; "apropos.el" (18104 24730)) | 1032 | ;;;;;; "apropos.el" (18088 55080)) |
| 1032 | ;;; Generated autoloads from apropos.el | 1033 | ;;; Generated autoloads from apropos.el |
| 1033 | 1034 | ||
| 1034 | (autoload (quote apropos-read-pattern) "apropos" "\ | 1035 | (autoload 'apropos-read-pattern "apropos" "\ |
| 1035 | Read an apropos pattern, either a word list or a regexp. | 1036 | Read an apropos pattern, either a word list or a regexp. |
| 1036 | Returns the user pattern, either a list of words which are matched | 1037 | Returns the user pattern, either a list of words which are matched |
| 1037 | literally, or a string which is used as a regexp to search for. | 1038 | literally, or a string which is used as a regexp to search for. |
| @@ -1041,7 +1042,7 @@ kind of objects to search. | |||
| 1041 | 1042 | ||
| 1042 | \(fn SUBJECT)" nil nil) | 1043 | \(fn SUBJECT)" nil nil) |
| 1043 | 1044 | ||
| 1044 | (autoload (quote apropos-variable) "apropos" "\ | 1045 | (autoload 'apropos-variable "apropos" "\ |
| 1045 | Show user variables that match PATTERN. | 1046 | Show user variables that match PATTERN. |
| 1046 | PATTERN can be a word, a list of words (separated by spaces), | 1047 | PATTERN can be a word, a list of words (separated by spaces), |
| 1047 | or a regexp (using some regexp special characters). If it is a word, | 1048 | or a regexp (using some regexp special characters). If it is a word, |
| @@ -1053,9 +1054,9 @@ normal variables. | |||
| 1053 | 1054 | ||
| 1054 | \(fn PATTERN &optional DO-ALL)" t nil) | 1055 | \(fn PATTERN &optional DO-ALL)" t nil) |
| 1055 | 1056 | ||
| 1056 | (defalias (quote command-apropos) (quote apropos-command)) | 1057 | (defalias 'command-apropos 'apropos-command) |
| 1057 | 1058 | ||
| 1058 | (autoload (quote apropos-command) "apropos" "\ | 1059 | (autoload 'apropos-command "apropos" "\ |
| 1059 | Show commands (interactively callable functions) that match PATTERN. | 1060 | Show commands (interactively callable functions) that match PATTERN. |
| 1060 | PATTERN can be a word, a list of words (separated by spaces), | 1061 | PATTERN can be a word, a list of words (separated by spaces), |
| 1061 | or a regexp (using some regexp special characters). If it is a word, | 1062 | or a regexp (using some regexp special characters). If it is a word, |
| @@ -1073,12 +1074,12 @@ while a list of strings is used as a word list. | |||
| 1073 | 1074 | ||
| 1074 | \(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t nil) | 1075 | \(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t nil) |
| 1075 | 1076 | ||
| 1076 | (autoload (quote apropos-documentation-property) "apropos" "\ | 1077 | (autoload 'apropos-documentation-property "apropos" "\ |
| 1077 | Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. | 1078 | Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. |
| 1078 | 1079 | ||
| 1079 | \(fn SYMBOL PROPERTY RAW)" nil nil) | 1080 | \(fn SYMBOL PROPERTY RAW)" nil nil) |
| 1080 | 1081 | ||
| 1081 | (autoload (quote apropos) "apropos" "\ | 1082 | (autoload 'apropos "apropos" "\ |
| 1082 | Show all meaningful Lisp symbols whose names match PATTERN. | 1083 | Show all meaningful Lisp symbols whose names match PATTERN. |
| 1083 | Symbols are shown if they are defined as functions, variables, or | 1084 | Symbols are shown if they are defined as functions, variables, or |
| 1084 | faces, or if they have nonempty property lists. | 1085 | faces, or if they have nonempty property lists. |
| @@ -1095,7 +1096,7 @@ Returns list of symbols and documentation found. | |||
| 1095 | 1096 | ||
| 1096 | \(fn PATTERN &optional DO-ALL)" t nil) | 1097 | \(fn PATTERN &optional DO-ALL)" t nil) |
| 1097 | 1098 | ||
| 1098 | (autoload (quote apropos-value) "apropos" "\ | 1099 | (autoload 'apropos-value "apropos" "\ |
| 1099 | Show all symbols whose value's printed representation matches PATTERN. | 1100 | Show all symbols whose value's printed representation matches PATTERN. |
| 1100 | PATTERN can be a word, a list of words (separated by spaces), | 1101 | PATTERN can be a word, a list of words (separated by spaces), |
| 1101 | or a regexp (using some regexp special characters). If it is a word, | 1102 | or a regexp (using some regexp special characters). If it is a word, |
| @@ -1108,7 +1109,7 @@ Returns list of symbols and values found. | |||
| 1108 | 1109 | ||
| 1109 | \(fn PATTERN &optional DO-ALL)" t nil) | 1110 | \(fn PATTERN &optional DO-ALL)" t nil) |
| 1110 | 1111 | ||
| 1111 | (autoload (quote apropos-documentation) "apropos" "\ | 1112 | (autoload 'apropos-documentation "apropos" "\ |
| 1112 | Show symbols whose documentation contains matches for PATTERN. | 1113 | Show symbols whose documentation contains matches for PATTERN. |
| 1113 | PATTERN can be a word, a list of words (separated by spaces), | 1114 | PATTERN can be a word, a list of words (separated by spaces), |
| 1114 | or a regexp (using some regexp special characters). If it is a word, | 1115 | or a regexp (using some regexp special characters). If it is a word, |
| @@ -1124,11 +1125,11 @@ Returns list of symbols and documentation found. | |||
| 1124 | 1125 | ||
| 1125 | ;;;*** | 1126 | ;;;*** |
| 1126 | 1127 | ||
| 1127 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (18104 | 1128 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (18163 |
| 1128 | ;;;;;; 24730)) | 1129 | ;;;;;; 2859)) |
| 1129 | ;;; Generated autoloads from arc-mode.el | 1130 | ;;; Generated autoloads from arc-mode.el |
| 1130 | 1131 | ||
| 1131 | (autoload (quote archive-mode) "arc-mode" "\ | 1132 | (autoload 'archive-mode "arc-mode" "\ |
| 1132 | Major mode for viewing an archive file in a dired-like way. | 1133 | Major mode for viewing an archive file in a dired-like way. |
| 1133 | You can move around using the usual cursor motion commands. | 1134 | You can move around using the usual cursor motion commands. |
| 1134 | Letters no longer insert themselves. | 1135 | Letters no longer insert themselves. |
| @@ -1145,10 +1146,10 @@ archive. | |||
| 1145 | 1146 | ||
| 1146 | ;;;*** | 1147 | ;;;*** |
| 1147 | 1148 | ||
| 1148 | ;;;### (autoloads (array-mode) "array" "array.el" (18104 24730)) | 1149 | ;;;### (autoloads (array-mode) "array" "array.el" (18088 55080)) |
| 1149 | ;;; Generated autoloads from array.el | 1150 | ;;; Generated autoloads from array.el |
| 1150 | 1151 | ||
| 1151 | (autoload (quote array-mode) "array" "\ | 1152 | (autoload 'array-mode "array" "\ |
| 1152 | Major mode for editing arrays. | 1153 | Major mode for editing arrays. |
| 1153 | 1154 | ||
| 1154 | Array mode is a specialized mode for editing arrays. An array is | 1155 | Array mode is a specialized mode for editing arrays. An array is |
| @@ -1216,11 +1217,11 @@ Entering array mode calls the function `array-mode-hook'. | |||
| 1216 | 1217 | ||
| 1217 | ;;;*** | 1218 | ;;;*** |
| 1218 | 1219 | ||
| 1219 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (18104 | 1220 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (18200 |
| 1220 | ;;;;;; 24770)) | 1221 | ;;;;;; 51267)) |
| 1221 | ;;; Generated autoloads from textmodes/artist.el | 1222 | ;;; Generated autoloads from textmodes/artist.el |
| 1222 | 1223 | ||
| 1223 | (autoload (quote artist-mode) "artist" "\ | 1224 | (autoload 'artist-mode "artist" "\ |
| 1224 | Toggle artist mode. With arg, turn artist mode on if arg is positive. | 1225 | Toggle artist mode. With arg, turn artist mode on if arg is positive. |
| 1225 | Artist lets you draw lines, squares, rectangles and poly-lines, ellipses | 1226 | Artist lets you draw lines, squares, rectangles and poly-lines, ellipses |
| 1226 | and circles with your mouse and/or keyboard. | 1227 | and circles with your mouse and/or keyboard. |
| @@ -1422,11 +1423,11 @@ Keymap summary | |||
| 1422 | 1423 | ||
| 1423 | ;;;*** | 1424 | ;;;*** |
| 1424 | 1425 | ||
| 1425 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (18104 | 1426 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (18088 |
| 1426 | ;;;;;; 24763)) | 1427 | ;;;;;; 55114)) |
| 1427 | ;;; Generated autoloads from progmodes/asm-mode.el | 1428 | ;;; Generated autoloads from progmodes/asm-mode.el |
| 1428 | 1429 | ||
| 1429 | (autoload (quote asm-mode) "asm-mode" "\ | 1430 | (autoload 'asm-mode "asm-mode" "\ |
| 1430 | Major mode for editing typical assembler code. | 1431 | Major mode for editing typical assembler code. |
| 1431 | Features a private abbrev table and the following bindings: | 1432 | Features a private abbrev table and the following bindings: |
| 1432 | 1433 | ||
| @@ -1450,33 +1451,28 @@ Special commands: | |||
| 1450 | 1451 | ||
| 1451 | ;;;*** | 1452 | ;;;*** |
| 1452 | 1453 | ||
| 1453 | ;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "obsolete/auto-show.el" | 1454 | ;;;### (autoloads (assistant) "assistant" "gnus/assistant.el" (18212 |
| 1454 | ;;;;;; (17994 6715)) | 1455 | ;;;;;; 21478)) |
| 1455 | ;;; Generated autoloads from obsolete/auto-show.el | 1456 | ;;; Generated autoloads from gnus/assistant.el |
| 1456 | 1457 | ||
| 1457 | (defvar auto-show-mode nil "\ | 1458 | (autoload 'assistant "assistant" "\ |
| 1458 | Obsolete.") | 1459 | Assist setting up Emacs based on FILE. |
| 1459 | 1460 | ||
| 1460 | (custom-autoload (quote auto-show-mode) "auto-show" t) | 1461 | \(fn FILE)" t nil) |
| 1461 | |||
| 1462 | (autoload (quote auto-show-mode) "auto-show" "\ | ||
| 1463 | This command is obsolete. | ||
| 1464 | |||
| 1465 | \(fn ARG)" t nil) | ||
| 1466 | 1462 | ||
| 1467 | ;;;*** | 1463 | ;;;*** |
| 1468 | 1464 | ||
| 1469 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" | 1465 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" |
| 1470 | ;;;;;; (18104 24730)) | 1466 | ;;;;;; (18088 55080)) |
| 1471 | ;;; Generated autoloads from autoarg.el | 1467 | ;;; Generated autoloads from autoarg.el |
| 1472 | 1468 | ||
| 1473 | (defvar autoarg-mode nil "\ | 1469 | (defvar autoarg-mode nil "\ |
| 1474 | Non-nil if Autoarg mode is enabled. | 1470 | Non-nil if Autoarg mode is enabled. |
| 1475 | See the command `autoarg-mode' for a description of this minor mode.") | 1471 | See the command `autoarg-mode' for a description of this minor mode.") |
| 1476 | 1472 | ||
| 1477 | (custom-autoload (quote autoarg-mode) "autoarg" nil) | 1473 | (custom-autoload 'autoarg-mode "autoarg" nil) |
| 1478 | 1474 | ||
| 1479 | (autoload (quote autoarg-mode) "autoarg" "\ | 1475 | (autoload 'autoarg-mode "autoarg" "\ |
| 1480 | Toggle Autoarg minor mode globally. | 1476 | Toggle Autoarg minor mode globally. |
| 1481 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. | 1477 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. |
| 1482 | \\<autoarg-mode-map> | 1478 | \\<autoarg-mode-map> |
| @@ -1505,9 +1501,9 @@ Setting this variable directly does not take effect; | |||
| 1505 | either customize it (see the info node `Easy Customization') | 1501 | either customize it (see the info node `Easy Customization') |
| 1506 | or call the function `autoarg-kp-mode'.") | 1502 | or call the function `autoarg-kp-mode'.") |
| 1507 | 1503 | ||
| 1508 | (custom-autoload (quote autoarg-kp-mode) "autoarg" nil) | 1504 | (custom-autoload 'autoarg-kp-mode "autoarg" nil) |
| 1509 | 1505 | ||
| 1510 | (autoload (quote autoarg-kp-mode) "autoarg" "\ | 1506 | (autoload 'autoarg-kp-mode "autoarg" "\ |
| 1511 | Toggle Autoarg-KP minor mode globally. | 1507 | Toggle Autoarg-KP minor mode globally. |
| 1512 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. | 1508 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. |
| 1513 | \\<autoarg-kp-mode-map> | 1509 | \\<autoarg-kp-mode-map> |
| @@ -1521,10 +1517,10 @@ etc. to supply digit arguments. | |||
| 1521 | ;;;*** | 1517 | ;;;*** |
| 1522 | 1518 | ||
| 1523 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" | 1519 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" |
| 1524 | ;;;;;; (18104 24763)) | 1520 | ;;;;;; (18147 59473)) |
| 1525 | ;;; Generated autoloads from progmodes/autoconf.el | 1521 | ;;; Generated autoloads from progmodes/autoconf.el |
| 1526 | 1522 | ||
| 1527 | (autoload (quote autoconf-mode) "autoconf" "\ | 1523 | (autoload 'autoconf-mode "autoconf" "\ |
| 1528 | Major mode for editing Autoconf configure.in files. | 1524 | Major mode for editing Autoconf configure.in files. |
| 1529 | 1525 | ||
| 1530 | \(fn)" t nil) | 1526 | \(fn)" t nil) |
| @@ -1532,16 +1528,16 @@ Major mode for editing Autoconf configure.in files. | |||
| 1532 | ;;;*** | 1528 | ;;;*** |
| 1533 | 1529 | ||
| 1534 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) | 1530 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) |
| 1535 | ;;;;;; "autoinsert" "autoinsert.el" (18104 24730)) | 1531 | ;;;;;; "autoinsert" "autoinsert.el" (18183 58476)) |
| 1536 | ;;; Generated autoloads from autoinsert.el | 1532 | ;;; Generated autoloads from autoinsert.el |
| 1537 | 1533 | ||
| 1538 | (autoload (quote auto-insert) "autoinsert" "\ | 1534 | (autoload 'auto-insert "autoinsert" "\ |
| 1539 | Insert default contents into new files if variable `auto-insert' is non-nil. | 1535 | Insert default contents into new files if variable `auto-insert' is non-nil. |
| 1540 | Matches the visited file name against the elements of `auto-insert-alist'. | 1536 | Matches the visited file name against the elements of `auto-insert-alist'. |
| 1541 | 1537 | ||
| 1542 | \(fn)" t nil) | 1538 | \(fn)" t nil) |
| 1543 | 1539 | ||
| 1544 | (autoload (quote define-auto-insert) "autoinsert" "\ | 1540 | (autoload 'define-auto-insert "autoinsert" "\ |
| 1545 | Associate CONDITION with (additional) ACTION in `auto-insert-alist'. | 1541 | Associate CONDITION with (additional) ACTION in `auto-insert-alist'. |
| 1546 | Optional AFTER means to insert action after all existing actions for CONDITION, | 1542 | Optional AFTER means to insert action after all existing actions for CONDITION, |
| 1547 | or if CONDITION had no actions, after all other CONDITIONs. | 1543 | or if CONDITION had no actions, after all other CONDITIONs. |
| @@ -1555,9 +1551,9 @@ Setting this variable directly does not take effect; | |||
| 1555 | either customize it (see the info node `Easy Customization') | 1551 | either customize it (see the info node `Easy Customization') |
| 1556 | or call the function `auto-insert-mode'.") | 1552 | or call the function `auto-insert-mode'.") |
| 1557 | 1553 | ||
| 1558 | (custom-autoload (quote auto-insert-mode) "autoinsert" nil) | 1554 | (custom-autoload 'auto-insert-mode "autoinsert" nil) |
| 1559 | 1555 | ||
| 1560 | (autoload (quote auto-insert-mode) "autoinsert" "\ | 1556 | (autoload 'auto-insert-mode "autoinsert" "\ |
| 1561 | Toggle Auto-insert mode. | 1557 | Toggle Auto-insert mode. |
| 1562 | With prefix ARG, turn Auto-insert mode on if and only if ARG is positive. | 1558 | With prefix ARG, turn Auto-insert mode on if and only if ARG is positive. |
| 1563 | Returns the new status of Auto-insert mode (non-nil means on). | 1559 | Returns the new status of Auto-insert mode (non-nil means on). |
| @@ -1571,12 +1567,12 @@ insert a template for the file depending on the mode of the buffer. | |||
| 1571 | 1567 | ||
| 1572 | ;;;### (autoloads (batch-update-autoloads update-directory-autoloads | 1568 | ;;;### (autoloads (batch-update-autoloads update-directory-autoloads |
| 1573 | ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" | 1569 | ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" |
| 1574 | ;;;;;; (18104 24745)) | 1570 | ;;;;;; (18120 34750)) |
| 1575 | ;;; Generated autoloads from emacs-lisp/autoload.el | 1571 | ;;; Generated autoloads from emacs-lisp/autoload.el |
| 1576 | 1572 | ||
| 1577 | (put (quote generated-autoload-file) (quote safe-local-variable) (quote stringp)) | 1573 | (put 'generated-autoload-file 'safe-local-variable 'stringp) |
| 1578 | 1574 | ||
| 1579 | (autoload (quote update-file-autoloads) "autoload" "\ | 1575 | (autoload 'update-file-autoloads "autoload" "\ |
| 1580 | Update the autoloads for FILE in `generated-autoload-file' | 1576 | Update the autoloads for FILE in `generated-autoload-file' |
| 1581 | \(which FILE might bind in its local variables). | 1577 | \(which FILE might bind in its local variables). |
| 1582 | If SAVE-AFTER is non-nil (which is always, when called interactively), | 1578 | If SAVE-AFTER is non-nil (which is always, when called interactively), |
| @@ -1586,7 +1582,7 @@ Return FILE if there was no autoload cookie in it, else nil. | |||
| 1586 | 1582 | ||
| 1587 | \(fn FILE &optional SAVE-AFTER)" t nil) | 1583 | \(fn FILE &optional SAVE-AFTER)" t nil) |
| 1588 | 1584 | ||
| 1589 | (autoload (quote update-directory-autoloads) "autoload" "\ | 1585 | (autoload 'update-directory-autoloads "autoload" "\ |
| 1590 | Update loaddefs.el with all the current autoloads from DIRS, and no old ones. | 1586 | Update loaddefs.el with all the current autoloads from DIRS, and no old ones. |
| 1591 | This uses `update-file-autoloads' (which see) to do its work. | 1587 | This uses `update-file-autoloads' (which see) to do its work. |
| 1592 | In an interactive call, you must give one argument, the name | 1588 | In an interactive call, you must give one argument, the name |
| @@ -1598,7 +1594,7 @@ directory or directories specified. | |||
| 1598 | 1594 | ||
| 1599 | \(fn &rest DIRS)" t nil) | 1595 | \(fn &rest DIRS)" t nil) |
| 1600 | 1596 | ||
| 1601 | (autoload (quote batch-update-autoloads) "autoload" "\ | 1597 | (autoload 'batch-update-autoloads "autoload" "\ |
| 1602 | Update loaddefs.el autoloads in batch mode. | 1598 | Update loaddefs.el autoloads in batch mode. |
| 1603 | Calls `update-directory-autoloads' on the command line arguments. | 1599 | Calls `update-directory-autoloads' on the command line arguments. |
| 1604 | 1600 | ||
| @@ -1608,10 +1604,10 @@ Calls `update-directory-autoloads' on the command line arguments. | |||
| 1608 | 1604 | ||
| 1609 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode | 1605 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode |
| 1610 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) | 1606 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) |
| 1611 | ;;;;;; "autorevert" "autorevert.el" (18104 24730)) | 1607 | ;;;;;; "autorevert" "autorevert.el" (18177 7730)) |
| 1612 | ;;; Generated autoloads from autorevert.el | 1608 | ;;; Generated autoloads from autorevert.el |
| 1613 | 1609 | ||
| 1614 | (autoload (quote auto-revert-mode) "autorevert" "\ | 1610 | (autoload 'auto-revert-mode "autorevert" "\ |
| 1615 | Toggle reverting buffer when file on disk changes. | 1611 | Toggle reverting buffer when file on disk changes. |
| 1616 | 1612 | ||
| 1617 | With arg, turn Auto Revert mode on if and only if arg is positive. | 1613 | With arg, turn Auto Revert mode on if and only if arg is positive. |
| @@ -1622,7 +1618,7 @@ without being changed in the part that is already in the buffer. | |||
| 1622 | 1618 | ||
| 1623 | \(fn &optional ARG)" t nil) | 1619 | \(fn &optional ARG)" t nil) |
| 1624 | 1620 | ||
| 1625 | (autoload (quote turn-on-auto-revert-mode) "autorevert" "\ | 1621 | (autoload 'turn-on-auto-revert-mode "autorevert" "\ |
| 1626 | Turn on Auto-Revert Mode. | 1622 | Turn on Auto-Revert Mode. |
| 1627 | 1623 | ||
| 1628 | This function is designed to be added to hooks, for example: | 1624 | This function is designed to be added to hooks, for example: |
| @@ -1630,9 +1626,9 @@ This function is designed to be added to hooks, for example: | |||
| 1630 | 1626 | ||
| 1631 | \(fn)" nil nil) | 1627 | \(fn)" nil nil) |
| 1632 | 1628 | ||
| 1633 | (autoload (quote auto-revert-tail-mode) "autorevert" "\ | 1629 | (autoload 'auto-revert-tail-mode "autorevert" "\ |
| 1634 | Toggle reverting tail of buffer when file on disk grows. | 1630 | Toggle reverting tail of buffer when file on disk grows. |
| 1635 | With arg, turn Tail mode on iff arg is positive. | 1631 | With arg, turn Tail mode on if arg is positive, otherwise turn it off. |
| 1636 | 1632 | ||
| 1637 | When Tail mode is enabled, the tail of the file is constantly | 1633 | When Tail mode is enabled, the tail of the file is constantly |
| 1638 | followed, as with the shell command `tail -f'. This means that | 1634 | followed, as with the shell command `tail -f'. This means that |
| @@ -1648,7 +1644,7 @@ Use `auto-revert-mode' for changes other than appends! | |||
| 1648 | 1644 | ||
| 1649 | \(fn &optional ARG)" t nil) | 1645 | \(fn &optional ARG)" t nil) |
| 1650 | 1646 | ||
| 1651 | (autoload (quote turn-on-auto-revert-tail-mode) "autorevert" "\ | 1647 | (autoload 'turn-on-auto-revert-tail-mode "autorevert" "\ |
| 1652 | Turn on Auto-Revert Tail Mode. | 1648 | Turn on Auto-Revert Tail Mode. |
| 1653 | 1649 | ||
| 1654 | This function is designed to be added to hooks, for example: | 1650 | This function is designed to be added to hooks, for example: |
| @@ -1663,9 +1659,9 @@ Setting this variable directly does not take effect; | |||
| 1663 | either customize it (see the info node `Easy Customization') | 1659 | either customize it (see the info node `Easy Customization') |
| 1664 | or call the function `global-auto-revert-mode'.") | 1660 | or call the function `global-auto-revert-mode'.") |
| 1665 | 1661 | ||
| 1666 | (custom-autoload (quote global-auto-revert-mode) "autorevert" nil) | 1662 | (custom-autoload 'global-auto-revert-mode "autorevert" nil) |
| 1667 | 1663 | ||
| 1668 | (autoload (quote global-auto-revert-mode) "autorevert" "\ | 1664 | (autoload 'global-auto-revert-mode "autorevert" "\ |
| 1669 | Revert any buffer when file on disk changes. | 1665 | Revert any buffer when file on disk changes. |
| 1670 | 1666 | ||
| 1671 | With arg, turn Auto Revert mode on globally if and only if arg is positive. | 1667 | With arg, turn Auto Revert mode on globally if and only if arg is positive. |
| @@ -1677,7 +1673,7 @@ Use `auto-revert-mode' to revert a particular buffer. | |||
| 1677 | ;;;*** | 1673 | ;;;*** |
| 1678 | 1674 | ||
| 1679 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" | 1675 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" |
| 1680 | ;;;;;; "avoid.el" (18104 24730)) | 1676 | ;;;;;; "avoid.el" (18088 55080)) |
| 1681 | ;;; Generated autoloads from avoid.el | 1677 | ;;; Generated autoloads from avoid.el |
| 1682 | 1678 | ||
| 1683 | (defvar mouse-avoidance-mode nil "\ | 1679 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1686,9 +1682,9 @@ See function `mouse-avoidance-mode' for possible values. | |||
| 1686 | Setting this variable directly does not take effect; | 1682 | Setting this variable directly does not take effect; |
| 1687 | use either \\[customize] or the function `mouse-avoidance-mode'.") | 1683 | use either \\[customize] or the function `mouse-avoidance-mode'.") |
| 1688 | 1684 | ||
| 1689 | (custom-autoload (quote mouse-avoidance-mode) "avoid" nil) | 1685 | (custom-autoload 'mouse-avoidance-mode "avoid" nil) |
| 1690 | 1686 | ||
| 1691 | (autoload (quote mouse-avoidance-mode) "avoid" "\ | 1687 | (autoload 'mouse-avoidance-mode "avoid" "\ |
| 1692 | Set cursor avoidance mode to MODE. | 1688 | Set cursor avoidance mode to MODE. |
| 1693 | MODE should be one of the symbols `banish', `exile', `jump', `animate', | 1689 | MODE should be one of the symbols `banish', `exile', `jump', `animate', |
| 1694 | `cat-and-mouse', `proteus', or `none'. | 1690 | `cat-and-mouse', `proteus', or `none'. |
| @@ -1718,10 +1714,10 @@ definition of \"random distance\".) | |||
| 1718 | ;;;*** | 1714 | ;;;*** |
| 1719 | 1715 | ||
| 1720 | ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" | 1716 | ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" |
| 1721 | ;;;;;; (18104 24745)) | 1717 | ;;;;;; (18130 62047)) |
| 1722 | ;;; Generated autoloads from emacs-lisp/backquote.el | 1718 | ;;; Generated autoloads from emacs-lisp/backquote.el |
| 1723 | 1719 | ||
| 1724 | (autoload (quote backquote) "backquote" "\ | 1720 | (autoload 'backquote "backquote" "\ |
| 1725 | Argument STRUCTURE describes a template to build. | 1721 | Argument STRUCTURE describes a template to build. |
| 1726 | 1722 | ||
| 1727 | The whole structure acts as if it were quoted except for certain | 1723 | The whole structure acts as if it were quoted except for certain |
| @@ -1738,16 +1734,16 @@ Vectors work just like lists. Nested backquotes are permitted. | |||
| 1738 | 1734 | ||
| 1739 | \(fn ARG)" nil (quote macro)) | 1735 | \(fn ARG)" nil (quote macro)) |
| 1740 | 1736 | ||
| 1741 | (defalias (quote \`) (symbol-function (quote backquote))) | 1737 | (defalias '\` (symbol-function 'backquote)) |
| 1742 | 1738 | ||
| 1743 | ;;;*** | 1739 | ;;;*** |
| 1744 | 1740 | ||
| 1745 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" | 1741 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" |
| 1746 | ;;;;;; (18104 24730)) | 1742 | ;;;;;; (18088 55080)) |
| 1747 | ;;; Generated autoloads from battery.el | 1743 | ;;; Generated autoloads from battery.el |
| 1748 | (put 'battery-mode-line-string 'risky-local-variable t) | 1744 | (put 'battery-mode-line-string 'risky-local-variable t) |
| 1749 | 1745 | ||
| 1750 | (autoload (quote battery) "battery" "\ | 1746 | (autoload 'battery "battery" "\ |
| 1751 | Display battery status information in the echo area. | 1747 | Display battery status information in the echo area. |
| 1752 | The text being displayed in the echo area is controlled by the variables | 1748 | The text being displayed in the echo area is controlled by the variables |
| 1753 | `battery-echo-area-format' and `battery-status-function'. | 1749 | `battery-echo-area-format' and `battery-status-function'. |
| @@ -1761,9 +1757,9 @@ Setting this variable directly does not take effect; | |||
| 1761 | either customize it (see the info node `Easy Customization') | 1757 | either customize it (see the info node `Easy Customization') |
| 1762 | or call the function `display-battery-mode'.") | 1758 | or call the function `display-battery-mode'.") |
| 1763 | 1759 | ||
| 1764 | (custom-autoload (quote display-battery-mode) "battery" nil) | 1760 | (custom-autoload 'display-battery-mode "battery" nil) |
| 1765 | 1761 | ||
| 1766 | (autoload (quote display-battery-mode) "battery" "\ | 1762 | (autoload 'display-battery-mode "battery" "\ |
| 1767 | Display battery status information in the mode line. | 1763 | Display battery status information in the mode line. |
| 1768 | The text being displayed in the mode line is controlled by the variables | 1764 | The text being displayed in the mode line is controlled by the variables |
| 1769 | `battery-mode-line-format' and `battery-status-function'. | 1765 | `battery-mode-line-format' and `battery-status-function'. |
| @@ -1775,10 +1771,10 @@ seconds. | |||
| 1775 | ;;;*** | 1771 | ;;;*** |
| 1776 | 1772 | ||
| 1777 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) | 1773 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) |
| 1778 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (18104 24745)) | 1774 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (18088 55094)) |
| 1779 | ;;; Generated autoloads from emacs-lisp/benchmark.el | 1775 | ;;; Generated autoloads from emacs-lisp/benchmark.el |
| 1780 | 1776 | ||
| 1781 | (autoload (quote benchmark-run) "benchmark" "\ | 1777 | (autoload 'benchmark-run "benchmark" "\ |
| 1782 | Time execution of FORMS. | 1778 | Time execution of FORMS. |
| 1783 | If REPETITIONS is supplied as a number, run forms that many times, | 1779 | If REPETITIONS is supplied as a number, run forms that many times, |
| 1784 | accounting for the overhead of the resulting loop. Otherwise run | 1780 | accounting for the overhead of the resulting loop. Otherwise run |
| @@ -1789,7 +1785,7 @@ See also `benchmark-run-compiled'. | |||
| 1789 | 1785 | ||
| 1790 | \(fn &optional REPETITIONS &rest FORMS)" nil (quote macro)) | 1786 | \(fn &optional REPETITIONS &rest FORMS)" nil (quote macro)) |
| 1791 | 1787 | ||
| 1792 | (autoload (quote benchmark-run-compiled) "benchmark" "\ | 1788 | (autoload 'benchmark-run-compiled "benchmark" "\ |
| 1793 | Time execution of compiled version of FORMS. | 1789 | Time execution of compiled version of FORMS. |
| 1794 | This is like `benchmark-run', but what is timed is a funcall of the | 1790 | This is like `benchmark-run', but what is timed is a funcall of the |
| 1795 | byte code obtained by wrapping FORMS in a `lambda' and compiling the | 1791 | byte code obtained by wrapping FORMS in a `lambda' and compiling the |
| @@ -1797,7 +1793,7 @@ result. The overhead of the `lambda's is accounted for. | |||
| 1797 | 1793 | ||
| 1798 | \(fn &optional REPETITIONS &rest FORMS)" nil (quote macro)) | 1794 | \(fn &optional REPETITIONS &rest FORMS)" nil (quote macro)) |
| 1799 | 1795 | ||
| 1800 | (autoload (quote benchmark) "benchmark" "\ | 1796 | (autoload 'benchmark "benchmark" "\ |
| 1801 | Print the time taken for REPETITIONS executions of FORM. | 1797 | Print the time taken for REPETITIONS executions of FORM. |
| 1802 | Interactively, REPETITIONS is taken from the prefix arg. For | 1798 | Interactively, REPETITIONS is taken from the prefix arg. For |
| 1803 | non-interactive use see also `benchmark-run' and | 1799 | non-interactive use see also `benchmark-run' and |
| @@ -1807,11 +1803,11 @@ non-interactive use see also `benchmark-run' and | |||
| 1807 | 1803 | ||
| 1808 | ;;;*** | 1804 | ;;;*** |
| 1809 | 1805 | ||
| 1810 | ;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (18104 | 1806 | ;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (18088 |
| 1811 | ;;;;;; 24770)) | 1807 | ;;;;;; 55119)) |
| 1812 | ;;; Generated autoloads from textmodes/bibtex.el | 1808 | ;;; Generated autoloads from textmodes/bibtex.el |
| 1813 | 1809 | ||
| 1814 | (autoload (quote bibtex-mode) "bibtex" "\ | 1810 | (autoload 'bibtex-mode "bibtex" "\ |
| 1815 | Major mode for editing BibTeX files. | 1811 | Major mode for editing BibTeX files. |
| 1816 | 1812 | ||
| 1817 | General information on working with BibTeX mode: | 1813 | General information on working with BibTeX mode: |
| @@ -1869,11 +1865,11 @@ if that value is non-nil. | |||
| 1869 | ;;;*** | 1865 | ;;;*** |
| 1870 | 1866 | ||
| 1871 | ;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" | 1867 | ;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" |
| 1872 | ;;;;;; (18104 24770)) | 1868 | ;;;;;; (18157 34340)) |
| 1873 | ;;; Generated autoloads from textmodes/bibtex-style.el | 1869 | ;;; Generated autoloads from textmodes/bibtex-style.el |
| 1874 | (add-to-list 'auto-mode-alist '("\\.bst\\'" . bibtex-style-mode)) | 1870 | (add-to-list 'auto-mode-alist '("\\.bst\\'" . bibtex-style-mode)) |
| 1875 | 1871 | ||
| 1876 | (autoload (quote bibtex-style-mode) "bibtex-style" "\ | 1872 | (autoload 'bibtex-style-mode "bibtex-style" "\ |
| 1877 | Major mode for editing BibTeX style files. | 1873 | Major mode for editing BibTeX style files. |
| 1878 | 1874 | ||
| 1879 | \(fn)" t nil) | 1875 | \(fn)" t nil) |
| @@ -1882,34 +1878,34 @@ Major mode for editing BibTeX style files. | |||
| 1882 | 1878 | ||
| 1883 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external | 1879 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external |
| 1884 | ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" | 1880 | ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" |
| 1885 | ;;;;;; (18104 24750)) | 1881 | ;;;;;; (18212 46006)) |
| 1886 | ;;; Generated autoloads from gnus/binhex.el | 1882 | ;;; Generated autoloads from gnus/binhex.el |
| 1887 | 1883 | ||
| 1888 | (defconst binhex-begin-line "^:...............................................................$") | 1884 | (defconst binhex-begin-line "^:...............................................................$") |
| 1889 | 1885 | ||
| 1890 | (autoload (quote binhex-decode-region-internal) "binhex" "\ | 1886 | (autoload 'binhex-decode-region-internal "binhex" "\ |
| 1891 | Binhex decode region between START and END without using an external program. | 1887 | Binhex decode region between START and END without using an external program. |
| 1892 | If HEADER-ONLY is non-nil only decode header and return filename. | 1888 | If HEADER-ONLY is non-nil only decode header and return filename. |
| 1893 | 1889 | ||
| 1894 | \(fn START END &optional HEADER-ONLY)" t nil) | 1890 | \(fn START END &optional HEADER-ONLY)" t nil) |
| 1895 | 1891 | ||
| 1896 | (autoload (quote binhex-decode-region-external) "binhex" "\ | 1892 | (autoload 'binhex-decode-region-external "binhex" "\ |
| 1897 | Binhex decode region between START and END using external decoder. | 1893 | Binhex decode region between START and END using external decoder. |
| 1898 | 1894 | ||
| 1899 | \(fn START END)" t nil) | 1895 | \(fn START END)" t nil) |
| 1900 | 1896 | ||
| 1901 | (autoload (quote binhex-decode-region) "binhex" "\ | 1897 | (autoload 'binhex-decode-region "binhex" "\ |
| 1902 | Binhex decode region between START and END. | 1898 | Binhex decode region between START and END. |
| 1903 | 1899 | ||
| 1904 | \(fn START END)" t nil) | 1900 | \(fn START END)" t nil) |
| 1905 | 1901 | ||
| 1906 | ;;;*** | 1902 | ;;;*** |
| 1907 | 1903 | ||
| 1908 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (18104 | 1904 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (18203 |
| 1909 | ;;;;;; 24760)) | 1905 | ;;;;;; 37788)) |
| 1910 | ;;; Generated autoloads from play/blackbox.el | 1906 | ;;; Generated autoloads from play/blackbox.el |
| 1911 | 1907 | ||
| 1912 | (autoload (quote blackbox) "blackbox" "\ | 1908 | (autoload 'blackbox "blackbox" "\ |
| 1913 | Play blackbox. | 1909 | Play blackbox. |
| 1914 | Optional prefix argument is the number of balls; the default is 4. | 1910 | Optional prefix argument is the number of balls; the default is 4. |
| 1915 | 1911 | ||
| @@ -2028,8 +2024,8 @@ a reflection. | |||
| 2028 | ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save | 2024 | ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save |
| 2029 | ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename | 2025 | ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename |
| 2030 | ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump-other-window | 2026 | ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump-other-window |
| 2031 | ;;;;;; bookmark-jump bookmark-set) "bookmark" "bookmark.el" (18104 | 2027 | ;;;;;; bookmark-jump bookmark-set) "bookmark" "bookmark.el" (18169 |
| 2032 | ;;;;;; 24730)) | 2028 | ;;;;;; 11930)) |
| 2033 | ;;; Generated autoloads from bookmark.el | 2029 | ;;; Generated autoloads from bookmark.el |
| 2034 | (define-key ctl-x-map "rb" 'bookmark-jump) | 2030 | (define-key ctl-x-map "rb" 'bookmark-jump) |
| 2035 | (define-key ctl-x-map "rm" 'bookmark-set) | 2031 | (define-key ctl-x-map "rm" 'bookmark-set) |
| @@ -2056,7 +2052,7 @@ functions have a binding in this keymap.") | |||
| 2056 | (define-key bookmark-map "w" 'bookmark-write) | 2052 | (define-key bookmark-map "w" 'bookmark-write) |
| 2057 | (define-key bookmark-map "s" 'bookmark-save) | 2053 | (define-key bookmark-map "s" 'bookmark-save) |
| 2058 | 2054 | ||
| 2059 | (autoload (quote bookmark-set) "bookmark" "\ | 2055 | (autoload 'bookmark-set "bookmark" "\ |
| 2060 | Set a bookmark named NAME inside a file. | 2056 | Set a bookmark named NAME inside a file. |
| 2061 | If name is nil, then the user will be prompted. | 2057 | If name is nil, then the user will be prompted. |
| 2062 | With prefix arg, will not overwrite a bookmark that has the same name | 2058 | With prefix arg, will not overwrite a bookmark that has the same name |
| @@ -2081,7 +2077,7 @@ the list of bookmarks.) | |||
| 2081 | 2077 | ||
| 2082 | \(fn &optional NAME PARG)" t nil) | 2078 | \(fn &optional NAME PARG)" t nil) |
| 2083 | 2079 | ||
| 2084 | (autoload (quote bookmark-jump) "bookmark" "\ | 2080 | (autoload 'bookmark-jump "bookmark" "\ |
| 2085 | Jump to bookmark BOOKMARK (a point in some file). | 2081 | Jump to bookmark BOOKMARK (a point in some file). |
| 2086 | You may have a problem using this function if the value of variable | 2082 | You may have a problem using this function if the value of variable |
| 2087 | `bookmark-alist' is nil. If that happens, you need to load in some | 2083 | `bookmark-alist' is nil. If that happens, you need to load in some |
| @@ -2095,13 +2091,13 @@ of the old one in the permanent bookmark record. | |||
| 2095 | 2091 | ||
| 2096 | \(fn BOOKMARK)" t nil) | 2092 | \(fn BOOKMARK)" t nil) |
| 2097 | 2093 | ||
| 2098 | (autoload (quote bookmark-jump-other-window) "bookmark" "\ | 2094 | (autoload 'bookmark-jump-other-window "bookmark" "\ |
| 2099 | Jump to BOOKMARK (a point in some file) in another window. | 2095 | Jump to BOOKMARK (a point in some file) in another window. |
| 2100 | See `bookmark-jump'. | 2096 | See `bookmark-jump'. |
| 2101 | 2097 | ||
| 2102 | \(fn BOOKMARK)" t nil) | 2098 | \(fn BOOKMARK)" t nil) |
| 2103 | 2099 | ||
| 2104 | (autoload (quote bookmark-relocate) "bookmark" "\ | 2100 | (autoload 'bookmark-relocate "bookmark" "\ |
| 2105 | Relocate BOOKMARK to another file (reading file name with minibuffer). | 2101 | Relocate BOOKMARK to another file (reading file name with minibuffer). |
| 2106 | This makes an already existing bookmark point to that file, instead of | 2102 | This makes an already existing bookmark point to that file, instead of |
| 2107 | the one it used to point at. Useful when a file has been renamed | 2103 | the one it used to point at. Useful when a file has been renamed |
| @@ -2109,16 +2105,16 @@ after a bookmark was set in it. | |||
| 2109 | 2105 | ||
| 2110 | \(fn BOOKMARK)" t nil) | 2106 | \(fn BOOKMARK)" t nil) |
| 2111 | 2107 | ||
| 2112 | (autoload (quote bookmark-insert-location) "bookmark" "\ | 2108 | (autoload 'bookmark-insert-location "bookmark" "\ |
| 2113 | Insert the name of the file associated with BOOKMARK. | 2109 | Insert the name of the file associated with BOOKMARK. |
| 2114 | Optional second arg NO-HISTORY means don't record this in the | 2110 | Optional second arg NO-HISTORY means don't record this in the |
| 2115 | minibuffer history list `bookmark-history'. | 2111 | minibuffer history list `bookmark-history'. |
| 2116 | 2112 | ||
| 2117 | \(fn BOOKMARK &optional NO-HISTORY)" t nil) | 2113 | \(fn BOOKMARK &optional NO-HISTORY)" t nil) |
| 2118 | 2114 | ||
| 2119 | (defalias (quote bookmark-locate) (quote bookmark-insert-location)) | 2115 | (defalias 'bookmark-locate 'bookmark-insert-location) |
| 2120 | 2116 | ||
| 2121 | (autoload (quote bookmark-rename) "bookmark" "\ | 2117 | (autoload 'bookmark-rename "bookmark" "\ |
| 2122 | Change the name of OLD bookmark to NEW name. | 2118 | Change the name of OLD bookmark to NEW name. |
| 2123 | If called from keyboard, prompt for OLD and NEW. If called from | 2119 | If called from keyboard, prompt for OLD and NEW. If called from |
| 2124 | menubar, select OLD from a menu and prompt for NEW. | 2120 | menubar, select OLD from a menu and prompt for NEW. |
| @@ -2133,7 +2129,7 @@ name. | |||
| 2133 | 2129 | ||
| 2134 | \(fn OLD &optional NEW)" t nil) | 2130 | \(fn OLD &optional NEW)" t nil) |
| 2135 | 2131 | ||
| 2136 | (autoload (quote bookmark-insert) "bookmark" "\ | 2132 | (autoload 'bookmark-insert "bookmark" "\ |
| 2137 | Insert the text of the file pointed to by bookmark BOOKMARK. | 2133 | Insert the text of the file pointed to by bookmark BOOKMARK. |
| 2138 | You may have a problem using this function if the value of variable | 2134 | You may have a problem using this function if the value of variable |
| 2139 | `bookmark-alist' is nil. If that happens, you need to load in some | 2135 | `bookmark-alist' is nil. If that happens, you need to load in some |
| @@ -2142,7 +2138,7 @@ this. | |||
| 2142 | 2138 | ||
| 2143 | \(fn BOOKMARK)" t nil) | 2139 | \(fn BOOKMARK)" t nil) |
| 2144 | 2140 | ||
| 2145 | (autoload (quote bookmark-delete) "bookmark" "\ | 2141 | (autoload 'bookmark-delete "bookmark" "\ |
| 2146 | Delete BOOKMARK from the bookmark list. | 2142 | Delete BOOKMARK from the bookmark list. |
| 2147 | Removes only the first instance of a bookmark with that name. If | 2143 | Removes only the first instance of a bookmark with that name. If |
| 2148 | there are one or more other bookmarks with the same name, they will | 2144 | there are one or more other bookmarks with the same name, they will |
| @@ -2153,13 +2149,13 @@ probably because we were called from there. | |||
| 2153 | 2149 | ||
| 2154 | \(fn BOOKMARK &optional BATCH)" t nil) | 2150 | \(fn BOOKMARK &optional BATCH)" t nil) |
| 2155 | 2151 | ||
| 2156 | (autoload (quote bookmark-write) "bookmark" "\ | 2152 | (autoload 'bookmark-write "bookmark" "\ |
| 2157 | Write bookmarks to a file (reading the file name with the minibuffer). | 2153 | Write bookmarks to a file (reading the file name with the minibuffer). |
| 2158 | Don't use this in Lisp programs; use `bookmark-save' instead. | 2154 | Don't use this in Lisp programs; use `bookmark-save' instead. |
| 2159 | 2155 | ||
| 2160 | \(fn)" t nil) | 2156 | \(fn)" t nil) |
| 2161 | 2157 | ||
| 2162 | (autoload (quote bookmark-save) "bookmark" "\ | 2158 | (autoload 'bookmark-save "bookmark" "\ |
| 2163 | Save currently defined bookmarks. | 2159 | Save currently defined bookmarks. |
| 2164 | Saves by default in the file defined by the variable | 2160 | Saves by default in the file defined by the variable |
| 2165 | `bookmark-default-file'. With a prefix arg, save it in file FILE | 2161 | `bookmark-default-file'. With a prefix arg, save it in file FILE |
| @@ -2178,7 +2174,7 @@ for a file, defaulting to the file defined by variable | |||
| 2178 | 2174 | ||
| 2179 | \(fn &optional PARG FILE)" t nil) | 2175 | \(fn &optional PARG FILE)" t nil) |
| 2180 | 2176 | ||
| 2181 | (autoload (quote bookmark-load) "bookmark" "\ | 2177 | (autoload 'bookmark-load "bookmark" "\ |
| 2182 | Load bookmarks from FILE (which must be in bookmark format). | 2178 | Load bookmarks from FILE (which must be in bookmark format). |
| 2183 | Appends loaded bookmarks to the front of the list of bookmarks. If | 2179 | Appends loaded bookmarks to the front of the list of bookmarks. If |
| 2184 | optional second argument OVERWRITE is non-nil, existing bookmarks are | 2180 | optional second argument OVERWRITE is non-nil, existing bookmarks are |
| @@ -2199,7 +2195,7 @@ method buffers use to resolve name collisions. | |||
| 2199 | 2195 | ||
| 2200 | \(fn FILE &optional OVERWRITE NO-MSG)" t nil) | 2196 | \(fn FILE &optional OVERWRITE NO-MSG)" t nil) |
| 2201 | 2197 | ||
| 2202 | (autoload (quote bookmark-bmenu-list) "bookmark" "\ | 2198 | (autoload 'bookmark-bmenu-list "bookmark" "\ |
| 2203 | Display a list of existing bookmarks. | 2199 | Display a list of existing bookmarks. |
| 2204 | The list is displayed in a buffer named `*Bookmark List*'. | 2200 | The list is displayed in a buffer named `*Bookmark List*'. |
| 2205 | The leftmost column displays a D if the bookmark is flagged for | 2201 | The leftmost column displays a D if the bookmark is flagged for |
| @@ -2207,30 +2203,30 @@ deletion, or > if it is flagged for displaying. | |||
| 2207 | 2203 | ||
| 2208 | \(fn)" t nil) | 2204 | \(fn)" t nil) |
| 2209 | 2205 | ||
| 2210 | (defalias (quote list-bookmarks) (quote bookmark-bmenu-list)) | 2206 | (defalias 'list-bookmarks 'bookmark-bmenu-list) |
| 2211 | 2207 | ||
| 2212 | (defalias (quote edit-bookmarks) (quote bookmark-bmenu-list)) | 2208 | (defalias 'edit-bookmarks 'bookmark-bmenu-list) |
| 2213 | 2209 | ||
| 2214 | (defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (define-key map [load] (quote ("Load a Bookmark File..." . bookmark-load))) (define-key map [write] (quote ("Save Bookmarks As..." . bookmark-write))) (define-key map [save] (quote ("Save Bookmarks" . bookmark-save))) (define-key map [edit] (quote ("Edit Bookmark List" . bookmark-bmenu-list))) (define-key map [delete] (quote ("Delete Bookmark..." . bookmark-delete))) (define-key map [rename] (quote ("Rename Bookmark..." . bookmark-rename))) (define-key map [locate] (quote ("Insert Location..." . bookmark-locate))) (define-key map [insert] (quote ("Insert Contents..." . bookmark-insert))) (define-key map [set] (quote ("Set Bookmark..." . bookmark-set))) (define-key map [jump] (quote ("Jump to Bookmark..." . bookmark-jump))) map)) | 2210 | (defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (define-key map [load] '("Load a Bookmark File..." . bookmark-load)) (define-key map [write] '("Save Bookmarks As..." . bookmark-write)) (define-key map [save] '("Save Bookmarks" . bookmark-save)) (define-key map [edit] '("Edit Bookmark List" . bookmark-bmenu-list)) (define-key map [delete] '("Delete Bookmark..." . bookmark-delete)) (define-key map [rename] '("Rename Bookmark..." . bookmark-rename)) (define-key map [locate] '("Insert Location..." . bookmark-locate)) (define-key map [insert] '("Insert Contents..." . bookmark-insert)) (define-key map [set] '("Set Bookmark..." . bookmark-set)) (define-key map [jump] '("Jump to Bookmark..." . bookmark-jump)) map)) |
| 2215 | 2211 | ||
| 2216 | (defalias (quote menu-bar-bookmark-map) menu-bar-bookmark-map) | 2212 | (defalias 'menu-bar-bookmark-map menu-bar-bookmark-map) |
| 2217 | 2213 | ||
| 2218 | ;;;*** | 2214 | ;;;*** |
| 2219 | 2215 | ||
| 2220 | ;;;### (autoloads (browse-url-kde browse-url-generic browse-url-mail | 2216 | ;;;### (autoloads (browse-url-elinks browse-url-kde browse-url-generic |
| 2221 | ;;;;;; browse-url-mmm browse-url-lynx-emacs browse-url-lynx-xterm | 2217 | ;;;;;; browse-url-mail browse-url-text-emacs browse-url-text-xterm |
| 2222 | ;;;;;; browse-url-w3-gnudoit browse-url-w3 browse-url-iximosaic | 2218 | ;;;;;; browse-url-w3-gnudoit browse-url-w3 browse-url-cci browse-url-mosaic |
| 2223 | ;;;;;; browse-url-cci browse-url-grail browse-url-mosaic browse-url-gnome-moz | 2219 | ;;;;;; browse-url-gnome-moz browse-url-emacs browse-url-galeon browse-url-firefox |
| 2224 | ;;;;;; browse-url-galeon browse-url-firefox browse-url-mozilla browse-url-netscape | 2220 | ;;;;;; browse-url-mozilla browse-url-netscape browse-url-default-browser |
| 2225 | ;;;;;; browse-url-default-browser browse-url-at-mouse browse-url-at-point | 2221 | ;;;;;; browse-url-at-mouse browse-url-at-point browse-url browse-url-of-region |
| 2226 | ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file | 2222 | ;;;;;; browse-url-of-dired-file browse-url-of-buffer browse-url-of-file |
| 2227 | ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point | 2223 | ;;;;;; browse-url-url-at-point browse-url-galeon-program browse-url-firefox-program |
| 2228 | ;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) | 2224 | ;;;;;; browse-url-browser-function) "browse-url" "net/browse-url.el" |
| 2229 | ;;;;;; "browse-url" "net/browse-url.el" (18104 24759)) | 2225 | ;;;;;; (18214 4479)) |
| 2230 | ;;; Generated autoloads from net/browse-url.el | 2226 | ;;; Generated autoloads from net/browse-url.el |
| 2231 | 2227 | ||
| 2232 | (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))) "\ | 2228 | (defvar browse-url-browser-function (cond ((memq system-type '(windows-nt ms-dos cygwin)) 'browse-url-default-windows-browser) ((memq system-type '(darwin)) 'browse-url-default-macosx-browser) (t 'browse-url-default-browser)) "\ |
| 2233 | *Function to display the current buffer in a WWW browser. | 2229 | Function to display the current buffer in a WWW browser. |
| 2234 | This is used by the `browse-url-at-point', `browse-url-at-mouse', and | 2230 | This is used by the `browse-url-at-point', `browse-url-at-mouse', and |
| 2235 | `browse-url-of-file' commands. | 2231 | `browse-url-of-file' commands. |
| 2236 | 2232 | ||
| @@ -2240,24 +2236,24 @@ associated with the first REGEXP which matches the current URL. The | |||
| 2240 | function is passed the URL and any other args of `browse-url'. The last | 2236 | function is passed the URL and any other args of `browse-url'. The last |
| 2241 | regexp should probably be \".\" to specify a default browser.") | 2237 | regexp should probably be \".\" to specify a default browser.") |
| 2242 | 2238 | ||
| 2243 | (custom-autoload (quote browse-url-browser-function) "browse-url" t) | 2239 | (custom-autoload 'browse-url-browser-function "browse-url" t) |
| 2244 | 2240 | ||
| 2245 | (defvar browse-url-firefox-program "firefox" "\ | 2241 | (defvar browse-url-firefox-program "firefox" "\ |
| 2246 | *The name by which to invoke Firefox.") | 2242 | The name by which to invoke Firefox.") |
| 2247 | 2243 | ||
| 2248 | (custom-autoload (quote browse-url-firefox-program) "browse-url" t) | 2244 | (custom-autoload 'browse-url-firefox-program "browse-url" t) |
| 2249 | 2245 | ||
| 2250 | (defvar browse-url-galeon-program "galeon" "\ | 2246 | (defvar browse-url-galeon-program "galeon" "\ |
| 2251 | *The name by which to invoke Galeon.") | 2247 | The name by which to invoke Galeon.") |
| 2252 | 2248 | ||
| 2253 | (custom-autoload (quote browse-url-galeon-program) "browse-url" t) | 2249 | (custom-autoload 'browse-url-galeon-program "browse-url" t) |
| 2254 | 2250 | ||
| 2255 | (autoload (quote browse-url-url-at-point) "browse-url" "\ | 2251 | (autoload 'browse-url-url-at-point "browse-url" "\ |
| 2256 | Not documented | 2252 | Not documented |
| 2257 | 2253 | ||
| 2258 | \(fn)" nil nil) | 2254 | \(fn)" nil nil) |
| 2259 | 2255 | ||
| 2260 | (autoload (quote browse-url-of-file) "browse-url" "\ | 2256 | (autoload 'browse-url-of-file "browse-url" "\ |
| 2261 | Ask a WWW browser to display FILE. | 2257 | Ask a WWW browser to display FILE. |
| 2262 | Display the current buffer's file if FILE is nil or if called | 2258 | Display the current buffer's file if FILE is nil or if called |
| 2263 | interactively. Turn the filename into a URL with function | 2259 | interactively. Turn the filename into a URL with function |
| @@ -2266,7 +2262,7 @@ interactively. Turn the filename into a URL with function | |||
| 2266 | 2262 | ||
| 2267 | \(fn &optional FILE)" t nil) | 2263 | \(fn &optional FILE)" t nil) |
| 2268 | 2264 | ||
| 2269 | (autoload (quote browse-url-of-buffer) "browse-url" "\ | 2265 | (autoload 'browse-url-of-buffer "browse-url" "\ |
| 2270 | Ask a WWW browser to display BUFFER. | 2266 | Ask a WWW browser to display BUFFER. |
| 2271 | Display the current buffer if BUFFER is nil. Display only the | 2267 | Display the current buffer if BUFFER is nil. Display only the |
| 2272 | currently visible part of BUFFER (from a temporary file) if buffer is | 2268 | currently visible part of BUFFER (from a temporary file) if buffer is |
| @@ -2274,31 +2270,31 @@ narrowed. | |||
| 2274 | 2270 | ||
| 2275 | \(fn &optional BUFFER)" t nil) | 2271 | \(fn &optional BUFFER)" t nil) |
| 2276 | 2272 | ||
| 2277 | (autoload (quote browse-url-of-dired-file) "browse-url" "\ | 2273 | (autoload 'browse-url-of-dired-file "browse-url" "\ |
| 2278 | In Dired, ask a WWW browser to display the file named on this line. | 2274 | In Dired, ask a WWW browser to display the file named on this line. |
| 2279 | 2275 | ||
| 2280 | \(fn)" t nil) | 2276 | \(fn)" t nil) |
| 2281 | 2277 | ||
| 2282 | (autoload (quote browse-url-of-region) "browse-url" "\ | 2278 | (autoload 'browse-url-of-region "browse-url" "\ |
| 2283 | Ask a WWW browser to display the current region. | 2279 | Ask a WWW browser to display the current region. |
| 2284 | 2280 | ||
| 2285 | \(fn MIN MAX)" t nil) | 2281 | \(fn MIN MAX)" t nil) |
| 2286 | 2282 | ||
| 2287 | (autoload (quote browse-url) "browse-url" "\ | 2283 | (autoload 'browse-url "browse-url" "\ |
| 2288 | Ask a WWW browser to load URL. | 2284 | Ask a WWW browser to load URL. |
| 2289 | Prompts for a URL, defaulting to the URL at or before point. Variable | 2285 | Prompts for a URL, defaulting to the URL at or before point. Variable |
| 2290 | `browse-url-browser-function' says which browser to use. | 2286 | `browse-url-browser-function' says which browser to use. |
| 2291 | 2287 | ||
| 2292 | \(fn URL &rest ARGS)" t nil) | 2288 | \(fn URL &rest ARGS)" t nil) |
| 2293 | 2289 | ||
| 2294 | (autoload (quote browse-url-at-point) "browse-url" "\ | 2290 | (autoload 'browse-url-at-point "browse-url" "\ |
| 2295 | Ask a WWW browser to load the URL at or before point. | 2291 | Ask a WWW browser to load the URL at or before point. |
| 2296 | Doesn't let you edit the URL like `browse-url'. Variable | 2292 | Doesn't let you edit the URL like `browse-url'. Variable |
| 2297 | `browse-url-browser-function' says which browser to use. | 2293 | `browse-url-browser-function' says which browser to use. |
| 2298 | 2294 | ||
| 2299 | \(fn &optional ARG)" t nil) | 2295 | \(fn &optional ARG)" t nil) |
| 2300 | 2296 | ||
| 2301 | (autoload (quote browse-url-at-mouse) "browse-url" "\ | 2297 | (autoload 'browse-url-at-mouse "browse-url" "\ |
| 2302 | Ask a WWW browser to load a URL clicked with the mouse. | 2298 | Ask a WWW browser to load a URL clicked with the mouse. |
| 2303 | The URL is the one around or before the position of the mouse click | 2299 | The URL is the one around or before the position of the mouse click |
| 2304 | but point is not changed. Doesn't let you edit the URL like | 2300 | but point is not changed. Doesn't let you edit the URL like |
| @@ -2307,7 +2303,7 @@ to use. | |||
| 2307 | 2303 | ||
| 2308 | \(fn EVENT)" t nil) | 2304 | \(fn EVENT)" t nil) |
| 2309 | 2305 | ||
| 2310 | (autoload (quote browse-url-default-browser) "browse-url" "\ | 2306 | (autoload 'browse-url-default-browser "browse-url" "\ |
| 2311 | Find a suitable browser and ask it to load URL. | 2307 | Find a suitable browser and ask it to load URL. |
| 2312 | Default to the URL around or before point. | 2308 | Default to the URL around or before point. |
| 2313 | 2309 | ||
| @@ -2320,12 +2316,11 @@ When called non-interactively, optional second argument NEW-WINDOW is | |||
| 2320 | used instead of `browse-url-new-window-flag'. | 2316 | used instead of `browse-url-new-window-flag'. |
| 2321 | 2317 | ||
| 2322 | The order attempted is gnome-moz-remote, Mozilla, Firefox, | 2318 | The order attempted is gnome-moz-remote, Mozilla, Firefox, |
| 2323 | Galeon, Konqueror, Netscape, Mosaic, IXI Mosaic, Lynx in an | 2319 | Galeon, Konqueror, Netscape, Mosaic, Lynx in an xterm, and then W3. |
| 2324 | xterm, MMM, and then W3. | ||
| 2325 | 2320 | ||
| 2326 | \(fn URL &rest ARGS)" nil nil) | 2321 | \(fn URL &rest ARGS)" nil nil) |
| 2327 | 2322 | ||
| 2328 | (autoload (quote browse-url-netscape) "browse-url" "\ | 2323 | (autoload 'browse-url-netscape "browse-url" "\ |
| 2329 | Ask the Netscape WWW browser to load URL. | 2324 | Ask the Netscape WWW browser to load URL. |
| 2330 | Default to the URL around or before point. The strings in variable | 2325 | Default to the URL around or before point. The strings in variable |
| 2331 | `browse-url-netscape-arguments' are also passed to Netscape. | 2326 | `browse-url-netscape-arguments' are also passed to Netscape. |
| @@ -2344,7 +2339,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2344 | 2339 | ||
| 2345 | \(fn URL &optional NEW-WINDOW)" t nil) | 2340 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2346 | 2341 | ||
| 2347 | (autoload (quote browse-url-mozilla) "browse-url" "\ | 2342 | (autoload 'browse-url-mozilla "browse-url" "\ |
| 2348 | Ask the Mozilla WWW browser to load URL. | 2343 | Ask the Mozilla WWW browser to load URL. |
| 2349 | Default to the URL around or before point. The strings in variable | 2344 | Default to the URL around or before point. The strings in variable |
| 2350 | `browse-url-mozilla-arguments' are also passed to Mozilla. | 2345 | `browse-url-mozilla-arguments' are also passed to Mozilla. |
| @@ -2363,7 +2358,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2363 | 2358 | ||
| 2364 | \(fn URL &optional NEW-WINDOW)" t nil) | 2359 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2365 | 2360 | ||
| 2366 | (autoload (quote browse-url-firefox) "browse-url" "\ | 2361 | (autoload 'browse-url-firefox "browse-url" "\ |
| 2367 | Ask the Firefox WWW browser to load URL. | 2362 | Ask the Firefox WWW browser to load URL. |
| 2368 | Default to the URL around or before point. The strings in | 2363 | Default to the URL around or before point. The strings in |
| 2369 | variable `browse-url-firefox-arguments' are also passed to | 2364 | variable `browse-url-firefox-arguments' are also passed to |
| @@ -2391,7 +2386,7 @@ URL in a new window. | |||
| 2391 | 2386 | ||
| 2392 | \(fn URL &optional NEW-WINDOW)" t nil) | 2387 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2393 | 2388 | ||
| 2394 | (autoload (quote browse-url-galeon) "browse-url" "\ | 2389 | (autoload 'browse-url-galeon "browse-url" "\ |
| 2395 | Ask the Galeon WWW browser to load URL. | 2390 | Ask the Galeon WWW browser to load URL. |
| 2396 | Default to the URL around or before point. The strings in variable | 2391 | Default to the URL around or before point. The strings in variable |
| 2397 | `browse-url-galeon-arguments' are also passed to Galeon. | 2392 | `browse-url-galeon-arguments' are also passed to Galeon. |
| @@ -2410,7 +2405,12 @@ used instead of `browse-url-new-window-flag'. | |||
| 2410 | 2405 | ||
| 2411 | \(fn URL &optional NEW-WINDOW)" t nil) | 2406 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2412 | 2407 | ||
| 2413 | (autoload (quote browse-url-gnome-moz) "browse-url" "\ | 2408 | (autoload 'browse-url-emacs "browse-url" "\ |
| 2409 | Ask Emacs to load URL into a buffer and show it in another window. | ||
| 2410 | |||
| 2411 | \(fn URL &optional NEW-WINDOW)" t nil) | ||
| 2412 | |||
| 2413 | (autoload 'browse-url-gnome-moz "browse-url" "\ | ||
| 2414 | Ask Mozilla/Netscape to load URL via the GNOME program `gnome-moz-remote'. | 2414 | Ask Mozilla/Netscape to load URL via the GNOME program `gnome-moz-remote'. |
| 2415 | Default to the URL around or before point. The strings in variable | 2415 | Default to the URL around or before point. The strings in variable |
| 2416 | `browse-url-gnome-moz-arguments' are also passed. | 2416 | `browse-url-gnome-moz-arguments' are also passed. |
| @@ -2425,7 +2425,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2425 | 2425 | ||
| 2426 | \(fn URL &optional NEW-WINDOW)" t nil) | 2426 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2427 | 2427 | ||
| 2428 | (autoload (quote browse-url-mosaic) "browse-url" "\ | 2428 | (autoload 'browse-url-mosaic "browse-url" "\ |
| 2429 | Ask the XMosaic WWW browser to load URL. | 2429 | Ask the XMosaic WWW browser to load URL. |
| 2430 | 2430 | ||
| 2431 | Default to the URL around or before point. The strings in variable | 2431 | Default to the URL around or before point. The strings in variable |
| @@ -2443,14 +2443,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2443 | 2443 | ||
| 2444 | \(fn URL &optional NEW-WINDOW)" t nil) | 2444 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2445 | 2445 | ||
| 2446 | (autoload (quote browse-url-grail) "browse-url" "\ | 2446 | (autoload 'browse-url-cci "browse-url" "\ |
| 2447 | Ask the Grail WWW browser to load URL. | ||
| 2448 | Default to the URL around or before point. Runs the program in the | ||
| 2449 | variable `browse-url-grail'. | ||
| 2450 | |||
| 2451 | \(fn URL &optional NEW-WINDOW)" t nil) | ||
| 2452 | |||
| 2453 | (autoload (quote browse-url-cci) "browse-url" "\ | ||
| 2454 | Ask the XMosaic WWW browser to load URL. | 2447 | Ask the XMosaic WWW browser to load URL. |
| 2455 | Default to the URL around or before point. | 2448 | Default to the URL around or before point. |
| 2456 | 2449 | ||
| @@ -2468,13 +2461,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2468 | 2461 | ||
| 2469 | \(fn URL &optional NEW-WINDOW)" t nil) | 2462 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2470 | 2463 | ||
| 2471 | (autoload (quote browse-url-iximosaic) "browse-url" "\ | 2464 | (autoload 'browse-url-w3 "browse-url" "\ |
| 2472 | Ask the IXIMosaic WWW browser to load URL. | ||
| 2473 | Default to the URL around or before point. | ||
| 2474 | |||
| 2475 | \(fn URL &optional NEW-WINDOW)" t nil) | ||
| 2476 | |||
| 2477 | (autoload (quote browse-url-w3) "browse-url" "\ | ||
| 2478 | Ask the w3 WWW browser to load URL. | 2465 | Ask the w3 WWW browser to load URL. |
| 2479 | Default to the URL around or before point. | 2466 | Default to the URL around or before point. |
| 2480 | 2467 | ||
| @@ -2487,28 +2474,30 @@ used instead of `browse-url-new-window-flag'. | |||
| 2487 | 2474 | ||
| 2488 | \(fn URL &optional NEW-WINDOW)" t nil) | 2475 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2489 | 2476 | ||
| 2490 | (autoload (quote browse-url-w3-gnudoit) "browse-url" "\ | 2477 | (autoload 'browse-url-w3-gnudoit "browse-url" "\ |
| 2491 | Ask another Emacs running gnuserv to load the URL using the W3 browser. | 2478 | Ask another Emacs running gnuserv to load the URL using the W3 browser. |
| 2492 | The `browse-url-gnudoit-program' program is used with options given by | 2479 | The `browse-url-gnudoit-program' program is used with options given by |
| 2493 | `browse-url-gnudoit-args'. Default to the URL around or before point. | 2480 | `browse-url-gnudoit-args'. Default to the URL around or before point. |
| 2494 | 2481 | ||
| 2495 | \(fn URL &optional NEW-WINDOW)" t nil) | 2482 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2496 | 2483 | ||
| 2497 | (autoload (quote browse-url-lynx-xterm) "browse-url" "\ | 2484 | (autoload 'browse-url-text-xterm "browse-url" "\ |
| 2498 | Ask the Lynx WWW browser to load URL. | 2485 | Ask a text browser to load URL. |
| 2499 | Default to the URL around or before point. A new Lynx process is run | 2486 | URL defaults to the URL around or before point. |
| 2487 | This runs the text browser specified by `browse-url-text-browser'. | ||
| 2500 | in an Xterm window using the Xterm program named by `browse-url-xterm-program' | 2488 | in an Xterm window using the Xterm program named by `browse-url-xterm-program' |
| 2501 | with possible additional arguments `browse-url-xterm-args'. | 2489 | with possible additional arguments `browse-url-xterm-args'. |
| 2502 | 2490 | ||
| 2503 | \(fn URL &optional NEW-WINDOW)" t nil) | 2491 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2504 | 2492 | ||
| 2505 | (autoload (quote browse-url-lynx-emacs) "browse-url" "\ | 2493 | (autoload 'browse-url-text-emacs "browse-url" "\ |
| 2506 | Ask the Lynx WWW browser to load URL. | 2494 | Ask a text browser to load URL. |
| 2507 | Default to the URL around or before point. With a prefix argument, run | 2495 | URL defaults to the URL around or before point. |
| 2508 | a new Lynx process in a new buffer. | 2496 | This runs the text browser specified by `browse-url-text-browser'. |
| 2497 | With a prefix argument, it runs a new browser process in a new buffer. | ||
| 2509 | 2498 | ||
| 2510 | When called interactively, if variable `browse-url-new-window-flag' is | 2499 | When called interactively, if variable `browse-url-new-window-flag' is |
| 2511 | non-nil, load the document in a new lynx in a new term window, | 2500 | non-nil, load the document in a new browser process in a new term window, |
| 2512 | otherwise use any existing one. A non-nil interactive prefix argument | 2501 | otherwise use any existing one. A non-nil interactive prefix argument |
| 2513 | reverses the effect of `browse-url-new-window-flag'. | 2502 | reverses the effect of `browse-url-new-window-flag'. |
| 2514 | 2503 | ||
| @@ -2517,13 +2506,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2517 | 2506 | ||
| 2518 | \(fn URL &optional NEW-BUFFER)" t nil) | 2507 | \(fn URL &optional NEW-BUFFER)" t nil) |
| 2519 | 2508 | ||
| 2520 | (autoload (quote browse-url-mmm) "browse-url" "\ | 2509 | (autoload 'browse-url-mail "browse-url" "\ |
| 2521 | Ask the MMM WWW browser to load URL. | ||
| 2522 | Default to the URL around or before point. | ||
| 2523 | |||
| 2524 | \(fn URL &optional NEW-WINDOW)" t nil) | ||
| 2525 | |||
| 2526 | (autoload (quote browse-url-mail) "browse-url" "\ | ||
| 2527 | Open a new mail message buffer within Emacs for the RFC 2368 URL. | 2510 | Open a new mail message buffer within Emacs for the RFC 2368 URL. |
| 2528 | Default to using the mailto: URL around or before point as the | 2511 | Default to using the mailto: URL around or before point as the |
| 2529 | recipient's address. Supplying a non-nil interactive prefix argument | 2512 | recipient's address. Supplying a non-nil interactive prefix argument |
| @@ -2540,7 +2523,7 @@ used instead of `browse-url-new-window-flag'. | |||
| 2540 | 2523 | ||
| 2541 | \(fn URL &optional NEW-WINDOW)" t nil) | 2524 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2542 | 2525 | ||
| 2543 | (autoload (quote browse-url-generic) "browse-url" "\ | 2526 | (autoload 'browse-url-generic "browse-url" "\ |
| 2544 | Ask the WWW browser defined by `browse-url-generic-program' to load URL. | 2527 | Ask the WWW browser defined by `browse-url-generic-program' to load URL. |
| 2545 | Default to the URL around or before point. A fresh copy of the | 2528 | Default to the URL around or before point. A fresh copy of the |
| 2546 | browser is started up in a new process with possible additional arguments | 2529 | browser is started up in a new process with possible additional arguments |
| @@ -2549,24 +2532,36 @@ don't offer a form of remote control. | |||
| 2549 | 2532 | ||
| 2550 | \(fn URL &optional NEW-WINDOW)" t nil) | 2533 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2551 | 2534 | ||
| 2552 | (autoload (quote browse-url-kde) "browse-url" "\ | 2535 | (autoload 'browse-url-kde "browse-url" "\ |
| 2553 | Ask the KDE WWW browser to load URL. | 2536 | Ask the KDE WWW browser to load URL. |
| 2554 | Default to the URL around or before point. | 2537 | Default to the URL around or before point. |
| 2555 | 2538 | ||
| 2556 | \(fn URL &optional NEW-WINDOW)" t nil) | 2539 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2557 | 2540 | ||
| 2541 | (autoload 'browse-url-elinks "browse-url" "\ | ||
| 2542 | Ask the Elinks WWW browser to load URL. | ||
| 2543 | Default to the URL around the point. | ||
| 2544 | |||
| 2545 | The document is loaded in a new tab of a running Elinks or, if | ||
| 2546 | none yet running, a newly started instance. | ||
| 2547 | |||
| 2548 | The Elinks command will be prepended by the program+arguments | ||
| 2549 | from `browse-url-elinks-wrapper'. | ||
| 2550 | |||
| 2551 | \(fn URL &optional NEW-WINDOW)" t nil) | ||
| 2552 | |||
| 2558 | ;;;*** | 2553 | ;;;*** |
| 2559 | 2554 | ||
| 2560 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (18104 | 2555 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (18088 |
| 2561 | ;;;;;; 24760)) | 2556 | ;;;;;; 55113)) |
| 2562 | ;;; Generated autoloads from play/bruce.el | 2557 | ;;; Generated autoloads from play/bruce.el |
| 2563 | 2558 | ||
| 2564 | (autoload (quote bruce) "bruce" "\ | 2559 | (autoload 'bruce "bruce" "\ |
| 2565 | Adds that special touch of class to your outgoing mail. | 2560 | Adds that special touch of class to your outgoing mail. |
| 2566 | 2561 | ||
| 2567 | \(fn)" t nil) | 2562 | \(fn)" t nil) |
| 2568 | 2563 | ||
| 2569 | (autoload (quote snarf-bruces) "bruce" "\ | 2564 | (autoload 'snarf-bruces "bruce" "\ |
| 2570 | Return a vector containing the lines from `bruce-phrases-file'. | 2565 | Return a vector containing the lines from `bruce-phrases-file'. |
| 2571 | 2566 | ||
| 2572 | \(fn)" nil nil) | 2567 | \(fn)" nil nil) |
| @@ -2574,33 +2569,33 @@ Return a vector containing the lines from `bruce-phrases-file'. | |||
| 2574 | ;;;*** | 2569 | ;;;*** |
| 2575 | 2570 | ||
| 2576 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) | 2571 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) |
| 2577 | ;;;;;; "bs" "bs.el" (18104 24730)) | 2572 | ;;;;;; "bs" "bs.el" (18211 32385)) |
| 2578 | ;;; Generated autoloads from bs.el | 2573 | ;;; Generated autoloads from bs.el |
| 2579 | 2574 | ||
| 2580 | (autoload (quote bs-cycle-next) "bs" "\ | 2575 | (autoload 'bs-cycle-next "bs" "\ |
| 2581 | Select next buffer defined by buffer cycling. | 2576 | Select next buffer defined by buffer cycling. |
| 2582 | The buffers taking part in buffer cycling are defined | 2577 | The buffers taking part in buffer cycling are defined |
| 2583 | by buffer configuration `bs-cycle-configuration-name'. | 2578 | by buffer configuration `bs-cycle-configuration-name'. |
| 2584 | 2579 | ||
| 2585 | \(fn)" t nil) | 2580 | \(fn)" t nil) |
| 2586 | 2581 | ||
| 2587 | (autoload (quote bs-cycle-previous) "bs" "\ | 2582 | (autoload 'bs-cycle-previous "bs" "\ |
| 2588 | Select previous buffer defined by buffer cycling. | 2583 | Select previous buffer defined by buffer cycling. |
| 2589 | The buffers taking part in buffer cycling are defined | 2584 | The buffers taking part in buffer cycling are defined |
| 2590 | by buffer configuration `bs-cycle-configuration-name'. | 2585 | by buffer configuration `bs-cycle-configuration-name'. |
| 2591 | 2586 | ||
| 2592 | \(fn)" t nil) | 2587 | \(fn)" t nil) |
| 2593 | 2588 | ||
| 2594 | (autoload (quote bs-customize) "bs" "\ | 2589 | (autoload 'bs-customize "bs" "\ |
| 2595 | Customization of group bs for Buffer Selection Menu. | 2590 | Customization of group bs for Buffer Selection Menu. |
| 2596 | 2591 | ||
| 2597 | \(fn)" t nil) | 2592 | \(fn)" t nil) |
| 2598 | 2593 | ||
| 2599 | (autoload (quote bs-show) "bs" "\ | 2594 | (autoload 'bs-show "bs" "\ |
| 2600 | Make a menu of buffers so you can manipulate buffers or the buffer list. | 2595 | Make a menu of buffers so you can manipulate buffers or the buffer list. |
| 2601 | \\<bs-mode-map> | 2596 | \\<bs-mode-map> |
| 2602 | There are many key commands similar to `Buffer-menu-mode' for | 2597 | There are many key commands similar to `Buffer-menu-mode' for |
| 2603 | manipulating buffer list and buffers itself. | 2598 | manipulating the buffer list and the buffers themselves. |
| 2604 | User can move with [up] or [down], select a buffer | 2599 | User can move with [up] or [down], select a buffer |
| 2605 | by \\[bs-select] or [SPC] | 2600 | by \\[bs-select] or [SPC] |
| 2606 | 2601 | ||
| @@ -2614,19 +2609,29 @@ name of buffer configuration. | |||
| 2614 | 2609 | ||
| 2615 | ;;;*** | 2610 | ;;;*** |
| 2616 | 2611 | ||
| 2612 | ;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (18157 34340)) | ||
| 2613 | ;;; Generated autoloads from play/bubbles.el | ||
| 2614 | |||
| 2615 | (autoload 'bubbles "bubbles" "\ | ||
| 2616 | Play Bubbles game. | ||
| 2617 | |||
| 2618 | \(fn)" t nil) | ||
| 2619 | |||
| 2620 | ;;;*** | ||
| 2621 | |||
| 2617 | ;;;### (autoloads (insert-text-button make-text-button insert-button | 2622 | ;;;### (autoloads (insert-text-button make-text-button insert-button |
| 2618 | ;;;;;; make-button define-button-type) "button" "button.el" (18104 | 2623 | ;;;;;; make-button define-button-type) "button" "button.el" (18133 |
| 2619 | ;;;;;; 24730)) | 2624 | ;;;;;; 60495)) |
| 2620 | ;;; Generated autoloads from button.el | 2625 | ;;; Generated autoloads from button.el |
| 2621 | 2626 | ||
| 2622 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ | 2627 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " 'push-button) (define-key map [mouse-2] 'push-button) map) "\ |
| 2623 | Keymap used by buttons.") | 2628 | Keymap used by buttons.") |
| 2624 | 2629 | ||
| 2625 | (defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map " " (quote backward-button)) (define-key map [backtab] (quote backward-button)) map) "\ | 2630 | (defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] 'forward-button) (define-key map " " 'backward-button) (define-key map [backtab] 'backward-button) map) "\ |
| 2626 | Keymap useful for buffers containing buttons. | 2631 | Keymap useful for buffers containing buttons. |
| 2627 | Mode-specific keymaps may want to use this as their parent keymap.") | 2632 | Mode-specific keymaps may want to use this as their parent keymap.") |
| 2628 | 2633 | ||
| 2629 | (autoload (quote define-button-type) "button" "\ | 2634 | (autoload 'define-button-type "button" "\ |
| 2630 | Define a `button type' called NAME. | 2635 | Define a `button type' called NAME. |
| 2631 | The remaining arguments form a sequence of PROPERTY VALUE pairs, | 2636 | The remaining arguments form a sequence of PROPERTY VALUE pairs, |
| 2632 | specifying properties to use as defaults for buttons with this type | 2637 | specifying properties to use as defaults for buttons with this type |
| @@ -2640,7 +2645,7 @@ changes to a supertype are not reflected in its subtypes). | |||
| 2640 | 2645 | ||
| 2641 | \(fn NAME &rest PROPERTIES)" nil nil) | 2646 | \(fn NAME &rest PROPERTIES)" nil nil) |
| 2642 | 2647 | ||
| 2643 | (autoload (quote make-button) "button" "\ | 2648 | (autoload 'make-button "button" "\ |
| 2644 | Make a button from BEG to END in the current buffer. | 2649 | Make a button from BEG to END in the current buffer. |
| 2645 | The remaining arguments form a sequence of PROPERTY VALUE pairs, | 2650 | The remaining arguments form a sequence of PROPERTY VALUE pairs, |
| 2646 | specifying properties to add to the button. | 2651 | specifying properties to add to the button. |
| @@ -2652,7 +2657,7 @@ Also see `make-text-button', `insert-button'. | |||
| 2652 | 2657 | ||
| 2653 | \(fn BEG END &rest PROPERTIES)" nil nil) | 2658 | \(fn BEG END &rest PROPERTIES)" nil nil) |
| 2654 | 2659 | ||
| 2655 | (autoload (quote insert-button) "button" "\ | 2660 | (autoload 'insert-button "button" "\ |
| 2656 | Insert a button with the label LABEL. | 2661 | Insert a button with the label LABEL. |
| 2657 | The remaining arguments form a sequence of PROPERTY VALUE pairs, | 2662 | The remaining arguments form a sequence of PROPERTY VALUE pairs, |
| 2658 | specifying properties to add to the button. | 2663 | specifying properties to add to the button. |
| @@ -2664,7 +2669,7 @@ Also see `insert-text-button', `make-button'. | |||
| 2664 | 2669 | ||
| 2665 | \(fn LABEL &rest PROPERTIES)" nil nil) | 2670 | \(fn LABEL &rest PROPERTIES)" nil nil) |
| 2666 | 2671 | ||
| 2667 | (autoload (quote make-text-button) "button" "\ | 2672 | (autoload 'make-text-button "button" "\ |
| 2668 | Make a button from BEG to END in the current buffer. | 2673 | Make a button from BEG to END in the current buffer. |
| 2669 | The remaining arguments form a sequence of PROPERTY VALUE pairs, | 2674 | The remaining arguments form a sequence of PROPERTY VALUE pairs, |
| 2670 | specifying properties to add to the button. | 2675 | specifying properties to add to the button. |
| @@ -2681,7 +2686,7 @@ Also see `insert-text-button'. | |||
| 2681 | 2686 | ||
| 2682 | \(fn BEG END &rest PROPERTIES)" nil nil) | 2687 | \(fn BEG END &rest PROPERTIES)" nil nil) |
| 2683 | 2688 | ||
| 2684 | (autoload (quote insert-text-button) "button" "\ | 2689 | (autoload 'insert-text-button "button" "\ |
| 2685 | Insert a button with the label LABEL. | 2690 | Insert a button with the label LABEL. |
| 2686 | The remaining arguments form a sequence of PROPERTY VALUE pairs, | 2691 | The remaining arguments form a sequence of PROPERTY VALUE pairs, |
| 2687 | specifying properties to add to the button. | 2692 | specifying properties to add to the button. |
| @@ -2703,25 +2708,41 @@ Also see `make-text-button'. | |||
| 2703 | ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile | 2708 | ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile |
| 2704 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile | 2709 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile |
| 2705 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory | 2710 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory |
| 2706 | ;;;;;; byte-force-recompile byte-compile-warnings-safe-p) "bytecomp" | 2711 | ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning |
| 2707 | ;;;;;; "emacs-lisp/bytecomp.el" (18104 24746)) | 2712 | ;;;;;; byte-compile-warnings-safe-p) "bytecomp" "emacs-lisp/bytecomp.el" |
| 2713 | ;;;;;; (18213 13926)) | ||
| 2708 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 2714 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 2709 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) | 2715 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) |
| 2710 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) | 2716 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) |
| 2711 | (put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) | 2717 | (put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) |
| 2718 | (put 'byte-compile-warnings 'safe-local-variable 'byte-compile-warnings-safe-p) | ||
| 2712 | 2719 | ||
| 2713 | (autoload (quote byte-compile-warnings-safe-p) "bytecomp" "\ | 2720 | (autoload 'byte-compile-warnings-safe-p "bytecomp" "\ |
| 2714 | Not documented | 2721 | Not documented |
| 2715 | 2722 | ||
| 2716 | \(fn X)" nil nil) | 2723 | \(fn X)" nil nil) |
| 2717 | 2724 | ||
| 2718 | (autoload (quote byte-force-recompile) "bytecomp" "\ | 2725 | (autoload 'byte-compile-disable-warning "bytecomp" "\ |
| 2726 | Change `byte-compile-warnings' to disable WARNING. | ||
| 2727 | If `byte-compile-warnings' is t, set it to `(not WARNING)'. | ||
| 2728 | Otherwise, if the first element is `not', add WARNING, else remove it. | ||
| 2729 | |||
| 2730 | \(fn WARNING)" nil nil) | ||
| 2731 | |||
| 2732 | (autoload 'byte-compile-enable-warning "bytecomp" "\ | ||
| 2733 | Change `byte-compile-warnings' to enable WARNING. | ||
| 2734 | If `byte-compile-warnings' is `t', do nothing. Otherwise, if the | ||
| 2735 | first element is `not', remove WARNING, else add it. | ||
| 2736 | |||
| 2737 | \(fn WARNING)" nil nil) | ||
| 2738 | |||
| 2739 | (autoload 'byte-force-recompile "bytecomp" "\ | ||
| 2719 | Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | 2740 | Recompile every `.el' file in DIRECTORY that already has a `.elc' file. |
| 2720 | Files in subdirectories of DIRECTORY are processed also. | 2741 | Files in subdirectories of DIRECTORY are processed also. |
| 2721 | 2742 | ||
| 2722 | \(fn DIRECTORY)" t nil) | 2743 | \(fn DIRECTORY)" t nil) |
| 2723 | 2744 | ||
| 2724 | (autoload (quote byte-recompile-directory) "bytecomp" "\ | 2745 | (autoload 'byte-recompile-directory "bytecomp" "\ |
| 2725 | Recompile every `.el' file in DIRECTORY that needs recompilation. | 2746 | Recompile every `.el' file in DIRECTORY that needs recompilation. |
| 2726 | This is if a `.elc' file exists but is older than the `.el' file. | 2747 | This is if a `.elc' file exists but is older than the `.el' file. |
| 2727 | Files in subdirectories of DIRECTORY are processed also. | 2748 | Files in subdirectories of DIRECTORY are processed also. |
| @@ -2740,7 +2761,7 @@ recompile every `.el' file that already has a `.elc' file. | |||
| 2740 | \(fn DIRECTORY &optional ARG FORCE)" t nil) | 2761 | \(fn DIRECTORY &optional ARG FORCE)" t nil) |
| 2741 | (put 'no-byte-compile 'safe-local-variable 'booleanp) | 2762 | (put 'no-byte-compile 'safe-local-variable 'booleanp) |
| 2742 | 2763 | ||
| 2743 | (autoload (quote byte-compile-file) "bytecomp" "\ | 2764 | (autoload 'byte-compile-file "bytecomp" "\ |
| 2744 | Compile a file of Lisp code named FILENAME into a file of byte code. | 2765 | Compile a file of Lisp code named FILENAME into a file of byte code. |
| 2745 | The output file's name is generated by passing FILENAME to the | 2766 | The output file's name is generated by passing FILENAME to the |
| 2746 | `byte-compile-dest-file' function (which see). | 2767 | `byte-compile-dest-file' function (which see). |
| @@ -2749,20 +2770,20 @@ The value is non-nil if there were no errors, nil if errors. | |||
| 2749 | 2770 | ||
| 2750 | \(fn FILENAME &optional LOAD)" t nil) | 2771 | \(fn FILENAME &optional LOAD)" t nil) |
| 2751 | 2772 | ||
| 2752 | (autoload (quote compile-defun) "bytecomp" "\ | 2773 | (autoload 'compile-defun "bytecomp" "\ |
| 2753 | Compile and evaluate the current top-level form. | 2774 | Compile and evaluate the current top-level form. |
| 2754 | Print the result in the echo area. | 2775 | Print the result in the echo area. |
| 2755 | With argument, insert value in current buffer after the form. | 2776 | With argument, insert value in current buffer after the form. |
| 2756 | 2777 | ||
| 2757 | \(fn &optional ARG)" t nil) | 2778 | \(fn &optional ARG)" t nil) |
| 2758 | 2779 | ||
| 2759 | (autoload (quote byte-compile) "bytecomp" "\ | 2780 | (autoload 'byte-compile "bytecomp" "\ |
| 2760 | If FORM is a symbol, byte-compile its function definition. | 2781 | If FORM is a symbol, byte-compile its function definition. |
| 2761 | If FORM is a lambda or a macro, byte-compile it as a function. | 2782 | If FORM is a lambda or a macro, byte-compile it as a function. |
| 2762 | 2783 | ||
| 2763 | \(fn FORM)" nil nil) | 2784 | \(fn FORM)" nil nil) |
| 2764 | 2785 | ||
| 2765 | (autoload (quote display-call-tree) "bytecomp" "\ | 2786 | (autoload 'display-call-tree "bytecomp" "\ |
| 2766 | Display a call graph of a specified file. | 2787 | Display a call graph of a specified file. |
| 2767 | This lists which functions have been called, what functions called | 2788 | This lists which functions have been called, what functions called |
| 2768 | them, and what functions they call. The list includes all functions | 2789 | them, and what functions they call. The list includes all functions |
| @@ -2779,14 +2800,14 @@ invoked interactively. | |||
| 2779 | 2800 | ||
| 2780 | \(fn &optional FILENAME)" t nil) | 2801 | \(fn &optional FILENAME)" t nil) |
| 2781 | 2802 | ||
| 2782 | (autoload (quote batch-byte-compile-if-not-done) "bytecomp" "\ | 2803 | (autoload 'batch-byte-compile-if-not-done "bytecomp" "\ |
| 2783 | Like `byte-compile-file' but doesn't recompile if already up to date. | 2804 | Like `byte-compile-file' but doesn't recompile if already up to date. |
| 2784 | Use this from the command line, with `-batch'; | 2805 | Use this from the command line, with `-batch'; |
| 2785 | it won't work in an interactive Emacs. | 2806 | it won't work in an interactive Emacs. |
| 2786 | 2807 | ||
| 2787 | \(fn)" nil nil) | 2808 | \(fn)" nil nil) |
| 2788 | 2809 | ||
| 2789 | (autoload (quote batch-byte-compile) "bytecomp" "\ | 2810 | (autoload 'batch-byte-compile "bytecomp" "\ |
| 2790 | Run `byte-compile-file' on the files remaining on the command line. | 2811 | Run `byte-compile-file' on the files remaining on the command line. |
| 2791 | Use this from the command line, with `-batch'; | 2812 | Use this from the command line, with `-batch'; |
| 2792 | it won't work in an interactive Emacs. | 2813 | it won't work in an interactive Emacs. |
| @@ -2797,7 +2818,7 @@ already up-to-date. | |||
| 2797 | 2818 | ||
| 2798 | \(fn &optional NOFORCE)" nil nil) | 2819 | \(fn &optional NOFORCE)" nil nil) |
| 2799 | 2820 | ||
| 2800 | (autoload (quote batch-byte-recompile-directory) "bytecomp" "\ | 2821 | (autoload 'batch-byte-recompile-directory "bytecomp" "\ |
| 2801 | Run `byte-recompile-directory' on the dirs remaining on the command line. | 2822 | Run `byte-recompile-directory' on the dirs remaining on the command line. |
| 2802 | Must be used only with `-batch', and kills Emacs on completion. | 2823 | Must be used only with `-batch', and kills Emacs on completion. |
| 2803 | For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. | 2824 | For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. |
| @@ -2810,20 +2831,20 @@ and corresponding effects. | |||
| 2810 | 2831 | ||
| 2811 | ;;;*** | 2832 | ;;;*** |
| 2812 | 2833 | ||
| 2813 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (18104 24745)) | 2834 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (18088 55093)) |
| 2814 | ;;; Generated autoloads from calendar/cal-dst.el | 2835 | ;;; Generated autoloads from calendar/cal-dst.el |
| 2815 | 2836 | ||
| 2816 | (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) | 2837 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) |
| 2817 | 2838 | ||
| 2818 | (put (quote calendar-daylight-savings-ends) (quote risky-local-variable) t) | 2839 | (put 'calendar-daylight-savings-ends 'risky-local-variable t) |
| 2819 | 2840 | ||
| 2820 | ;;;*** | 2841 | ;;;*** |
| 2821 | 2842 | ||
| 2822 | ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" | 2843 | ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" |
| 2823 | ;;;;;; (18104 24745)) | 2844 | ;;;;;; (18203 38492)) |
| 2824 | ;;; Generated autoloads from calendar/cal-hebrew.el | 2845 | ;;; Generated autoloads from calendar/cal-hebrew.el |
| 2825 | 2846 | ||
| 2826 | (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ | 2847 | (autoload 'list-yahrzeit-dates "cal-hebrew" "\ |
| 2827 | List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. | 2848 | List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. |
| 2828 | When called interactively from the calendar window, the date of death is taken | 2849 | When called interactively from the calendar window, the date of death is taken |
| 2829 | from the cursor position. | 2850 | from the cursor position. |
| @@ -2835,43 +2856,43 @@ from the cursor position. | |||
| 2835 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle | 2856 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle |
| 2836 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc | 2857 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc |
| 2837 | ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" | 2858 | ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" |
| 2838 | ;;;;;; (18104 24745)) | 2859 | ;;;;;; (18214 4479)) |
| 2839 | ;;; Generated autoloads from calc/calc.el | 2860 | ;;; Generated autoloads from calc/calc.el |
| 2840 | 2861 | ||
| 2841 | (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ | 2862 | (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ |
| 2842 | *File in which to record permanent settings.") | 2863 | *File in which to record permanent settings.") |
| 2843 | 2864 | ||
| 2844 | (custom-autoload (quote calc-settings-file) "calc" t) | 2865 | (custom-autoload 'calc-settings-file "calc" t) |
| 2845 | (define-key ctl-x-map "*" 'calc-dispatch) | 2866 | (define-key ctl-x-map "*" 'calc-dispatch) |
| 2846 | 2867 | ||
| 2847 | (autoload (quote calc-dispatch) "calc" "\ | 2868 | (autoload 'calc-dispatch "calc" "\ |
| 2848 | Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details. | 2869 | Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details. |
| 2849 | 2870 | ||
| 2850 | \(fn &optional ARG)" t nil) | 2871 | \(fn &optional ARG)" t nil) |
| 2851 | 2872 | ||
| 2852 | (autoload (quote calc) "calc" "\ | 2873 | (autoload 'calc "calc" "\ |
| 2853 | The Emacs Calculator. Full documentation is listed under \"calc-mode\". | 2874 | The Emacs Calculator. Full documentation is listed under \"calc-mode\". |
| 2854 | 2875 | ||
| 2855 | \(fn &optional ARG FULL-DISPLAY INTERACTIVE)" t nil) | 2876 | \(fn &optional ARG FULL-DISPLAY INTERACTIVE)" t nil) |
| 2856 | 2877 | ||
| 2857 | (autoload (quote full-calc) "calc" "\ | 2878 | (autoload 'full-calc "calc" "\ |
| 2858 | Invoke the Calculator and give it a full-sized window. | 2879 | Invoke the Calculator and give it a full-sized window. |
| 2859 | 2880 | ||
| 2860 | \(fn &optional INTERACTIVE)" t nil) | 2881 | \(fn &optional INTERACTIVE)" t nil) |
| 2861 | 2882 | ||
| 2862 | (autoload (quote quick-calc) "calc" "\ | 2883 | (autoload 'quick-calc "calc" "\ |
| 2863 | Do a quick calculation in the minibuffer without invoking full Calculator. | 2884 | Do a quick calculation in the minibuffer without invoking full Calculator. |
| 2864 | 2885 | ||
| 2865 | \(fn)" t nil) | 2886 | \(fn)" t nil) |
| 2866 | 2887 | ||
| 2867 | (autoload (quote calc-eval) "calc" "\ | 2888 | (autoload 'calc-eval "calc" "\ |
| 2868 | Do a quick calculation and return the result as a string. | 2889 | Do a quick calculation and return the result as a string. |
| 2869 | Return value will either be the formatted result in string form, | 2890 | Return value will either be the formatted result in string form, |
| 2870 | or a list containing a character position and an error message in string form. | 2891 | or a list containing a character position and an error message in string form. |
| 2871 | 2892 | ||
| 2872 | \(fn STR &optional SEPARATOR &rest ARGS)" nil nil) | 2893 | \(fn STR &optional SEPARATOR &rest ARGS)" nil nil) |
| 2873 | 2894 | ||
| 2874 | (autoload (quote calc-keypad) "calc" "\ | 2895 | (autoload 'calc-keypad "calc" "\ |
| 2875 | Invoke the Calculator in \"visual keypad\" mode. | 2896 | Invoke the Calculator in \"visual keypad\" mode. |
| 2876 | This is most useful in the X window system. | 2897 | This is most useful in the X window system. |
| 2877 | In this mode, click on the Calc \"buttons\" using the left mouse button. | 2898 | In this mode, click on the Calc \"buttons\" using the left mouse button. |
| @@ -2879,45 +2900,45 @@ Or, position the cursor manually and do M-x calc-keypad-press. | |||
| 2879 | 2900 | ||
| 2880 | \(fn &optional INTERACTIVE)" t nil) | 2901 | \(fn &optional INTERACTIVE)" t nil) |
| 2881 | 2902 | ||
| 2882 | (autoload (quote full-calc-keypad) "calc" "\ | 2903 | (autoload 'full-calc-keypad "calc" "\ |
| 2883 | Invoke the Calculator in full-screen \"visual keypad\" mode. | 2904 | Invoke the Calculator in full-screen \"visual keypad\" mode. |
| 2884 | See calc-keypad for details. | 2905 | See calc-keypad for details. |
| 2885 | 2906 | ||
| 2886 | \(fn &optional INTERACTIVE)" t nil) | 2907 | \(fn &optional INTERACTIVE)" t nil) |
| 2887 | 2908 | ||
| 2888 | (autoload (quote calc-grab-region) "calc" "\ | 2909 | (autoload 'calc-grab-region "calc" "\ |
| 2889 | Parse the region as a vector of numbers and push it on the Calculator stack. | 2910 | Parse the region as a vector of numbers and push it on the Calculator stack. |
| 2890 | 2911 | ||
| 2891 | \(fn TOP BOT ARG)" t nil) | 2912 | \(fn TOP BOT ARG)" t nil) |
| 2892 | 2913 | ||
| 2893 | (autoload (quote calc-grab-rectangle) "calc" "\ | 2914 | (autoload 'calc-grab-rectangle "calc" "\ |
| 2894 | Parse a rectangle as a matrix of numbers and push it on the Calculator stack. | 2915 | Parse a rectangle as a matrix of numbers and push it on the Calculator stack. |
| 2895 | 2916 | ||
| 2896 | \(fn TOP BOT ARG)" t nil) | 2917 | \(fn TOP BOT ARG)" t nil) |
| 2897 | 2918 | ||
| 2898 | (autoload (quote calc-embedded) "calc" "\ | 2919 | (autoload 'calc-embedded "calc" "\ |
| 2899 | Start Calc Embedded mode on the formula surrounding point. | 2920 | Start Calc Embedded mode on the formula surrounding point. |
| 2900 | 2921 | ||
| 2901 | \(fn ARG &optional END OBEG OEND)" t nil) | 2922 | \(fn ARG &optional END OBEG OEND)" t nil) |
| 2902 | 2923 | ||
| 2903 | (autoload (quote calc-embedded-activate) "calc" "\ | 2924 | (autoload 'calc-embedded-activate "calc" "\ |
| 2904 | Scan the current editing buffer for all embedded := and => formulas. | 2925 | Scan the current editing buffer for all embedded := and => formulas. |
| 2905 | Also looks for the equivalent TeX words, \\gets and \\evalto. | 2926 | Also looks for the equivalent TeX words, \\gets and \\evalto. |
| 2906 | 2927 | ||
| 2907 | \(fn &optional ARG CBUF)" t nil) | 2928 | \(fn &optional ARG CBUF)" t nil) |
| 2908 | 2929 | ||
| 2909 | (autoload (quote defmath) "calc" "\ | 2930 | (autoload 'defmath "calc" "\ |
| 2910 | Not documented | 2931 | Not documented |
| 2911 | 2932 | ||
| 2912 | \(fn FUNC ARGS &rest BODY)" nil (quote macro)) | 2933 | \(fn FUNC ARGS &rest BODY)" nil (quote macro)) |
| 2913 | 2934 | ||
| 2914 | ;;;*** | 2935 | ;;;*** |
| 2915 | 2936 | ||
| 2916 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (18104 | 2937 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (18203 |
| 2917 | ;;;;;; 24730)) | 2938 | ;;;;;; 37786)) |
| 2918 | ;;; Generated autoloads from calculator.el | 2939 | ;;; Generated autoloads from calculator.el |
| 2919 | 2940 | ||
| 2920 | (autoload (quote calculator) "calculator" "\ | 2941 | (autoload 'calculator "calculator" "\ |
| 2921 | Run the Emacs calculator. | 2942 | Run the Emacs calculator. |
| 2922 | See the documentation for `calculator-mode' for more information. | 2943 | See the documentation for `calculator-mode' for more information. |
| 2923 | 2944 | ||
| @@ -2942,7 +2963,7 @@ See the documentation for `calculator-mode' for more information. | |||
| 2942 | ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially | 2963 | ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially |
| 2943 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar | 2964 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar |
| 2944 | ;;;;;; view-diary-entries-initially calendar-offset) "calendar" | 2965 | ;;;;;; view-diary-entries-initially calendar-offset) "calendar" |
| 2945 | ;;;;;; "calendar/calendar.el" (18104 24745)) | 2966 | ;;;;;; "calendar/calendar.el" (18157 34340)) |
| 2946 | ;;; Generated autoloads from calendar/calendar.el | 2967 | ;;; Generated autoloads from calendar/calendar.el |
| 2947 | 2968 | ||
| 2948 | (defvar calendar-offset 0 "\ | 2969 | (defvar calendar-offset 0 "\ |
| @@ -2951,7 +2972,7 @@ The offset of the principal month from the center of the calendar window. | |||
| 2951 | +1 means on the right. Larger (or smaller) values push the principal month off | 2972 | +1 means on the right. Larger (or smaller) values push the principal month off |
| 2952 | the screen.") | 2973 | the screen.") |
| 2953 | 2974 | ||
| 2954 | (custom-autoload (quote calendar-offset) "calendar" t) | 2975 | (custom-autoload 'calendar-offset "calendar" t) |
| 2955 | 2976 | ||
| 2956 | (defvar view-diary-entries-initially nil "\ | 2977 | (defvar view-diary-entries-initially nil "\ |
| 2957 | Non-nil means display current date's diary entries on entry to calendar. | 2978 | Non-nil means display current date's diary entries on entry to calendar. |
| @@ -2960,32 +2981,32 @@ if the current date is visible. The number of days of diary entries displayed | |||
| 2960 | is governed by the variable `number-of-diary-entries'. This variable can | 2981 | is governed by the variable `number-of-diary-entries'. This variable can |
| 2961 | be overridden by the value of `calendar-setup'.") | 2982 | be overridden by the value of `calendar-setup'.") |
| 2962 | 2983 | ||
| 2963 | (custom-autoload (quote view-diary-entries-initially) "calendar" t) | 2984 | (custom-autoload 'view-diary-entries-initially "calendar" t) |
| 2964 | 2985 | ||
| 2965 | (defvar mark-diary-entries-in-calendar nil "\ | 2986 | (defvar mark-diary-entries-in-calendar nil "\ |
| 2966 | Non-nil means mark dates with diary entries, in the calendar window. | 2987 | Non-nil means mark dates with diary entries, in the calendar window. |
| 2967 | The marking symbol is specified by the variable `diary-entry-marker'.") | 2988 | The marking symbol is specified by the variable `diary-entry-marker'.") |
| 2968 | 2989 | ||
| 2969 | (custom-autoload (quote mark-diary-entries-in-calendar) "calendar" t) | 2990 | (custom-autoload 'mark-diary-entries-in-calendar "calendar" t) |
| 2970 | 2991 | ||
| 2971 | (defvar calendar-remove-frame-by-deleting nil "\ | 2992 | (defvar calendar-remove-frame-by-deleting nil "\ |
| 2972 | Determine how the calendar mode removes a frame no longer needed. | 2993 | Determine how the calendar mode removes a frame no longer needed. |
| 2973 | If nil, make an icon of the frame. If non-nil, delete the frame.") | 2994 | If nil, make an icon of the frame. If non-nil, delete the frame.") |
| 2974 | 2995 | ||
| 2975 | (custom-autoload (quote calendar-remove-frame-by-deleting) "calendar" t) | 2996 | (custom-autoload 'calendar-remove-frame-by-deleting "calendar" t) |
| 2976 | 2997 | ||
| 2977 | (defvar view-calendar-holidays-initially nil "\ | 2998 | (defvar view-calendar-holidays-initially nil "\ |
| 2978 | Non-nil means display holidays for current three month period on entry. | 2999 | Non-nil means display holidays for current three month period on entry. |
| 2979 | The holidays are displayed in another window when the calendar is first | 3000 | The holidays are displayed in another window when the calendar is first |
| 2980 | displayed.") | 3001 | displayed.") |
| 2981 | 3002 | ||
| 2982 | (custom-autoload (quote view-calendar-holidays-initially) "calendar" t) | 3003 | (custom-autoload 'view-calendar-holidays-initially "calendar" t) |
| 2983 | 3004 | ||
| 2984 | (defvar mark-holidays-in-calendar nil "\ | 3005 | (defvar mark-holidays-in-calendar nil "\ |
| 2985 | Non-nil means mark dates of holidays in the calendar window. | 3006 | Non-nil means mark dates of holidays in the calendar window. |
| 2986 | The marking symbol is specified by the variable `calendar-holiday-marker'.") | 3007 | The marking symbol is specified by the variable `calendar-holiday-marker'.") |
| 2987 | 3008 | ||
| 2988 | (custom-autoload (quote mark-holidays-in-calendar) "calendar" t) | 3009 | (custom-autoload 'mark-holidays-in-calendar "calendar" t) |
| 2989 | 3010 | ||
| 2990 | (defvar all-hebrew-calendar-holidays nil "\ | 3011 | (defvar all-hebrew-calendar-holidays nil "\ |
| 2991 | If nil, show only major holidays from the Hebrew calendar. | 3012 | If nil, show only major holidays from the Hebrew calendar. |
| @@ -2993,7 +3014,7 @@ This means only those Jewish holidays that appear on secular calendars. | |||
| 2993 | 3014 | ||
| 2994 | If t, show all the holidays that would appear in a complete Hebrew calendar.") | 3015 | If t, show all the holidays that would appear in a complete Hebrew calendar.") |
| 2995 | 3016 | ||
| 2996 | (custom-autoload (quote all-hebrew-calendar-holidays) "calendar" t) | 3017 | (custom-autoload 'all-hebrew-calendar-holidays "calendar" t) |
| 2997 | 3018 | ||
| 2998 | (defvar all-christian-calendar-holidays nil "\ | 3019 | (defvar all-christian-calendar-holidays nil "\ |
| 2999 | If nil, show only major holidays from the Christian calendar. | 3020 | If nil, show only major holidays from the Christian calendar. |
| @@ -3002,7 +3023,7 @@ This means only those Christian holidays that appear on secular calendars. | |||
| 3002 | If t, show all the holidays that would appear in a complete Christian | 3023 | If t, show all the holidays that would appear in a complete Christian |
| 3003 | calendar.") | 3024 | calendar.") |
| 3004 | 3025 | ||
| 3005 | (custom-autoload (quote all-christian-calendar-holidays) "calendar" t) | 3026 | (custom-autoload 'all-christian-calendar-holidays "calendar" t) |
| 3006 | 3027 | ||
| 3007 | (defvar all-islamic-calendar-holidays nil "\ | 3028 | (defvar all-islamic-calendar-holidays nil "\ |
| 3008 | If nil, show only major holidays from the Islamic calendar. | 3029 | If nil, show only major holidays from the Islamic calendar. |
| @@ -3011,7 +3032,7 @@ This means only those Islamic holidays that appear on secular calendars. | |||
| 3011 | If t, show all the holidays that would appear in a complete Islamic | 3032 | If t, show all the holidays that would appear in a complete Islamic |
| 3012 | calendar.") | 3033 | calendar.") |
| 3013 | 3034 | ||
| 3014 | (custom-autoload (quote all-islamic-calendar-holidays) "calendar" t) | 3035 | (custom-autoload 'all-islamic-calendar-holidays "calendar" t) |
| 3015 | 3036 | ||
| 3016 | (defvar all-bahai-calendar-holidays nil "\ | 3037 | (defvar all-bahai-calendar-holidays nil "\ |
| 3017 | If nil, show only major holidays from the Baha'i calendar. | 3038 | If nil, show only major holidays from the Baha'i calendar. |
| @@ -3020,13 +3041,13 @@ These are the days on which work and school must be suspended. | |||
| 3020 | If t, show all the holidays that would appear in a complete Baha'i | 3041 | If t, show all the holidays that would appear in a complete Baha'i |
| 3021 | calendar.") | 3042 | calendar.") |
| 3022 | 3043 | ||
| 3023 | (custom-autoload (quote all-bahai-calendar-holidays) "calendar" t) | 3044 | (custom-autoload 'all-bahai-calendar-holidays "calendar" t) |
| 3024 | 3045 | ||
| 3025 | (defvar calendar-load-hook nil "\ | 3046 | (defvar calendar-load-hook nil "\ |
| 3026 | List of functions to be called after the calendar is first loaded. | 3047 | List of functions to be called after the calendar is first loaded. |
| 3027 | This is the place to add key bindings to `calendar-mode-map'.") | 3048 | This is the place to add key bindings to `calendar-mode-map'.") |
| 3028 | 3049 | ||
| 3029 | (custom-autoload (quote calendar-load-hook) "calendar" t) | 3050 | (custom-autoload 'calendar-load-hook "calendar" t) |
| 3030 | 3051 | ||
| 3031 | (defvar initial-calendar-window-hook nil "\ | 3052 | (defvar initial-calendar-window-hook nil "\ |
| 3032 | List of functions to be called when the calendar window is first opened. | 3053 | List of functions to be called when the calendar window is first opened. |
| @@ -3034,7 +3055,7 @@ The functions invoked are called after the calendar window is opened, but | |||
| 3034 | once opened is never called again. Leaving the calendar with the `q' command | 3055 | once opened is never called again. Leaving the calendar with the `q' command |
| 3035 | and reentering it will cause these functions to be called again.") | 3056 | and reentering it will cause these functions to be called again.") |
| 3036 | 3057 | ||
| 3037 | (custom-autoload (quote initial-calendar-window-hook) "calendar" t) | 3058 | (custom-autoload 'initial-calendar-window-hook "calendar" t) |
| 3038 | 3059 | ||
| 3039 | (defvar today-visible-calendar-hook nil "\ | 3060 | (defvar today-visible-calendar-hook nil "\ |
| 3040 | List of functions called whenever the current date is visible. | 3061 | List of functions called whenever the current date is visible. |
| @@ -3053,7 +3074,7 @@ Other than the use of the provided functions, the changing of any | |||
| 3053 | characters in the calendar buffer by the hooks may cause the failure of the | 3074 | characters in the calendar buffer by the hooks may cause the failure of the |
| 3054 | functions that move by days and weeks.") | 3075 | functions that move by days and weeks.") |
| 3055 | 3076 | ||
| 3056 | (custom-autoload (quote today-visible-calendar-hook) "calendar" t) | 3077 | (custom-autoload 'today-visible-calendar-hook "calendar" t) |
| 3057 | 3078 | ||
| 3058 | (defvar today-invisible-calendar-hook nil "\ | 3079 | (defvar today-invisible-calendar-hook nil "\ |
| 3059 | List of functions called whenever the current date is not visible. | 3080 | List of functions called whenever the current date is not visible. |
| @@ -3066,7 +3087,7 @@ Other than the use of the provided functions, the changing of any | |||
| 3066 | characters in the calendar buffer by the hooks may cause the failure of the | 3087 | characters in the calendar buffer by the hooks may cause the failure of the |
| 3067 | functions that move by days and weeks.") | 3088 | functions that move by days and weeks.") |
| 3068 | 3089 | ||
| 3069 | (custom-autoload (quote today-invisible-calendar-hook) "calendar" t) | 3090 | (custom-autoload 'today-invisible-calendar-hook "calendar" t) |
| 3070 | 3091 | ||
| 3071 | (defvar calendar-move-hook nil "\ | 3092 | (defvar calendar-move-hook nil "\ |
| 3072 | List of functions called whenever the cursor moves in the calendar. | 3093 | List of functions called whenever the cursor moves in the calendar. |
| @@ -3077,7 +3098,7 @@ For example, | |||
| 3077 | 3098 | ||
| 3078 | redisplays the diary for whatever date the cursor is moved to.") | 3099 | redisplays the diary for whatever date the cursor is moved to.") |
| 3079 | 3100 | ||
| 3080 | (custom-autoload (quote calendar-move-hook) "calendar" t) | 3101 | (custom-autoload 'calendar-move-hook "calendar" t) |
| 3081 | 3102 | ||
| 3082 | (defvar diary-file "~/diary" "\ | 3103 | (defvar diary-file "~/diary" "\ |
| 3083 | Name of the file in which one's personal diary of dates is kept. | 3104 | Name of the file in which one's personal diary of dates is kept. |
| @@ -3184,39 +3205,39 @@ documentation for these functions for details. | |||
| 3184 | Diary files can contain directives to include the contents of other files; for | 3205 | Diary files can contain directives to include the contents of other files; for |
| 3185 | details, see the documentation for the variable `list-diary-entries-hook'.") | 3206 | details, see the documentation for the variable `list-diary-entries-hook'.") |
| 3186 | 3207 | ||
| 3187 | (custom-autoload (quote diary-file) "calendar" t) | 3208 | (custom-autoload 'diary-file "calendar" t) |
| 3188 | 3209 | ||
| 3189 | (defvar diary-nonmarking-symbol "&" "\ | 3210 | (defvar diary-nonmarking-symbol "&" "\ |
| 3190 | Symbol indicating that a diary entry is not to be marked in the calendar.") | 3211 | Symbol indicating that a diary entry is not to be marked in the calendar.") |
| 3191 | 3212 | ||
| 3192 | (custom-autoload (quote diary-nonmarking-symbol) "calendar" t) | 3213 | (custom-autoload 'diary-nonmarking-symbol "calendar" t) |
| 3193 | 3214 | ||
| 3194 | (defvar hebrew-diary-entry-symbol "H" "\ | 3215 | (defvar hebrew-diary-entry-symbol "H" "\ |
| 3195 | Symbol indicating a diary entry according to the Hebrew calendar.") | 3216 | Symbol indicating a diary entry according to the Hebrew calendar.") |
| 3196 | 3217 | ||
| 3197 | (custom-autoload (quote hebrew-diary-entry-symbol) "calendar" t) | 3218 | (custom-autoload 'hebrew-diary-entry-symbol "calendar" t) |
| 3198 | 3219 | ||
| 3199 | (defvar islamic-diary-entry-symbol "I" "\ | 3220 | (defvar islamic-diary-entry-symbol "I" "\ |
| 3200 | Symbol indicating a diary entry according to the Islamic calendar.") | 3221 | Symbol indicating a diary entry according to the Islamic calendar.") |
| 3201 | 3222 | ||
| 3202 | (custom-autoload (quote islamic-diary-entry-symbol) "calendar" t) | 3223 | (custom-autoload 'islamic-diary-entry-symbol "calendar" t) |
| 3203 | 3224 | ||
| 3204 | (defvar bahai-diary-entry-symbol "B" "\ | 3225 | (defvar bahai-diary-entry-symbol "B" "\ |
| 3205 | Symbol indicating a diary entry according to the Baha'i calendar.") | 3226 | Symbol indicating a diary entry according to the Baha'i calendar.") |
| 3206 | 3227 | ||
| 3207 | (custom-autoload (quote bahai-diary-entry-symbol) "calendar" t) | 3228 | (custom-autoload 'bahai-diary-entry-symbol "calendar" t) |
| 3208 | 3229 | ||
| 3209 | (defvar diary-include-string "#include" "\ | 3230 | (defvar diary-include-string "#include" "\ |
| 3210 | The string indicating inclusion of another file of diary entries. | 3231 | The string indicating inclusion of another file of diary entries. |
| 3211 | See the documentation for the function `include-other-diary-files'.") | 3232 | See the documentation for the function `include-other-diary-files'.") |
| 3212 | 3233 | ||
| 3213 | (custom-autoload (quote diary-include-string) "calendar" t) | 3234 | (custom-autoload 'diary-include-string "calendar" t) |
| 3214 | 3235 | ||
| 3215 | (defvar sexp-diary-entry-symbol "%%" "\ | 3236 | (defvar sexp-diary-entry-symbol "%%" "\ |
| 3216 | The string used to indicate a sexp diary entry in `diary-file'. | 3237 | The string used to indicate a sexp diary entry in `diary-file'. |
| 3217 | See the documentation for the function `list-sexp-diary-entries'.") | 3238 | See the documentation for the function `list-sexp-diary-entries'.") |
| 3218 | 3239 | ||
| 3219 | (custom-autoload (quote sexp-diary-entry-symbol) "calendar" t) | 3240 | (custom-autoload 'sexp-diary-entry-symbol "calendar" t) |
| 3220 | 3241 | ||
| 3221 | (defvar abbreviated-calendar-year t "\ | 3242 | (defvar abbreviated-calendar-year t "\ |
| 3222 | Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. | 3243 | Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. |
| @@ -3224,7 +3245,7 @@ For the Gregorian calendar; similarly for the Hebrew, Islamic and | |||
| 3224 | Baha'i calendars. If this variable is nil, years must be written in | 3245 | Baha'i calendars. If this variable is nil, years must be written in |
| 3225 | full.") | 3246 | full.") |
| 3226 | 3247 | ||
| 3227 | (custom-autoload (quote abbreviated-calendar-year) "calendar" t) | 3248 | (custom-autoload 'abbreviated-calendar-year "calendar" t) |
| 3228 | 3249 | ||
| 3229 | (defvar european-calendar-style nil "\ | 3250 | (defvar european-calendar-style nil "\ |
| 3230 | Use the European style of dates in the diary and in any displays. | 3251 | Use the European style of dates in the diary and in any displays. |
| @@ -3247,40 +3268,40 @@ calendar package is already loaded). Rather, use either | |||
| 3247 | \\[customize] or the functions `european-calendar' and | 3268 | \\[customize] or the functions `european-calendar' and |
| 3248 | `american-calendar'.") | 3269 | `american-calendar'.") |
| 3249 | 3270 | ||
| 3250 | (custom-autoload (quote european-calendar-style) "calendar" nil) | 3271 | (custom-autoload 'european-calendar-style "calendar" nil) |
| 3251 | 3272 | ||
| 3252 | (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\ | 3273 | (defvar american-date-diary-pattern '((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W")) "\ |
| 3253 | List of pseudo-patterns describing the American patterns of date used. | 3274 | List of pseudo-patterns describing the American patterns of date used. |
| 3254 | See the documentation of `diary-date-forms' for an explanation.") | 3275 | See the documentation of `diary-date-forms' for an explanation.") |
| 3255 | 3276 | ||
| 3256 | (custom-autoload (quote american-date-diary-pattern) "calendar" t) | 3277 | (custom-autoload 'american-date-diary-pattern "calendar" t) |
| 3257 | 3278 | ||
| 3258 | (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\ | 3279 | (defvar european-date-diary-pattern '((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)") (day " *" monthname " *" year "[^0-9]") (dayname "\\W")) "\ |
| 3259 | List of pseudo-patterns describing the European patterns of date used. | 3280 | List of pseudo-patterns describing the European patterns of date used. |
| 3260 | See the documentation of `diary-date-forms' for an explanation.") | 3281 | See the documentation of `diary-date-forms' for an explanation.") |
| 3261 | 3282 | ||
| 3262 | (custom-autoload (quote european-date-diary-pattern) "calendar" t) | 3283 | (custom-autoload 'european-date-diary-pattern "calendar" t) |
| 3263 | 3284 | ||
| 3264 | (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\ | 3285 | (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\ |
| 3265 | Pseudo-pattern governing the way a date appears in the European style. | 3286 | Pseudo-pattern governing the way a date appears in the European style. |
| 3266 | See the documentation of `calendar-date-display-form' for an explanation.") | 3287 | See the documentation of `calendar-date-display-form' for an explanation.") |
| 3267 | 3288 | ||
| 3268 | (custom-autoload (quote european-calendar-display-form) "calendar" t) | 3289 | (custom-autoload 'european-calendar-display-form "calendar" t) |
| 3269 | 3290 | ||
| 3270 | (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\ | 3291 | (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\ |
| 3271 | Pseudo-pattern governing the way a date appears in the American style. | 3292 | Pseudo-pattern governing the way a date appears in the American style. |
| 3272 | See the documentation of `calendar-date-display-form' for an explanation.") | 3293 | See the documentation of `calendar-date-display-form' for an explanation.") |
| 3273 | 3294 | ||
| 3274 | (custom-autoload (quote american-calendar-display-form) "calendar" t) | 3295 | (custom-autoload 'american-calendar-display-form "calendar" t) |
| 3275 | 3296 | ||
| 3276 | (defvar print-diary-entries-hook (quote lpr-buffer) "\ | 3297 | (defvar print-diary-entries-hook 'lpr-buffer "\ |
| 3277 | List of functions called after a temporary diary buffer is prepared. | 3298 | List of functions called after a temporary diary buffer is prepared. |
| 3278 | The buffer shows only the diary entries currently visible in the diary | 3299 | The buffer shows only the diary entries currently visible in the diary |
| 3279 | buffer. The default just does the printing. Other uses might include, for | 3300 | buffer. The default just does the printing. Other uses might include, for |
| 3280 | example, rearranging the lines into order by day and time, saving the buffer | 3301 | example, rearranging the lines into order by day and time, saving the buffer |
| 3281 | instead of deleting it, or changing the function used to do the printing.") | 3302 | instead of deleting it, or changing the function used to do the printing.") |
| 3282 | 3303 | ||
| 3283 | (custom-autoload (quote print-diary-entries-hook) "calendar" t) | 3304 | (custom-autoload 'print-diary-entries-hook "calendar" t) |
| 3284 | 3305 | ||
| 3285 | (defvar list-diary-entries-hook nil "\ | 3306 | (defvar list-diary-entries-hook nil "\ |
| 3286 | List of functions called after diary file is culled for relevant entries. | 3307 | List of functions called after diary file is culled for relevant entries. |
| @@ -3309,13 +3330,13 @@ in your `.emacs' file to cause the fancy diary buffer to be displayed with | |||
| 3309 | diary entries from various included files, each day's entries sorted into | 3330 | diary entries from various included files, each day's entries sorted into |
| 3310 | lexicographic order.") | 3331 | lexicographic order.") |
| 3311 | 3332 | ||
| 3312 | (custom-autoload (quote list-diary-entries-hook) "calendar" t) | 3333 | (custom-autoload 'list-diary-entries-hook "calendar" t) |
| 3313 | 3334 | ||
| 3314 | (defvar diary-hook nil "\ | 3335 | (defvar diary-hook nil "\ |
| 3315 | List of functions called after the display of the diary. | 3336 | List of functions called after the display of the diary. |
| 3316 | Can be used for appointment notification.") | 3337 | Can be used for appointment notification.") |
| 3317 | 3338 | ||
| 3318 | (custom-autoload (quote diary-hook) "calendar" t) | 3339 | (custom-autoload 'diary-hook "calendar" t) |
| 3319 | 3340 | ||
| 3320 | (defvar diary-display-hook nil "\ | 3341 | (defvar diary-display-hook nil "\ |
| 3321 | List of functions that handle the display of the diary. | 3342 | List of functions that handle the display of the diary. |
| @@ -3339,7 +3360,7 @@ diary buffer will not show days for which there are no diary entries, even | |||
| 3339 | if that day is a holiday; if you want such days to be shown in the fancy | 3360 | if that day is a holiday; if you want such days to be shown in the fancy |
| 3340 | diary buffer, set the variable `diary-list-include-blanks' to t.") | 3361 | diary buffer, set the variable `diary-list-include-blanks' to t.") |
| 3341 | 3362 | ||
| 3342 | (custom-autoload (quote diary-display-hook) "calendar" nil) | 3363 | (custom-autoload 'diary-display-hook "calendar" nil) |
| 3343 | 3364 | ||
| 3344 | (defvar nongregorian-diary-listing-hook nil "\ | 3365 | (defvar nongregorian-diary-listing-hook nil "\ |
| 3345 | List of functions called for listing diary file and included files. | 3366 | List of functions called for listing diary file and included files. |
| @@ -3349,7 +3370,7 @@ to cull relevant entries. You can use either or both of | |||
| 3349 | `list-bahai-diary-entries'. The documentation for these functions | 3370 | `list-bahai-diary-entries'. The documentation for these functions |
| 3350 | describes the style of such diary entries.") | 3371 | describes the style of such diary entries.") |
| 3351 | 3372 | ||
| 3352 | (custom-autoload (quote nongregorian-diary-listing-hook) "calendar" t) | 3373 | (custom-autoload 'nongregorian-diary-listing-hook "calendar" t) |
| 3353 | 3374 | ||
| 3354 | (defvar mark-diary-entries-hook nil "\ | 3375 | (defvar mark-diary-entries-hook nil "\ |
| 3355 | List of functions called after marking diary entries in the calendar. | 3376 | List of functions called after marking diary entries in the calendar. |
| @@ -3365,7 +3386,7 @@ variable `diary-include-string'. When you use `mark-included-diary-files' as | |||
| 3365 | part of the mark-diary-entries-hook, you will probably also want to use the | 3386 | part of the mark-diary-entries-hook, you will probably also want to use the |
| 3366 | function `include-other-diary-files' as part of `list-diary-entries-hook'.") | 3387 | function `include-other-diary-files' as part of `list-diary-entries-hook'.") |
| 3367 | 3388 | ||
| 3368 | (custom-autoload (quote mark-diary-entries-hook) "calendar" t) | 3389 | (custom-autoload 'mark-diary-entries-hook "calendar" t) |
| 3369 | 3390 | ||
| 3370 | (defvar nongregorian-diary-marking-hook nil "\ | 3391 | (defvar nongregorian-diary-marking-hook nil "\ |
| 3371 | List of functions called for marking diary file and included files. | 3392 | List of functions called for marking diary file and included files. |
| @@ -3375,14 +3396,14 @@ to cull relevant entries. You can use either or both of | |||
| 3375 | `mark-bahai-diary-entries'. The documentation for these functions | 3396 | `mark-bahai-diary-entries'. The documentation for these functions |
| 3376 | describes the style of such diary entries.") | 3397 | describes the style of such diary entries.") |
| 3377 | 3398 | ||
| 3378 | (custom-autoload (quote nongregorian-diary-marking-hook) "calendar" t) | 3399 | (custom-autoload 'nongregorian-diary-marking-hook "calendar" t) |
| 3379 | 3400 | ||
| 3380 | (defvar diary-list-include-blanks nil "\ | 3401 | (defvar diary-list-include-blanks nil "\ |
| 3381 | If nil, do not include days with no diary entry in the list of diary entries. | 3402 | If nil, do not include days with no diary entry in the list of diary entries. |
| 3382 | Such days will then not be shown in the fancy diary buffer, even if they | 3403 | Such days will then not be shown in the fancy diary buffer, even if they |
| 3383 | are holidays.") | 3404 | are holidays.") |
| 3384 | 3405 | ||
| 3385 | (custom-autoload (quote diary-list-include-blanks) "calendar" t) | 3406 | (custom-autoload 'diary-list-include-blanks "calendar" t) |
| 3386 | 3407 | ||
| 3387 | (defvar holidays-in-diary-buffer t "\ | 3408 | (defvar holidays-in-diary-buffer t "\ |
| 3388 | Non-nil means include holidays in the diary display. | 3409 | Non-nil means include holidays in the diary display. |
| @@ -3390,97 +3411,97 @@ The holidays appear in the mode line of the diary buffer, or in the | |||
| 3390 | fancy diary buffer next to the date. This slows down the diary functions | 3411 | fancy diary buffer next to the date. This slows down the diary functions |
| 3391 | somewhat; setting it to nil makes the diary display faster.") | 3412 | somewhat; setting it to nil makes the diary display faster.") |
| 3392 | 3413 | ||
| 3393 | (custom-autoload (quote holidays-in-diary-buffer) "calendar" t) | 3414 | (custom-autoload 'holidays-in-diary-buffer "calendar" t) |
| 3394 | 3415 | ||
| 3395 | (put (quote general-holidays) (quote risky-local-variable) t) | 3416 | (put 'general-holidays 'risky-local-variable t) |
| 3396 | 3417 | ||
| 3397 | (defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ | 3418 | (defvar general-holidays '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving")) "\ |
| 3398 | General holidays. Default value is for the United States. | 3419 | General holidays. Default value is for the United States. |
| 3399 | See the documentation for `calendar-holidays' for details.") | 3420 | See the documentation for `calendar-holidays' for details.") |
| 3400 | 3421 | ||
| 3401 | (custom-autoload (quote general-holidays) "calendar" t) | 3422 | (custom-autoload 'general-holidays "calendar" t) |
| 3402 | 3423 | ||
| 3403 | (put (quote oriental-holidays) (quote risky-local-variable) t) | 3424 | (put 'oriental-holidays 'risky-local-variable t) |
| 3404 | 3425 | ||
| 3405 | (defvar oriental-holidays (quote ((if (fboundp (quote atan)) (holiday-chinese-new-year)))) "\ | 3426 | (defvar oriental-holidays '((if (fboundp 'atan) (holiday-chinese-new-year))) "\ |
| 3406 | Oriental holidays. | 3427 | Oriental holidays. |
| 3407 | See the documentation for `calendar-holidays' for details.") | 3428 | See the documentation for `calendar-holidays' for details.") |
| 3408 | 3429 | ||
| 3409 | (custom-autoload (quote oriental-holidays) "calendar" t) | 3430 | (custom-autoload 'oriental-holidays "calendar" t) |
| 3410 | 3431 | ||
| 3411 | (put (quote local-holidays) (quote risky-local-variable) t) | 3432 | (put 'local-holidays 'risky-local-variable t) |
| 3412 | 3433 | ||
| 3413 | (defvar local-holidays nil "\ | 3434 | (defvar local-holidays nil "\ |
| 3414 | Local holidays. | 3435 | Local holidays. |
| 3415 | See the documentation for `calendar-holidays' for details.") | 3436 | See the documentation for `calendar-holidays' for details.") |
| 3416 | 3437 | ||
| 3417 | (custom-autoload (quote local-holidays) "calendar" t) | 3438 | (custom-autoload 'local-holidays "calendar" t) |
| 3418 | 3439 | ||
| 3419 | (put (quote other-holidays) (quote risky-local-variable) t) | 3440 | (put 'other-holidays 'risky-local-variable t) |
| 3420 | 3441 | ||
| 3421 | (defvar other-holidays nil "\ | 3442 | (defvar other-holidays nil "\ |
| 3422 | User defined holidays. | 3443 | User defined holidays. |
| 3423 | See the documentation for `calendar-holidays' for details.") | 3444 | See the documentation for `calendar-holidays' for details.") |
| 3424 | 3445 | ||
| 3425 | (custom-autoload (quote other-holidays) "calendar" t) | 3446 | (custom-autoload 'other-holidays "calendar" t) |
| 3426 | 3447 | ||
| 3427 | (put (quote hebrew-holidays-1) (quote risky-local-variable) t) | 3448 | (put 'hebrew-holidays-1 'risky-local-variable t) |
| 3428 | 3449 | ||
| 3429 | (defvar hebrew-holidays-1 (quote ((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)"))))) | 3450 | (defvar hebrew-holidays-1 '((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")))) |
| 3430 | 3451 | ||
| 3431 | (put (quote hebrew-holidays-2) (quote risky-local-variable) t) | 3452 | (put 'hebrew-holidays-2 'risky-local-variable t) |
| 3432 | 3453 | ||
| 3433 | (defvar hebrew-holidays-2 (quote ((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat"))))) | 3454 | (defvar hebrew-holidays-2 '((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat")))) |
| 3434 | 3455 | ||
| 3435 | (put (quote hebrew-holidays-3) (quote risky-local-variable) t) | 3456 | (put 'hebrew-holidays-3 'risky-local-variable t) |
| 3436 | 3457 | ||
| 3437 | (defvar hebrew-holidays-3 (quote ((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah"))))) | 3458 | (defvar hebrew-holidays-3 '((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")))) |
| 3438 | 3459 | ||
| 3439 | (put (quote hebrew-holidays-4) (quote risky-local-variable) t) | 3460 | (put 'hebrew-holidays-4 'risky-local-variable t) |
| 3440 | 3461 | ||
| 3441 | (defvar hebrew-holidays-4 (quote ((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc))))) | 3462 | (defvar hebrew-holidays-4 '((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc)))) |
| 3442 | 3463 | ||
| 3443 | (put (quote hebrew-holidays) (quote risky-local-variable) t) | 3464 | (put 'hebrew-holidays 'risky-local-variable t) |
| 3444 | 3465 | ||
| 3445 | (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\ | 3466 | (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\ |
| 3446 | Jewish holidays. | 3467 | Jewish holidays. |
| 3447 | See the documentation for `calendar-holidays' for details.") | 3468 | See the documentation for `calendar-holidays' for details.") |
| 3448 | 3469 | ||
| 3449 | (custom-autoload (quote hebrew-holidays) "calendar" t) | 3470 | (custom-autoload 'hebrew-holidays "calendar" t) |
| 3450 | 3471 | ||
| 3451 | (put (quote christian-holidays) (quote risky-local-variable) t) | 3472 | (put 'christian-holidays 'risky-local-variable t) |
| 3452 | 3473 | ||
| 3453 | (defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc 0 "Easter Sunday") (holiday-easter-etc -2 "Good Friday") (holiday-easter-etc -46 "Ash Wednesday") (if all-christian-calendar-holidays (holiday-easter-etc -63 "Septuagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -56 "Sexagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -49 "Shrove Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -48 "Shrove Monday")) (if all-christian-calendar-holidays (holiday-easter-etc -47 "Shrove Tuesday")) (if all-christian-calendar-holidays (holiday-easter-etc -14 "Passion Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -7 "Palm Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -3 "Maundy Thursday")) (if all-christian-calendar-holidays (holiday-easter-etc 35 "Rogation Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 39 "Ascension Day")) (if all-christian-calendar-holidays (holiday-easter-etc 49 "Pentecost (Whitsunday)")) (if all-christian-calendar-holidays (holiday-easter-etc 50 "Whitmonday")) (if all-christian-calendar-holidays (holiday-easter-etc 56 "Trinity Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 60 "Corpus Christi")) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent 0 "Advent")) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\ | 3474 | (defvar christian-holidays '((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc 0 "Easter Sunday") (holiday-easter-etc -2 "Good Friday") (holiday-easter-etc -46 "Ash Wednesday") (if all-christian-calendar-holidays (holiday-easter-etc -63 "Septuagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -56 "Sexagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -49 "Shrove Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -48 "Shrove Monday")) (if all-christian-calendar-holidays (holiday-easter-etc -47 "Shrove Tuesday")) (if all-christian-calendar-holidays (holiday-easter-etc -14 "Passion Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -7 "Palm Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -3 "Maundy Thursday")) (if all-christian-calendar-holidays (holiday-easter-etc 35 "Rogation Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 39 "Ascension Day")) (if all-christian-calendar-holidays (holiday-easter-etc 49 "Pentecost (Whitsunday)")) (if all-christian-calendar-holidays (holiday-easter-etc 50 "Whitmonday")) (if all-christian-calendar-holidays (holiday-easter-etc 56 "Trinity Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 60 "Corpus Christi")) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent 0 "Advent")) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas"))) "\ |
| 3454 | Christian holidays. | 3475 | Christian holidays. |
| 3455 | See the documentation for `calendar-holidays' for details.") | 3476 | See the documentation for `calendar-holidays' for details.") |
| 3456 | 3477 | ||
| 3457 | (custom-autoload (quote christian-holidays) "calendar" t) | 3478 | (custom-autoload 'christian-holidays "calendar" t) |
| 3458 | 3479 | ||
| 3459 | (put (quote islamic-holidays) (quote risky-local-variable) t) | 3480 | (put 'islamic-holidays 'risky-local-variable t) |
| 3460 | 3481 | ||
| 3461 | (defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\ | 3482 | (defvar islamic-holidays '((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha"))) "\ |
| 3462 | Islamic holidays. | 3483 | Islamic holidays. |
| 3463 | See the documentation for `calendar-holidays' for details.") | 3484 | See the documentation for `calendar-holidays' for details.") |
| 3464 | 3485 | ||
| 3465 | (custom-autoload (quote islamic-holidays) "calendar" t) | 3486 | (custom-autoload 'islamic-holidays "calendar" t) |
| 3466 | 3487 | ||
| 3467 | (put (quote bahai-holidays) (quote risky-local-variable) t) | 3488 | (put 'bahai-holidays 'risky-local-variable t) |
| 3468 | 3489 | ||
| 3469 | (defvar bahai-holidays (quote ((holiday-fixed 3 21 (format "Baha'i New Year (Naw-Ruz) %d" (- displayed-year (1- 1844)))) (holiday-fixed 4 21 "First Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 22 "Second Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 23 "Third Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 24 "Fourth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 25 "Fifth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 26 "Sixth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 27 "Seventh Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 28 "Eighth Day of Ridvan")) (holiday-fixed 4 29 "Ninth Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 30 "Tenth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 5 1 "Eleventh Day of Ridvan")) (holiday-fixed 5 2 "Twelfth Day of Ridvan") (holiday-fixed 5 23 "Declaration of the Bab") (holiday-fixed 5 29 "Ascension of Baha'u'llah") (holiday-fixed 7 9 "Martyrdom of the Bab") (holiday-fixed 10 20 "Birth of the Bab") (holiday-fixed 11 12 "Birth of Baha'u'llah") (if all-bahai-calendar-holidays (holiday-fixed 11 26 "Day of the Covenant")) (if all-bahai-calendar-holidays (holiday-fixed 11 28 "Ascension of `Abdu'l-Baha")))) "\ | 3490 | (defvar bahai-holidays '((holiday-fixed 3 21 (format "Baha'i New Year (Naw-Ruz) %d" (- displayed-year (1- 1844)))) (holiday-fixed 4 21 "First Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 22 "Second Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 23 "Third Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 24 "Fourth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 25 "Fifth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 26 "Sixth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 27 "Seventh Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 28 "Eighth Day of Ridvan")) (holiday-fixed 4 29 "Ninth Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 30 "Tenth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 5 1 "Eleventh Day of Ridvan")) (holiday-fixed 5 2 "Twelfth Day of Ridvan") (holiday-fixed 5 23 "Declaration of the Bab") (holiday-fixed 5 29 "Ascension of Baha'u'llah") (holiday-fixed 7 9 "Martyrdom of the Bab") (holiday-fixed 10 20 "Birth of the Bab") (holiday-fixed 11 12 "Birth of Baha'u'llah") (if all-bahai-calendar-holidays (holiday-fixed 11 26 "Day of the Covenant")) (if all-bahai-calendar-holidays (holiday-fixed 11 28 "Ascension of `Abdu'l-Baha"))) "\ |
| 3470 | Baha'i holidays. | 3491 | Baha'i holidays. |
| 3471 | See the documentation for `calendar-holidays' for details.") | 3492 | See the documentation for `calendar-holidays' for details.") |
| 3472 | 3493 | ||
| 3473 | (custom-autoload (quote bahai-holidays) "calendar" t) | 3494 | (custom-autoload 'bahai-holidays "calendar" t) |
| 3474 | 3495 | ||
| 3475 | (put (quote solar-holidays) (quote risky-local-variable) t) | 3496 | (put 'solar-holidays 'risky-local-variable t) |
| 3476 | 3497 | ||
| 3477 | (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (if (progn (require (quote cal-dst)) t) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Saving Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Saving Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))))) "\ | 3498 | (defvar solar-holidays '((if (fboundp 'atan) (solar-equinoxes-solstices)) (if (progn (require 'cal-dst) t) (funcall 'holiday-sexp calendar-daylight-savings-starts '(format "Daylight Saving Time Begins %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) "")))) (funcall 'holiday-sexp calendar-daylight-savings-ends '(format "Daylight Saving Time Ends %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))) "\ |
| 3478 | Sun-related holidays. | 3499 | Sun-related holidays. |
| 3479 | See the documentation for `calendar-holidays' for details.") | 3500 | See the documentation for `calendar-holidays' for details.") |
| 3480 | 3501 | ||
| 3481 | (custom-autoload (quote solar-holidays) "calendar" t) | 3502 | (custom-autoload 'solar-holidays "calendar" t) |
| 3482 | 3503 | ||
| 3483 | (put (quote calendar-holidays) (quote risky-local-variable) t) | 3504 | (put 'calendar-holidays 'risky-local-variable t) |
| 3484 | 3505 | ||
| 3485 | (defvar calendar-setup nil "\ | 3506 | (defvar calendar-setup nil "\ |
| 3486 | The frame setup of the calendar. | 3507 | The frame setup of the calendar. |
| @@ -3490,9 +3511,9 @@ frames); `calendar-only' (calendar in a separate, dedicated frame); with | |||
| 3490 | any other value the current frame is used. Using any of the first | 3511 | any other value the current frame is used. Using any of the first |
| 3491 | three options overrides the value of `view-diary-entries-initially'.") | 3512 | three options overrides the value of `view-diary-entries-initially'.") |
| 3492 | 3513 | ||
| 3493 | (custom-autoload (quote calendar-setup) "calendar" t) | 3514 | (custom-autoload 'calendar-setup "calendar" t) |
| 3494 | 3515 | ||
| 3495 | (autoload (quote calendar) "calendar" "\ | 3516 | (autoload 'calendar "calendar" "\ |
| 3496 | Choose between the one frame, two frame, or basic calendar displays. | 3517 | Choose between the one frame, two frame, or basic calendar displays. |
| 3497 | If called with an optional prefix argument, prompts for month and year. | 3518 | If called with an optional prefix argument, prompts for month and year. |
| 3498 | 3519 | ||
| @@ -3510,20 +3531,20 @@ after starting `calendar', you should call `redraw-calendar' to | |||
| 3510 | update the calendar display to reflect the change, otherwise | 3531 | update the calendar display to reflect the change, otherwise |
| 3511 | movement commands will not work correctly.") | 3532 | movement commands will not work correctly.") |
| 3512 | 3533 | ||
| 3513 | (custom-autoload (quote calendar-week-start-day) "calendar" nil) | 3534 | (custom-autoload 'calendar-week-start-day "calendar" nil) |
| 3514 | 3535 | ||
| 3515 | ;;;*** | 3536 | ;;;*** |
| 3516 | 3537 | ||
| 3517 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" | 3538 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" |
| 3518 | ;;;;;; "gnus/canlock.el" (18104 24750)) | 3539 | ;;;;;; "gnus/canlock.el" (18088 55101)) |
| 3519 | ;;; Generated autoloads from gnus/canlock.el | 3540 | ;;; Generated autoloads from gnus/canlock.el |
| 3520 | 3541 | ||
| 3521 | (autoload (quote canlock-insert-header) "canlock" "\ | 3542 | (autoload 'canlock-insert-header "canlock" "\ |
| 3522 | Insert a Cancel-Key and/or a Cancel-Lock header if possible. | 3543 | Insert a Cancel-Key and/or a Cancel-Lock header if possible. |
| 3523 | 3544 | ||
| 3524 | \(fn &optional ID-FOR-KEY ID-FOR-LOCK PASSWORD)" nil nil) | 3545 | \(fn &optional ID-FOR-KEY ID-FOR-LOCK PASSWORD)" nil nil) |
| 3525 | 3546 | ||
| 3526 | (autoload (quote canlock-verify) "canlock" "\ | 3547 | (autoload 'canlock-verify "canlock" "\ |
| 3527 | Verify Cancel-Lock or Cancel-Key in BUFFER. | 3548 | Verify Cancel-Lock or Cancel-Key in BUFFER. |
| 3528 | If BUFFER is nil, the current buffer is assumed. Signal an error if | 3549 | If BUFFER is nil, the current buffer is assumed. Signal an error if |
| 3529 | it fails. | 3550 | it fails. |
| @@ -3532,18 +3553,18 @@ it fails. | |||
| 3532 | 3553 | ||
| 3533 | ;;;*** | 3554 | ;;;*** |
| 3534 | 3555 | ||
| 3535 | ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (18104 | 3556 | ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (18088 |
| 3536 | ;;;;;; 24763)) | 3557 | ;;;;;; 55114)) |
| 3537 | ;;; Generated autoloads from progmodes/cc-compat.el | 3558 | ;;; Generated autoloads from progmodes/cc-compat.el |
| 3538 | (put 'c-indent-level 'safe-local-variable 'integerp) | 3559 | (put 'c-indent-level 'safe-local-variable 'integerp) |
| 3539 | 3560 | ||
| 3540 | ;;;*** | 3561 | ;;;*** |
| 3541 | 3562 | ||
| 3542 | ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" | 3563 | ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" |
| 3543 | ;;;;;; (18104 24763)) | 3564 | ;;;;;; (18203 37789)) |
| 3544 | ;;; Generated autoloads from progmodes/cc-engine.el | 3565 | ;;; Generated autoloads from progmodes/cc-engine.el |
| 3545 | 3566 | ||
| 3546 | (autoload (quote c-guess-basic-syntax) "cc-engine" "\ | 3567 | (autoload 'c-guess-basic-syntax "cc-engine" "\ |
| 3547 | Return the syntactic context of the current line. | 3568 | Return the syntactic context of the current line. |
| 3548 | 3569 | ||
| 3549 | \(fn)" nil nil) | 3570 | \(fn)" nil nil) |
| @@ -3552,10 +3573,10 @@ Return the syntactic context of the current line. | |||
| 3552 | 3573 | ||
| 3553 | ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode | 3574 | ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode |
| 3554 | ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" | 3575 | ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" |
| 3555 | ;;;;;; (18104 24763)) | 3576 | ;;;;;; (18191 7159)) |
| 3556 | ;;; Generated autoloads from progmodes/cc-mode.el | 3577 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3557 | 3578 | ||
| 3558 | (autoload (quote c-initialize-cc-mode) "cc-mode" "\ | 3579 | (autoload 'c-initialize-cc-mode "cc-mode" "\ |
| 3559 | Initialize CC Mode for use in the current buffer. | 3580 | Initialize CC Mode for use in the current buffer. |
| 3560 | If the optional NEW-STYLE-INIT is nil or left out then all necessary | 3581 | If the optional NEW-STYLE-INIT is nil or left out then all necessary |
| 3561 | initialization to run CC Mode for the C language is done. Otherwise | 3582 | initialization to run CC Mode for the C language is done. Otherwise |
| @@ -3574,7 +3595,7 @@ Syntax table used in c-mode buffers.") | |||
| 3574 | (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode)) | 3595 | (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode)) |
| 3575 | (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode)) | 3596 | (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode)) |
| 3576 | 3597 | ||
| 3577 | (autoload (quote c-mode) "cc-mode" "\ | 3598 | (autoload 'c-mode "cc-mode" "\ |
| 3578 | Major mode for editing K&R and ANSI C code. | 3599 | Major mode for editing K&R and ANSI C code. |
| 3579 | To submit a problem report, enter `\\[c-submit-bug-report]' from a | 3600 | To submit a problem report, enter `\\[c-submit-bug-report]' from a |
| 3580 | c-mode buffer. This automatically sets up a mail buffer with version | 3601 | c-mode buffer. This automatically sets up a mail buffer with version |
| @@ -3594,7 +3615,7 @@ Key bindings: | |||
| 3594 | (defvar c++-mode-syntax-table nil "\ | 3615 | (defvar c++-mode-syntax-table nil "\ |
| 3595 | Syntax table used in c++-mode buffers.") | 3616 | Syntax table used in c++-mode buffers.") |
| 3596 | 3617 | ||
| 3597 | (autoload (quote c++-mode) "cc-mode" "\ | 3618 | (autoload 'c++-mode "cc-mode" "\ |
| 3598 | Major mode for editing C++ code. | 3619 | Major mode for editing C++ code. |
| 3599 | To submit a problem report, enter `\\[c-submit-bug-report]' from a | 3620 | To submit a problem report, enter `\\[c-submit-bug-report]' from a |
| 3600 | c++-mode buffer. This automatically sets up a mail buffer with | 3621 | c++-mode buffer. This automatically sets up a mail buffer with |
| @@ -3616,7 +3637,7 @@ Key bindings: | |||
| 3616 | Syntax table used in objc-mode buffers.") | 3637 | Syntax table used in objc-mode buffers.") |
| 3617 | (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode)) | 3638 | (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode)) |
| 3618 | 3639 | ||
| 3619 | (autoload (quote objc-mode) "cc-mode" "\ | 3640 | (autoload 'objc-mode "cc-mode" "\ |
| 3620 | Major mode for editing Objective C code. | 3641 | Major mode for editing Objective C code. |
| 3621 | To submit a problem report, enter `\\[c-submit-bug-report]' from an | 3642 | To submit a problem report, enter `\\[c-submit-bug-report]' from an |
| 3622 | objc-mode buffer. This automatically sets up a mail buffer with | 3643 | objc-mode buffer. This automatically sets up a mail buffer with |
| @@ -3638,7 +3659,7 @@ Key bindings: | |||
| 3638 | Syntax table used in java-mode buffers.") | 3659 | Syntax table used in java-mode buffers.") |
| 3639 | (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode)) | 3660 | (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode)) |
| 3640 | 3661 | ||
| 3641 | (autoload (quote java-mode) "cc-mode" "\ | 3662 | (autoload 'java-mode "cc-mode" "\ |
| 3642 | Major mode for editing Java code. | 3663 | Major mode for editing Java code. |
| 3643 | To submit a problem report, enter `\\[c-submit-bug-report]' from a | 3664 | To submit a problem report, enter `\\[c-submit-bug-report]' from a |
| 3644 | java-mode buffer. This automatically sets up a mail buffer with | 3665 | java-mode buffer. This automatically sets up a mail buffer with |
| @@ -3660,7 +3681,7 @@ Key bindings: | |||
| 3660 | Syntax table used in idl-mode buffers.") | 3681 | Syntax table used in idl-mode buffers.") |
| 3661 | (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode)) | 3682 | (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode)) |
| 3662 | 3683 | ||
| 3663 | (autoload (quote idl-mode) "cc-mode" "\ | 3684 | (autoload 'idl-mode "cc-mode" "\ |
| 3664 | Major mode for editing CORBA's IDL, PSDL and CIDL code. | 3685 | Major mode for editing CORBA's IDL, PSDL and CIDL code. |
| 3665 | To submit a problem report, enter `\\[c-submit-bug-report]' from an | 3686 | To submit a problem report, enter `\\[c-submit-bug-report]' from an |
| 3666 | idl-mode buffer. This automatically sets up a mail buffer with | 3687 | idl-mode buffer. This automatically sets up a mail buffer with |
| @@ -3683,7 +3704,7 @@ Syntax table used in pike-mode buffers.") | |||
| 3683 | (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(.in\\)?\\)\\'" . pike-mode)) | 3704 | (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(.in\\)?\\)\\'" . pike-mode)) |
| 3684 | (add-to-list 'interpreter-mode-alist '("pike" . pike-mode)) | 3705 | (add-to-list 'interpreter-mode-alist '("pike" . pike-mode)) |
| 3685 | 3706 | ||
| 3686 | (autoload (quote pike-mode) "cc-mode" "\ | 3707 | (autoload 'pike-mode "cc-mode" "\ |
| 3687 | Major mode for editing Pike code. | 3708 | Major mode for editing Pike code. |
| 3688 | To submit a problem report, enter `\\[c-submit-bug-report]' from a | 3709 | To submit a problem report, enter `\\[c-submit-bug-report]' from a |
| 3689 | pike-mode buffer. This automatically sets up a mail buffer with | 3710 | pike-mode buffer. This automatically sets up a mail buffer with |
| @@ -3710,10 +3731,10 @@ Key bindings: | |||
| 3710 | ;;;*** | 3731 | ;;;*** |
| 3711 | 3732 | ||
| 3712 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" | 3733 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" |
| 3713 | ;;;;;; "progmodes/cc-styles.el" (18104 24764)) | 3734 | ;;;;;; "progmodes/cc-styles.el" (18192 17587)) |
| 3714 | ;;; Generated autoloads from progmodes/cc-styles.el | 3735 | ;;; Generated autoloads from progmodes/cc-styles.el |
| 3715 | 3736 | ||
| 3716 | (autoload (quote c-set-style) "cc-styles" "\ | 3737 | (autoload 'c-set-style "cc-styles" "\ |
| 3717 | Set the current buffer to use the style STYLENAME. | 3738 | Set the current buffer to use the style STYLENAME. |
| 3718 | STYLENAME, a string, must be an existing CC Mode style - These are contained | 3739 | STYLENAME, a string, must be an existing CC Mode style - These are contained |
| 3719 | in the variable `c-style-alist'. | 3740 | in the variable `c-style-alist'. |
| @@ -3738,7 +3759,7 @@ a null operation. | |||
| 3738 | 3759 | ||
| 3739 | \(fn STYLENAME &optional DONT-OVERRIDE)" t nil) | 3760 | \(fn STYLENAME &optional DONT-OVERRIDE)" t nil) |
| 3740 | 3761 | ||
| 3741 | (autoload (quote c-add-style) "cc-styles" "\ | 3762 | (autoload 'c-add-style "cc-styles" "\ |
| 3742 | Adds a style to `c-style-alist', or updates an existing one. | 3763 | Adds a style to `c-style-alist', or updates an existing one. |
| 3743 | STYLE is a string identifying the style to add or update. DESCRIPTION | 3764 | STYLE is a string identifying the style to add or update. DESCRIPTION |
| 3744 | is an association list describing the style and must be of the form: | 3765 | is an association list describing the style and must be of the form: |
| @@ -3751,7 +3772,7 @@ STYLE using `c-set-style' if the optional SET-P flag is non-nil. | |||
| 3751 | 3772 | ||
| 3752 | \(fn STYLE DESCRIPTION &optional SET-P)" t nil) | 3773 | \(fn STYLE DESCRIPTION &optional SET-P)" t nil) |
| 3753 | 3774 | ||
| 3754 | (autoload (quote c-set-offset) "cc-styles" "\ | 3775 | (autoload 'c-set-offset "cc-styles" "\ |
| 3755 | Change the value of a syntactic element symbol in `c-offsets-alist'. | 3776 | Change the value of a syntactic element symbol in `c-offsets-alist'. |
| 3756 | SYMBOL is the syntactic element symbol to change and OFFSET is the new | 3777 | SYMBOL is the syntactic element symbol to change and OFFSET is the new |
| 3757 | offset for that syntactic element. The optional argument is not used | 3778 | offset for that syntactic element. The optional argument is not used |
| @@ -3761,14 +3782,14 @@ and exists only for compatibility reasons. | |||
| 3761 | 3782 | ||
| 3762 | ;;;*** | 3783 | ;;;*** |
| 3763 | 3784 | ||
| 3764 | ;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (18104 | 3785 | ;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (18088 |
| 3765 | ;;;;;; 24764)) | 3786 | ;;;;;; 55115)) |
| 3766 | ;;; Generated autoloads from progmodes/cc-subword.el | 3787 | ;;; Generated autoloads from progmodes/cc-subword.el |
| 3767 | (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) | 3788 | (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) |
| 3768 | 3789 | ||
| 3769 | ;;;*** | 3790 | ;;;*** |
| 3770 | 3791 | ||
| 3771 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (18104 24764)) | 3792 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (18120 34752)) |
| 3772 | ;;; Generated autoloads from progmodes/cc-vars.el | 3793 | ;;; Generated autoloads from progmodes/cc-vars.el |
| 3773 | (put 'c-basic-offset 'safe-local-variable 'integerp) | 3794 | (put 'c-basic-offset 'safe-local-variable 'integerp) |
| 3774 | (put 'c-backslash-column 'safe-local-variable 'integerp) | 3795 | (put 'c-backslash-column 'safe-local-variable 'integerp) |
| @@ -3778,20 +3799,20 @@ and exists only for compatibility reasons. | |||
| 3778 | 3799 | ||
| 3779 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program | 3800 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program |
| 3780 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" | 3801 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" |
| 3781 | ;;;;;; (18104 24756)) | 3802 | ;;;;;; (18088 55107)) |
| 3782 | ;;; Generated autoloads from international/ccl.el | 3803 | ;;; Generated autoloads from international/ccl.el |
| 3783 | 3804 | ||
| 3784 | (autoload (quote ccl-compile) "ccl" "\ | 3805 | (autoload 'ccl-compile "ccl" "\ |
| 3785 | Return the compiled code of CCL-PROGRAM as a vector of integers. | 3806 | Return the compiled code of CCL-PROGRAM as a vector of integers. |
| 3786 | 3807 | ||
| 3787 | \(fn CCL-PROGRAM)" nil nil) | 3808 | \(fn CCL-PROGRAM)" nil nil) |
| 3788 | 3809 | ||
| 3789 | (autoload (quote ccl-dump) "ccl" "\ | 3810 | (autoload 'ccl-dump "ccl" "\ |
| 3790 | Disassemble compiled CCL-CODE. | 3811 | Disassemble compiled CCL-CODE. |
| 3791 | 3812 | ||
| 3792 | \(fn CCL-CODE)" nil nil) | 3813 | \(fn CCL-CODE)" nil nil) |
| 3793 | 3814 | ||
| 3794 | (autoload (quote declare-ccl-program) "ccl" "\ | 3815 | (autoload 'declare-ccl-program "ccl" "\ |
| 3795 | Declare NAME as a name of CCL program. | 3816 | Declare NAME as a name of CCL program. |
| 3796 | 3817 | ||
| 3797 | This macro exists for backward compatibility. In the old version of | 3818 | This macro exists for backward compatibility. In the old version of |
| @@ -3804,7 +3825,7 @@ Optional arg VECTOR is a compiled CCL code of the CCL program. | |||
| 3804 | 3825 | ||
| 3805 | \(fn NAME &optional VECTOR)" nil (quote macro)) | 3826 | \(fn NAME &optional VECTOR)" nil (quote macro)) |
| 3806 | 3827 | ||
| 3807 | (autoload (quote define-ccl-program) "ccl" "\ | 3828 | (autoload 'define-ccl-program "ccl" "\ |
| 3808 | Set NAME the compiled code of CCL-PROGRAM. | 3829 | Set NAME the compiled code of CCL-PROGRAM. |
| 3809 | 3830 | ||
| 3810 | CCL-PROGRAM has this form: | 3831 | CCL-PROGRAM has this form: |
| @@ -4017,7 +4038,7 @@ MAP-ID := integer | |||
| 4017 | 4038 | ||
| 4018 | \(fn NAME CCL-PROGRAM &optional DOC)" nil (quote macro)) | 4039 | \(fn NAME CCL-PROGRAM &optional DOC)" nil (quote macro)) |
| 4019 | 4040 | ||
| 4020 | (autoload (quote check-ccl-program) "ccl" "\ | 4041 | (autoload 'check-ccl-program "ccl" "\ |
| 4021 | Check validity of CCL-PROGRAM. | 4042 | Check validity of CCL-PROGRAM. |
| 4022 | If CCL-PROGRAM is a symbol denoting a CCL program, return | 4043 | If CCL-PROGRAM is a symbol denoting a CCL program, return |
| 4023 | CCL-PROGRAM, else return nil. | 4044 | CCL-PROGRAM, else return nil. |
| @@ -4026,7 +4047,7 @@ register CCL-PROGRAM by name NAME, and return NAME. | |||
| 4026 | 4047 | ||
| 4027 | \(fn CCL-PROGRAM &optional NAME)" nil (quote macro)) | 4048 | \(fn CCL-PROGRAM &optional NAME)" nil (quote macro)) |
| 4028 | 4049 | ||
| 4029 | (autoload (quote ccl-execute-with-args) "ccl" "\ | 4050 | (autoload 'ccl-execute-with-args "ccl" "\ |
| 4030 | Execute CCL-PROGRAM with registers initialized by the remaining args. | 4051 | Execute CCL-PROGRAM with registers initialized by the remaining args. |
| 4031 | The return value is a vector of resulting CCL registers. | 4052 | The return value is a vector of resulting CCL registers. |
| 4032 | 4053 | ||
| @@ -4037,10 +4058,10 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 4037 | ;;;*** | 4058 | ;;;*** |
| 4038 | 4059 | ||
| 4039 | ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" | 4060 | ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" |
| 4040 | ;;;;;; (18104 24764)) | 4061 | ;;;;;; (18088 55115)) |
| 4041 | ;;; Generated autoloads from progmodes/cfengine.el | 4062 | ;;; Generated autoloads from progmodes/cfengine.el |
| 4042 | 4063 | ||
| 4043 | (autoload (quote cfengine-mode) "cfengine" "\ | 4064 | (autoload 'cfengine-mode "cfengine" "\ |
| 4044 | Major mode for editing cfengine input. | 4065 | Major mode for editing cfengine input. |
| 4045 | There are no special keybindings by default. | 4066 | There are no special keybindings by default. |
| 4046 | 4067 | ||
| @@ -4059,17 +4080,19 @@ to the action header. | |||
| 4059 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer | 4080 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer |
| 4060 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive | 4081 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive |
| 4061 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" | 4082 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" |
| 4062 | ;;;;;; (18104 24746)) | 4083 | ;;;;;; (18203 37787)) |
| 4063 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 4084 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 4085 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) | ||
| 4086 | (put 'checkdoc-permit-comma-termination-flag 'safe-local-variable 'booleanp) | ||
| 4064 | 4087 | ||
| 4065 | (autoload (quote checkdoc) "checkdoc" "\ | 4088 | (autoload 'checkdoc "checkdoc" "\ |
| 4066 | Interactively check the entire buffer for style errors. | 4089 | Interactively check the entire buffer for style errors. |
| 4067 | The current status of the check will be displayed in a buffer which | 4090 | The current status of the check will be displayed in a buffer which |
| 4068 | the users will view as each check is completed. | 4091 | the users will view as each check is completed. |
| 4069 | 4092 | ||
| 4070 | \(fn)" t nil) | 4093 | \(fn)" t nil) |
| 4071 | 4094 | ||
| 4072 | (autoload (quote checkdoc-interactive) "checkdoc" "\ | 4095 | (autoload 'checkdoc-interactive "checkdoc" "\ |
| 4073 | Interactively check the current buffer for doc string errors. | 4096 | Interactively check the current buffer for doc string errors. |
| 4074 | Prefix argument START-HERE will start the checking from the current | 4097 | Prefix argument START-HERE will start the checking from the current |
| 4075 | point, otherwise the check starts at the beginning of the current | 4098 | point, otherwise the check starts at the beginning of the current |
| @@ -4080,7 +4103,7 @@ checkdoc status window instead of the usual behavior. | |||
| 4080 | 4103 | ||
| 4081 | \(fn &optional START-HERE SHOWSTATUS)" t nil) | 4104 | \(fn &optional START-HERE SHOWSTATUS)" t nil) |
| 4082 | 4105 | ||
| 4083 | (autoload (quote checkdoc-message-interactive) "checkdoc" "\ | 4106 | (autoload 'checkdoc-message-interactive "checkdoc" "\ |
| 4084 | Interactively check the current buffer for message string errors. | 4107 | Interactively check the current buffer for message string errors. |
| 4085 | Prefix argument START-HERE will start the checking from the current | 4108 | Prefix argument START-HERE will start the checking from the current |
| 4086 | point, otherwise the check starts at the beginning of the current | 4109 | point, otherwise the check starts at the beginning of the current |
| @@ -4091,7 +4114,7 @@ checkdoc status window instead of the usual behavior. | |||
| 4091 | 4114 | ||
| 4092 | \(fn &optional START-HERE SHOWSTATUS)" t nil) | 4115 | \(fn &optional START-HERE SHOWSTATUS)" t nil) |
| 4093 | 4116 | ||
| 4094 | (autoload (quote checkdoc-eval-current-buffer) "checkdoc" "\ | 4117 | (autoload 'checkdoc-eval-current-buffer "checkdoc" "\ |
| 4095 | Evaluate and check documentation for the current buffer. | 4118 | Evaluate and check documentation for the current buffer. |
| 4096 | Evaluation is done first because good documentation for something that | 4119 | Evaluation is done first because good documentation for something that |
| 4097 | doesn't work is just not useful. Comments, doc strings, and rogue | 4120 | doesn't work is just not useful. Comments, doc strings, and rogue |
| @@ -4099,7 +4122,7 @@ spacing are all verified. | |||
| 4099 | 4122 | ||
| 4100 | \(fn)" t nil) | 4123 | \(fn)" t nil) |
| 4101 | 4124 | ||
| 4102 | (autoload (quote checkdoc-current-buffer) "checkdoc" "\ | 4125 | (autoload 'checkdoc-current-buffer "checkdoc" "\ |
| 4103 | Check current buffer for document, comment, error style, and rogue spaces. | 4126 | Check current buffer for document, comment, error style, and rogue spaces. |
| 4104 | With a prefix argument (in Lisp, the argument TAKE-NOTES), | 4127 | With a prefix argument (in Lisp, the argument TAKE-NOTES), |
| 4105 | store all errors found in a warnings buffer, | 4128 | store all errors found in a warnings buffer, |
| @@ -4107,7 +4130,7 @@ otherwise stop after the first error. | |||
| 4107 | 4130 | ||
| 4108 | \(fn &optional TAKE-NOTES)" t nil) | 4131 | \(fn &optional TAKE-NOTES)" t nil) |
| 4109 | 4132 | ||
| 4110 | (autoload (quote checkdoc-start) "checkdoc" "\ | 4133 | (autoload 'checkdoc-start "checkdoc" "\ |
| 4111 | Start scanning the current buffer for documentation string style errors. | 4134 | Start scanning the current buffer for documentation string style errors. |
| 4112 | Only documentation strings are checked. | 4135 | Only documentation strings are checked. |
| 4113 | Use `checkdoc-continue' to continue checking if an error cannot be fixed. | 4136 | Use `checkdoc-continue' to continue checking if an error cannot be fixed. |
| @@ -4116,7 +4139,7 @@ a separate buffer. | |||
| 4116 | 4139 | ||
| 4117 | \(fn &optional TAKE-NOTES)" t nil) | 4140 | \(fn &optional TAKE-NOTES)" t nil) |
| 4118 | 4141 | ||
| 4119 | (autoload (quote checkdoc-continue) "checkdoc" "\ | 4142 | (autoload 'checkdoc-continue "checkdoc" "\ |
| 4120 | Find the next doc string in the current buffer which has a style error. | 4143 | Find the next doc string in the current buffer which has a style error. |
| 4121 | Prefix argument TAKE-NOTES means to continue through the whole buffer and | 4144 | Prefix argument TAKE-NOTES means to continue through the whole buffer and |
| 4122 | save warnings in a separate buffer. Second optional argument START-POINT | 4145 | save warnings in a separate buffer. Second optional argument START-POINT |
| @@ -4124,7 +4147,7 @@ is the starting location. If this is nil, `point-min' is used instead. | |||
| 4124 | 4147 | ||
| 4125 | \(fn &optional TAKE-NOTES)" t nil) | 4148 | \(fn &optional TAKE-NOTES)" t nil) |
| 4126 | 4149 | ||
| 4127 | (autoload (quote checkdoc-comments) "checkdoc" "\ | 4150 | (autoload 'checkdoc-comments "checkdoc" "\ |
| 4128 | Find missing comment sections in the current Emacs Lisp file. | 4151 | Find missing comment sections in the current Emacs Lisp file. |
| 4129 | Prefix argument TAKE-NOTES non-nil means to save warnings in a | 4152 | Prefix argument TAKE-NOTES non-nil means to save warnings in a |
| 4130 | separate buffer. Otherwise print a message. This returns the error | 4153 | separate buffer. Otherwise print a message. This returns the error |
| @@ -4132,7 +4155,7 @@ if there is one. | |||
| 4132 | 4155 | ||
| 4133 | \(fn &optional TAKE-NOTES)" t nil) | 4156 | \(fn &optional TAKE-NOTES)" t nil) |
| 4134 | 4157 | ||
| 4135 | (autoload (quote checkdoc-rogue-spaces) "checkdoc" "\ | 4158 | (autoload 'checkdoc-rogue-spaces "checkdoc" "\ |
| 4136 | Find extra spaces at the end of lines in the current file. | 4159 | Find extra spaces at the end of lines in the current file. |
| 4137 | Prefix argument TAKE-NOTES non-nil means to save warnings in a | 4160 | Prefix argument TAKE-NOTES non-nil means to save warnings in a |
| 4138 | separate buffer. Otherwise print a message. This returns the error | 4161 | separate buffer. Otherwise print a message. This returns the error |
| @@ -4141,13 +4164,13 @@ Optional argument INTERACT permits more interactive fixing. | |||
| 4141 | 4164 | ||
| 4142 | \(fn &optional TAKE-NOTES INTERACT)" t nil) | 4165 | \(fn &optional TAKE-NOTES INTERACT)" t nil) |
| 4143 | 4166 | ||
| 4144 | (autoload (quote checkdoc-message-text) "checkdoc" "\ | 4167 | (autoload 'checkdoc-message-text "checkdoc" "\ |
| 4145 | Scan the buffer for occurrences of the error function, and verify text. | 4168 | Scan the buffer for occurrences of the error function, and verify text. |
| 4146 | Optional argument TAKE-NOTES causes all errors to be logged. | 4169 | Optional argument TAKE-NOTES causes all errors to be logged. |
| 4147 | 4170 | ||
| 4148 | \(fn &optional TAKE-NOTES)" t nil) | 4171 | \(fn &optional TAKE-NOTES)" t nil) |
| 4149 | 4172 | ||
| 4150 | (autoload (quote checkdoc-eval-defun) "checkdoc" "\ | 4173 | (autoload 'checkdoc-eval-defun "checkdoc" "\ |
| 4151 | Evaluate the current form with `eval-defun' and check its documentation. | 4174 | Evaluate the current form with `eval-defun' and check its documentation. |
| 4152 | Evaluation is done first so the form will be read before the | 4175 | Evaluation is done first so the form will be read before the |
| 4153 | documentation is checked. If there is a documentation error, then the display | 4176 | documentation is checked. If there is a documentation error, then the display |
| @@ -4155,7 +4178,7 @@ of what was evaluated will be overwritten by the diagnostic message. | |||
| 4155 | 4178 | ||
| 4156 | \(fn)" t nil) | 4179 | \(fn)" t nil) |
| 4157 | 4180 | ||
| 4158 | (autoload (quote checkdoc-defun) "checkdoc" "\ | 4181 | (autoload 'checkdoc-defun "checkdoc" "\ |
| 4159 | Examine the doc string of the function or variable under point. | 4182 | Examine the doc string of the function or variable under point. |
| 4160 | Call `error' if the doc string has problems. If NO-ERROR is | 4183 | Call `error' if the doc string has problems. If NO-ERROR is |
| 4161 | non-nil, then do not call error, but call `message' instead. | 4184 | non-nil, then do not call error, but call `message' instead. |
| @@ -4164,72 +4187,73 @@ space at the end of each line. | |||
| 4164 | 4187 | ||
| 4165 | \(fn &optional NO-ERROR)" t nil) | 4188 | \(fn &optional NO-ERROR)" t nil) |
| 4166 | 4189 | ||
| 4167 | (autoload (quote checkdoc-ispell) "checkdoc" "\ | 4190 | (autoload 'checkdoc-ispell "checkdoc" "\ |
| 4168 | Check the style and spelling of everything interactively. | 4191 | Check the style and spelling of everything interactively. |
| 4169 | Calls `checkdoc' with spell-checking turned on. | 4192 | Calls `checkdoc' with spell-checking turned on. |
| 4170 | Prefix argument TAKE-NOTES is the same as for `checkdoc' | 4193 | Prefix argument TAKE-NOTES is the same as for `checkdoc' |
| 4171 | 4194 | ||
| 4172 | \(fn &optional TAKE-NOTES)" t nil) | 4195 | \(fn &optional TAKE-NOTES)" t nil) |
| 4173 | 4196 | ||
| 4174 | (autoload (quote checkdoc-ispell-current-buffer) "checkdoc" "\ | 4197 | (autoload 'checkdoc-ispell-current-buffer "checkdoc" "\ |
| 4175 | Check the style and spelling of the current buffer. | 4198 | Check the style and spelling of the current buffer. |
| 4176 | Calls `checkdoc-current-buffer' with spell-checking turned on. | 4199 | Calls `checkdoc-current-buffer' with spell-checking turned on. |
| 4177 | Prefix argument TAKE-NOTES is the same as for `checkdoc-current-buffer' | 4200 | Prefix argument TAKE-NOTES is the same as for `checkdoc-current-buffer' |
| 4178 | 4201 | ||
| 4179 | \(fn &optional TAKE-NOTES)" t nil) | 4202 | \(fn &optional TAKE-NOTES)" t nil) |
| 4180 | 4203 | ||
| 4181 | (autoload (quote checkdoc-ispell-interactive) "checkdoc" "\ | 4204 | (autoload 'checkdoc-ispell-interactive "checkdoc" "\ |
| 4182 | Check the style and spelling of the current buffer interactively. | 4205 | Check the style and spelling of the current buffer interactively. |
| 4183 | Calls `checkdoc-interactive' with spell-checking turned on. | 4206 | Calls `checkdoc-interactive' with spell-checking turned on. |
| 4184 | Prefix argument TAKE-NOTES is the same as for `checkdoc-interactive' | 4207 | Prefix argument TAKE-NOTES is the same as for `checkdoc-interactive' |
| 4185 | 4208 | ||
| 4186 | \(fn &optional TAKE-NOTES)" t nil) | 4209 | \(fn &optional TAKE-NOTES)" t nil) |
| 4187 | 4210 | ||
| 4188 | (autoload (quote checkdoc-ispell-message-interactive) "checkdoc" "\ | 4211 | (autoload 'checkdoc-ispell-message-interactive "checkdoc" "\ |
| 4189 | Check the style and spelling of message text interactively. | 4212 | Check the style and spelling of message text interactively. |
| 4190 | Calls `checkdoc-message-interactive' with spell-checking turned on. | 4213 | Calls `checkdoc-message-interactive' with spell-checking turned on. |
| 4191 | Prefix argument TAKE-NOTES is the same as for `checkdoc-message-interactive' | 4214 | Prefix argument TAKE-NOTES is the same as for `checkdoc-message-interactive' |
| 4192 | 4215 | ||
| 4193 | \(fn &optional TAKE-NOTES)" t nil) | 4216 | \(fn &optional TAKE-NOTES)" t nil) |
| 4194 | 4217 | ||
| 4195 | (autoload (quote checkdoc-ispell-message-text) "checkdoc" "\ | 4218 | (autoload 'checkdoc-ispell-message-text "checkdoc" "\ |
| 4196 | Check the style and spelling of message text interactively. | 4219 | Check the style and spelling of message text interactively. |
| 4197 | Calls `checkdoc-message-text' with spell-checking turned on. | 4220 | Calls `checkdoc-message-text' with spell-checking turned on. |
| 4198 | Prefix argument TAKE-NOTES is the same as for `checkdoc-message-text' | 4221 | Prefix argument TAKE-NOTES is the same as for `checkdoc-message-text' |
| 4199 | 4222 | ||
| 4200 | \(fn &optional TAKE-NOTES)" t nil) | 4223 | \(fn &optional TAKE-NOTES)" t nil) |
| 4201 | 4224 | ||
| 4202 | (autoload (quote checkdoc-ispell-start) "checkdoc" "\ | 4225 | (autoload 'checkdoc-ispell-start "checkdoc" "\ |
| 4203 | Check the style and spelling of the current buffer. | 4226 | Check the style and spelling of the current buffer. |
| 4204 | Calls `checkdoc-start' with spell-checking turned on. | 4227 | Calls `checkdoc-start' with spell-checking turned on. |
| 4205 | Prefix argument TAKE-NOTES is the same as for `checkdoc-start' | 4228 | Prefix argument TAKE-NOTES is the same as for `checkdoc-start' |
| 4206 | 4229 | ||
| 4207 | \(fn &optional TAKE-NOTES)" t nil) | 4230 | \(fn &optional TAKE-NOTES)" t nil) |
| 4208 | 4231 | ||
| 4209 | (autoload (quote checkdoc-ispell-continue) "checkdoc" "\ | 4232 | (autoload 'checkdoc-ispell-continue "checkdoc" "\ |
| 4210 | Check the style and spelling of the current buffer after point. | 4233 | Check the style and spelling of the current buffer after point. |
| 4211 | Calls `checkdoc-continue' with spell-checking turned on. | 4234 | Calls `checkdoc-continue' with spell-checking turned on. |
| 4212 | Prefix argument TAKE-NOTES is the same as for `checkdoc-continue' | 4235 | Prefix argument TAKE-NOTES is the same as for `checkdoc-continue' |
| 4213 | 4236 | ||
| 4214 | \(fn &optional TAKE-NOTES)" t nil) | 4237 | \(fn &optional TAKE-NOTES)" t nil) |
| 4215 | 4238 | ||
| 4216 | (autoload (quote checkdoc-ispell-comments) "checkdoc" "\ | 4239 | (autoload 'checkdoc-ispell-comments "checkdoc" "\ |
| 4217 | Check the style and spelling of the current buffer's comments. | 4240 | Check the style and spelling of the current buffer's comments. |
| 4218 | Calls `checkdoc-comments' with spell-checking turned on. | 4241 | Calls `checkdoc-comments' with spell-checking turned on. |
| 4219 | Prefix argument TAKE-NOTES is the same as for `checkdoc-comments' | 4242 | Prefix argument TAKE-NOTES is the same as for `checkdoc-comments' |
| 4220 | 4243 | ||
| 4221 | \(fn &optional TAKE-NOTES)" t nil) | 4244 | \(fn &optional TAKE-NOTES)" t nil) |
| 4222 | 4245 | ||
| 4223 | (autoload (quote checkdoc-ispell-defun) "checkdoc" "\ | 4246 | (autoload 'checkdoc-ispell-defun "checkdoc" "\ |
| 4224 | Check the style and spelling of the current defun with Ispell. | 4247 | Check the style and spelling of the current defun with Ispell. |
| 4225 | Calls `checkdoc-defun' with spell-checking turned on. | 4248 | Calls `checkdoc-defun' with spell-checking turned on. |
| 4226 | Prefix argument TAKE-NOTES is the same as for `checkdoc-defun' | 4249 | Prefix argument TAKE-NOTES is the same as for `checkdoc-defun' |
| 4227 | 4250 | ||
| 4228 | \(fn &optional TAKE-NOTES)" t nil) | 4251 | \(fn &optional TAKE-NOTES)" t nil) |
| 4229 | 4252 | ||
| 4230 | (autoload (quote checkdoc-minor-mode) "checkdoc" "\ | 4253 | (autoload 'checkdoc-minor-mode "checkdoc" "\ |
| 4231 | Toggle Checkdoc minor mode, a mode for checking Lisp doc strings. | 4254 | Toggle Checkdoc minor mode, a mode for checking Lisp doc strings. |
| 4232 | With prefix ARG, turn Checkdoc minor mode on iff ARG is positive. | 4255 | With prefix ARG, turn Checkdoc minor mode on if ARG is positive, otherwise |
| 4256 | turn it off. | ||
| 4233 | 4257 | ||
| 4234 | In Checkdoc minor mode, the usual bindings for `eval-defun' which is | 4258 | In Checkdoc minor mode, the usual bindings for `eval-defun' which is |
| 4235 | bound to \\<checkdoc-minor-mode-map>\\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include | 4259 | bound to \\<checkdoc-minor-mode-map>\\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include |
| @@ -4242,28 +4266,28 @@ checking of documentation strings. | |||
| 4242 | ;;;*** | 4266 | ;;;*** |
| 4243 | 4267 | ||
| 4244 | ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer | 4268 | ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer |
| 4245 | ;;;;;; decode-hz-region) "china-util" "language/china-util.el" (18104 | 4269 | ;;;;;; decode-hz-region) "china-util" "language/china-util.el" (18088 |
| 4246 | ;;;;;; 24757)) | 4270 | ;;;;;; 55108)) |
| 4247 | ;;; Generated autoloads from language/china-util.el | 4271 | ;;; Generated autoloads from language/china-util.el |
| 4248 | 4272 | ||
| 4249 | (autoload (quote decode-hz-region) "china-util" "\ | 4273 | (autoload 'decode-hz-region "china-util" "\ |
| 4250 | Decode HZ/ZW encoded text in the current region. | 4274 | Decode HZ/ZW encoded text in the current region. |
| 4251 | Return the length of resulting text. | 4275 | Return the length of resulting text. |
| 4252 | 4276 | ||
| 4253 | \(fn BEG END)" t nil) | 4277 | \(fn BEG END)" t nil) |
| 4254 | 4278 | ||
| 4255 | (autoload (quote decode-hz-buffer) "china-util" "\ | 4279 | (autoload 'decode-hz-buffer "china-util" "\ |
| 4256 | Decode HZ/ZW encoded text in the current buffer. | 4280 | Decode HZ/ZW encoded text in the current buffer. |
| 4257 | 4281 | ||
| 4258 | \(fn)" t nil) | 4282 | \(fn)" t nil) |
| 4259 | 4283 | ||
| 4260 | (autoload (quote encode-hz-region) "china-util" "\ | 4284 | (autoload 'encode-hz-region "china-util" "\ |
| 4261 | Encode the text in the current region to HZ. | 4285 | Encode the text in the current region to HZ. |
| 4262 | Return the length of resulting text. | 4286 | Return the length of resulting text. |
| 4263 | 4287 | ||
| 4264 | \(fn BEG END)" t nil) | 4288 | \(fn BEG END)" t nil) |
| 4265 | 4289 | ||
| 4266 | (autoload (quote encode-hz-buffer) "china-util" "\ | 4290 | (autoload 'encode-hz-buffer "china-util" "\ |
| 4267 | Encode the text in the current buffer to HZ. | 4291 | Encode the text in the current buffer to HZ. |
| 4268 | 4292 | ||
| 4269 | \(fn)" t nil) | 4293 | \(fn)" t nil) |
| @@ -4271,10 +4295,10 @@ Encode the text in the current buffer to HZ. | |||
| 4271 | ;;;*** | 4295 | ;;;*** |
| 4272 | 4296 | ||
| 4273 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) | 4297 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) |
| 4274 | ;;;;;; "chistory" "chistory.el" (18104 24730)) | 4298 | ;;;;;; "chistory" "chistory.el" (18088 55080)) |
| 4275 | ;;; Generated autoloads from chistory.el | 4299 | ;;; Generated autoloads from chistory.el |
| 4276 | 4300 | ||
| 4277 | (autoload (quote repeat-matching-complex-command) "chistory" "\ | 4301 | (autoload 'repeat-matching-complex-command "chistory" "\ |
| 4278 | Edit and re-evaluate complex command with name matching PATTERN. | 4302 | Edit and re-evaluate complex command with name matching PATTERN. |
| 4279 | Matching occurrences are displayed, most recent first, until you select | 4303 | Matching occurrences are displayed, most recent first, until you select |
| 4280 | a form for evaluation. If PATTERN is empty (or nil), every form in the | 4304 | a form for evaluation. If PATTERN is empty (or nil), every form in the |
| @@ -4283,7 +4307,7 @@ editing and the result is evaluated. | |||
| 4283 | 4307 | ||
| 4284 | \(fn &optional PATTERN)" t nil) | 4308 | \(fn &optional PATTERN)" t nil) |
| 4285 | 4309 | ||
| 4286 | (autoload (quote list-command-history) "chistory" "\ | 4310 | (autoload 'list-command-history "chistory" "\ |
| 4287 | List history of commands typed to minibuffer. | 4311 | List history of commands typed to minibuffer. |
| 4288 | The number of commands listed is controlled by `list-command-history-max'. | 4312 | The number of commands listed is controlled by `list-command-history-max'. |
| 4289 | Calls value of `list-command-history-filter' (if non-nil) on each history | 4313 | Calls value of `list-command-history-filter' (if non-nil) on each history |
| @@ -4293,7 +4317,7 @@ The buffer is left in Command History mode. | |||
| 4293 | 4317 | ||
| 4294 | \(fn)" t nil) | 4318 | \(fn)" t nil) |
| 4295 | 4319 | ||
| 4296 | (autoload (quote command-history) "chistory" "\ | 4320 | (autoload 'command-history "chistory" "\ |
| 4297 | Examine commands from `command-history' in a buffer. | 4321 | Examine commands from `command-history' in a buffer. |
| 4298 | The number of commands listed is controlled by `list-command-history-max'. | 4322 | The number of commands listed is controlled by `list-command-history-max'. |
| 4299 | The command history is filtered by `list-command-history-filter' if non-nil. | 4323 | The command history is filtered by `list-command-history-filter' if non-nil. |
| @@ -4310,7 +4334,7 @@ and runs the normal hook `command-history-hook'. | |||
| 4310 | 4334 | ||
| 4311 | ;;;*** | 4335 | ;;;*** |
| 4312 | 4336 | ||
| 4313 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (18104 24747)) | 4337 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (18213 13926)) |
| 4314 | ;;; Generated autoloads from emacs-lisp/cl.el | 4338 | ;;; Generated autoloads from emacs-lisp/cl.el |
| 4315 | 4339 | ||
| 4316 | (defvar custom-print-functions nil "\ | 4340 | (defvar custom-print-functions nil "\ |
| @@ -4326,10 +4350,10 @@ a future Emacs interpreter will be able to use it.") | |||
| 4326 | ;;;*** | 4350 | ;;;*** |
| 4327 | 4351 | ||
| 4328 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" | 4352 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" |
| 4329 | ;;;;;; (18104 24746)) | 4353 | ;;;;;; (18088 55095)) |
| 4330 | ;;; Generated autoloads from emacs-lisp/cl-indent.el | 4354 | ;;; Generated autoloads from emacs-lisp/cl-indent.el |
| 4331 | 4355 | ||
| 4332 | (autoload (quote common-lisp-indent-function) "cl-indent" "\ | 4356 | (autoload 'common-lisp-indent-function "cl-indent" "\ |
| 4333 | Not documented | 4357 | Not documented |
| 4334 | 4358 | ||
| 4335 | \(fn INDENT-POINT STATE)" nil nil) | 4359 | \(fn INDENT-POINT STATE)" nil nil) |
| @@ -4337,10 +4361,10 @@ Not documented | |||
| 4337 | ;;;*** | 4361 | ;;;*** |
| 4338 | 4362 | ||
| 4339 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" | 4363 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" |
| 4340 | ;;;;;; (18104 24764)) | 4364 | ;;;;;; (18088 55115)) |
| 4341 | ;;; Generated autoloads from progmodes/cmacexp.el | 4365 | ;;; Generated autoloads from progmodes/cmacexp.el |
| 4342 | 4366 | ||
| 4343 | (autoload (quote c-macro-expand) "cmacexp" "\ | 4367 | (autoload 'c-macro-expand "cmacexp" "\ |
| 4344 | Expand C macros in the region, using the C preprocessor. | 4368 | Expand C macros in the region, using the C preprocessor. |
| 4345 | Normally display output in temp buffer, but | 4369 | Normally display output in temp buffer, but |
| 4346 | prefix arg means replace the region with it. | 4370 | prefix arg means replace the region with it. |
| @@ -4357,11 +4381,11 @@ For use inside Lisp programs, see also `c-macro-expansion'. | |||
| 4357 | 4381 | ||
| 4358 | ;;;*** | 4382 | ;;;*** |
| 4359 | 4383 | ||
| 4360 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (18104 | 4384 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (18088 |
| 4361 | ;;;;;; 24730)) | 4385 | ;;;;;; 55080)) |
| 4362 | ;;; Generated autoloads from cmuscheme.el | 4386 | ;;; Generated autoloads from cmuscheme.el |
| 4363 | 4387 | ||
| 4364 | (autoload (quote run-scheme) "cmuscheme" "\ | 4388 | (autoload 'run-scheme "cmuscheme" "\ |
| 4365 | Run an inferior Scheme process, input and output via buffer `*scheme*'. | 4389 | Run an inferior Scheme process, input and output via buffer `*scheme*'. |
| 4366 | If there is a process already running in `*scheme*', switch to that buffer. | 4390 | If there is a process already running in `*scheme*', switch to that buffer. |
| 4367 | With argument, allows you to edit the command line (default is value | 4391 | With argument, allows you to edit the command line (default is value |
| @@ -4380,10 +4404,10 @@ is run). | |||
| 4380 | ;;;*** | 4404 | ;;;*** |
| 4381 | 4405 | ||
| 4382 | ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" | 4406 | ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" |
| 4383 | ;;;;;; (18104 24756)) | 4407 | ;;;;;; (18088 55107)) |
| 4384 | ;;; Generated autoloads from international/code-pages.el | 4408 | ;;; Generated autoloads from international/code-pages.el |
| 4385 | 4409 | ||
| 4386 | (autoload (quote cp-make-coding-system) "code-pages" "\ | 4410 | (autoload 'cp-make-coding-system "code-pages" "\ |
| 4387 | Make coding system NAME for and 8-bit, extended-ASCII character set. | 4411 | Make coding system NAME for and 8-bit, extended-ASCII character set. |
| 4388 | V is a 128-long vector of characters to translate the upper half of | 4412 | V is a 128-long vector of characters to translate the upper half of |
| 4389 | the character set. DOC-STRING and MNEMONIC are used as the | 4413 | the character set. DOC-STRING and MNEMONIC are used as the |
| @@ -4441,10 +4465,10 @@ Return an updated `non-iso-charset-alist'. | |||
| 4441 | 4465 | ||
| 4442 | ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage | 4466 | ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage |
| 4443 | ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) | 4467 | ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) |
| 4444 | ;;;;;; "codepage" "international/codepage.el" (18104 24756)) | 4468 | ;;;;;; "codepage" "international/codepage.el" (18088 55107)) |
| 4445 | ;;; Generated autoloads from international/codepage.el | 4469 | ;;; Generated autoloads from international/codepage.el |
| 4446 | 4470 | ||
| 4447 | (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ | 4471 | (autoload 'cp-make-coding-systems-for-codepage "codepage" "\ |
| 4448 | Create a coding system to convert IBM CODEPAGE into charset ISO-NAME | 4472 | Create a coding system to convert IBM CODEPAGE into charset ISO-NAME |
| 4449 | whose first character is at offset OFFSET from the beginning of 8-bit | 4473 | whose first character is at offset OFFSET from the beginning of 8-bit |
| 4450 | ASCII table. | 4474 | ASCII table. |
| @@ -4456,25 +4480,25 @@ decoder and encoder created by this function. | |||
| 4456 | 4480 | ||
| 4457 | \(fn CODEPAGE ISO-NAME OFFSET)" nil nil) | 4481 | \(fn CODEPAGE ISO-NAME OFFSET)" nil nil) |
| 4458 | 4482 | ||
| 4459 | (autoload (quote cp-charset-for-codepage) "codepage" "\ | 4483 | (autoload 'cp-charset-for-codepage "codepage" "\ |
| 4460 | Return the charset for which there is a translation table to DOS CODEPAGE. | 4484 | Return the charset for which there is a translation table to DOS CODEPAGE. |
| 4461 | CODEPAGE must be the name of a DOS codepage, a string. | 4485 | CODEPAGE must be the name of a DOS codepage, a string. |
| 4462 | 4486 | ||
| 4463 | \(fn CODEPAGE)" nil nil) | 4487 | \(fn CODEPAGE)" nil nil) |
| 4464 | 4488 | ||
| 4465 | (autoload (quote cp-language-for-codepage) "codepage" "\ | 4489 | (autoload 'cp-language-for-codepage "codepage" "\ |
| 4466 | Return the name of the MULE language environment for CODEPAGE. | 4490 | Return the name of the MULE language environment for CODEPAGE. |
| 4467 | CODEPAGE must be the name of a DOS codepage, a string. | 4491 | CODEPAGE must be the name of a DOS codepage, a string. |
| 4468 | 4492 | ||
| 4469 | \(fn CODEPAGE)" nil nil) | 4493 | \(fn CODEPAGE)" nil nil) |
| 4470 | 4494 | ||
| 4471 | (autoload (quote cp-offset-for-codepage) "codepage" "\ | 4495 | (autoload 'cp-offset-for-codepage "codepage" "\ |
| 4472 | Return the offset to be used in setting up coding systems for CODEPAGE. | 4496 | Return the offset to be used in setting up coding systems for CODEPAGE. |
| 4473 | CODEPAGE must be the name of a DOS codepage, a string. | 4497 | CODEPAGE must be the name of a DOS codepage, a string. |
| 4474 | 4498 | ||
| 4475 | \(fn CODEPAGE)" nil nil) | 4499 | \(fn CODEPAGE)" nil nil) |
| 4476 | 4500 | ||
| 4477 | (autoload (quote cp-supported-codepages) "codepage" "\ | 4501 | (autoload 'cp-supported-codepages "codepage" "\ |
| 4478 | Return an alist of supported codepages. | 4502 | Return an alist of supported codepages. |
| 4479 | 4503 | ||
| 4480 | Each association in the alist has the form (NNN . CHARSET), where NNN is the | 4504 | Each association in the alist has the form (NNN . CHARSET), where NNN is the |
| @@ -4486,7 +4510,7 @@ is a vector, and has a charset property. | |||
| 4486 | 4510 | ||
| 4487 | \(fn)" nil nil) | 4511 | \(fn)" nil nil) |
| 4488 | 4512 | ||
| 4489 | (autoload (quote codepage-setup) "codepage" "\ | 4513 | (autoload 'codepage-setup "codepage" "\ |
| 4490 | Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE. | 4514 | Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE. |
| 4491 | 4515 | ||
| 4492 | These coding systems are meant for encoding and decoding 8-bit non-ASCII | 4516 | These coding systems are meant for encoding and decoding 8-bit non-ASCII |
| @@ -4500,10 +4524,10 @@ read/written by MS-DOS software, or for display on the MS-DOS terminal. | |||
| 4500 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list | 4524 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list |
| 4501 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command | 4525 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command |
| 4502 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" | 4526 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" |
| 4503 | ;;;;;; (18104 24730)) | 4527 | ;;;;;; (18208 48750)) |
| 4504 | ;;; Generated autoloads from comint.el | 4528 | ;;; Generated autoloads from comint.el |
| 4505 | 4529 | ||
| 4506 | (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ | 4530 | (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ |
| 4507 | Functions to call after output is inserted into the buffer. | 4531 | Functions to call after output is inserted into the buffer. |
| 4508 | One possible function is `comint-postoutput-scroll-to-bottom'. | 4532 | One possible function is `comint-postoutput-scroll-to-bottom'. |
| 4509 | These functions get one argument, a string containing the text as originally | 4533 | These functions get one argument, a string containing the text as originally |
| @@ -4516,9 +4540,9 @@ See also `comint-preoutput-filter-functions'. | |||
| 4516 | You can use `add-hook' to add functions to this list | 4540 | You can use `add-hook' to add functions to this list |
| 4517 | either globally or locally.") | 4541 | either globally or locally.") |
| 4518 | 4542 | ||
| 4519 | (define-obsolete-variable-alias (quote comint-use-prompt-regexp-instead-of-fields) (quote comint-use-prompt-regexp) "22.1") | 4543 | (define-obsolete-variable-alias 'comint-use-prompt-regexp-instead-of-fields 'comint-use-prompt-regexp "22.1") |
| 4520 | 4544 | ||
| 4521 | (autoload (quote make-comint-in-buffer) "comint" "\ | 4545 | (autoload 'make-comint-in-buffer "comint" "\ |
| 4522 | Make a Comint process NAME in BUFFER, running PROGRAM. | 4546 | Make a Comint process NAME in BUFFER, running PROGRAM. |
| 4523 | If BUFFER is nil, it defaults to NAME surrounded by `*'s. | 4547 | If BUFFER is nil, it defaults to NAME surrounded by `*'s. |
| 4524 | PROGRAM should be either a string denoting an executable program to create | 4548 | PROGRAM should be either a string denoting an executable program to create |
| @@ -4531,7 +4555,7 @@ If PROGRAM is a string, any more args are arguments to PROGRAM. | |||
| 4531 | 4555 | ||
| 4532 | \(fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) | 4556 | \(fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) |
| 4533 | 4557 | ||
| 4534 | (autoload (quote make-comint) "comint" "\ | 4558 | (autoload 'make-comint "comint" "\ |
| 4535 | Make a Comint process NAME in a buffer, running PROGRAM. | 4559 | Make a Comint process NAME in a buffer, running PROGRAM. |
| 4536 | The name of the buffer is made by surrounding NAME with `*'s. | 4560 | The name of the buffer is made by surrounding NAME with `*'s. |
| 4537 | PROGRAM should be either a string denoting an executable program to create | 4561 | PROGRAM should be either a string denoting an executable program to create |
| @@ -4544,7 +4568,7 @@ If PROGRAM is a string, any more args are arguments to PROGRAM. | |||
| 4544 | 4568 | ||
| 4545 | \(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) | 4569 | \(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) |
| 4546 | 4570 | ||
| 4547 | (autoload (quote comint-run) "comint" "\ | 4571 | (autoload 'comint-run "comint" "\ |
| 4548 | Run PROGRAM in a Comint buffer and switch to it. | 4572 | Run PROGRAM in a Comint buffer and switch to it. |
| 4549 | The buffer name is made by surrounding the file name of PROGRAM with `*'s. | 4573 | The buffer name is made by surrounding the file name of PROGRAM with `*'s. |
| 4550 | The file name is used to make a symbol name, such as `comint-sh-hook', and any | 4574 | The file name is used to make a symbol name, such as `comint-sh-hook', and any |
| @@ -4558,7 +4582,7 @@ Prefix prepended to absolute file names taken from process input. | |||
| 4558 | This is used by Comint's and shell's completion functions, and by shell's | 4582 | This is used by Comint's and shell's completion functions, and by shell's |
| 4559 | directory tracking functions.") | 4583 | directory tracking functions.") |
| 4560 | 4584 | ||
| 4561 | (autoload (quote comint-redirect-send-command) "comint" "\ | 4585 | (autoload 'comint-redirect-send-command "comint" "\ |
| 4562 | Send COMMAND to process in current buffer, with output to OUTPUT-BUFFER. | 4586 | Send COMMAND to process in current buffer, with output to OUTPUT-BUFFER. |
| 4563 | With prefix arg ECHO, echo output in process buffer. | 4587 | With prefix arg ECHO, echo output in process buffer. |
| 4564 | 4588 | ||
| @@ -4566,7 +4590,7 @@ If NO-DISPLAY is non-nil, do not show the output buffer. | |||
| 4566 | 4590 | ||
| 4567 | \(fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)" t nil) | 4591 | \(fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)" t nil) |
| 4568 | 4592 | ||
| 4569 | (autoload (quote comint-redirect-send-command-to-process) "comint" "\ | 4593 | (autoload 'comint-redirect-send-command-to-process "comint" "\ |
| 4570 | Send COMMAND to PROCESS, with output to OUTPUT-BUFFER. | 4594 | Send COMMAND to PROCESS, with output to OUTPUT-BUFFER. |
| 4571 | With prefix arg, echo output in process buffer. | 4595 | With prefix arg, echo output in process buffer. |
| 4572 | 4596 | ||
| @@ -4574,14 +4598,14 @@ If NO-DISPLAY is non-nil, do not show the output buffer. | |||
| 4574 | 4598 | ||
| 4575 | \(fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)" t nil) | 4599 | \(fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)" t nil) |
| 4576 | 4600 | ||
| 4577 | (autoload (quote comint-redirect-results-list) "comint" "\ | 4601 | (autoload 'comint-redirect-results-list "comint" "\ |
| 4578 | Send COMMAND to current process. | 4602 | Send COMMAND to current process. |
| 4579 | Return a list of expressions in the output which match REGEXP. | 4603 | Return a list of expressions in the output which match REGEXP. |
| 4580 | REGEXP-GROUP is the regular expression group in REGEXP to use. | 4604 | REGEXP-GROUP is the regular expression group in REGEXP to use. |
| 4581 | 4605 | ||
| 4582 | \(fn COMMAND REGEXP REGEXP-GROUP)" nil nil) | 4606 | \(fn COMMAND REGEXP REGEXP-GROUP)" nil nil) |
| 4583 | 4607 | ||
| 4584 | (autoload (quote comint-redirect-results-list-from-process) "comint" "\ | 4608 | (autoload 'comint-redirect-results-list-from-process "comint" "\ |
| 4585 | Send COMMAND to PROCESS. | 4609 | Send COMMAND to PROCESS. |
| 4586 | Return a list of expressions in the output which match REGEXP. | 4610 | Return a list of expressions in the output which match REGEXP. |
| 4587 | REGEXP-GROUP is the regular expression group in REGEXP to use. | 4611 | REGEXP-GROUP is the regular expression group in REGEXP to use. |
| @@ -4590,11 +4614,11 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. | |||
| 4590 | 4614 | ||
| 4591 | ;;;*** | 4615 | ;;;*** |
| 4592 | 4616 | ||
| 4593 | ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (18104 | 4617 | ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (18088 |
| 4594 | ;;;;;; 24730)) | 4618 | ;;;;;; 55080)) |
| 4595 | ;;; Generated autoloads from compare-w.el | 4619 | ;;; Generated autoloads from compare-w.el |
| 4596 | 4620 | ||
| 4597 | (autoload (quote compare-windows) "compare-w" "\ | 4621 | (autoload 'compare-windows "compare-w" "\ |
| 4598 | Compare text in current window with text in next window. | 4622 | Compare text in current window with text in next window. |
| 4599 | Compares the text starting at point in each window, | 4623 | Compares the text starting at point in each window, |
| 4600 | moving over text in each one as far as they match. | 4624 | moving over text in each one as far as they match. |
| @@ -4628,18 +4652,18 @@ on third call it again advances points to the next difference and so on. | |||
| 4628 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start | 4652 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start |
| 4629 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path | 4653 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path |
| 4630 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) | 4654 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) |
| 4631 | ;;;;;; "compile" "progmodes/compile.el" (18104 24764)) | 4655 | ;;;;;; "compile" "progmodes/compile.el" (18202 4003)) |
| 4632 | ;;; Generated autoloads from progmodes/compile.el | 4656 | ;;; Generated autoloads from progmodes/compile.el |
| 4633 | 4657 | ||
| 4634 | (defvar compilation-mode-hook nil "\ | 4658 | (defvar compilation-mode-hook nil "\ |
| 4635 | List of hook functions run by `compilation-mode' (see `run-mode-hooks').") | 4659 | List of hook functions run by `compilation-mode' (see `run-mode-hooks').") |
| 4636 | 4660 | ||
| 4637 | (custom-autoload (quote compilation-mode-hook) "compile" t) | 4661 | (custom-autoload 'compilation-mode-hook "compile" t) |
| 4638 | 4662 | ||
| 4639 | (defvar compilation-window-height nil "\ | 4663 | (defvar compilation-window-height nil "\ |
| 4640 | Number of lines in a compilation window. If nil, use Emacs default.") | 4664 | Number of lines in a compilation window. If nil, use Emacs default.") |
| 4641 | 4665 | ||
| 4642 | (custom-autoload (quote compilation-window-height) "compile" t) | 4666 | (custom-autoload 'compilation-window-height "compile" t) |
| 4643 | 4667 | ||
| 4644 | (defvar compilation-process-setup-function nil "\ | 4668 | (defvar compilation-process-setup-function nil "\ |
| 4645 | *Function to call to customize the compilation process. | 4669 | *Function to call to customize the compilation process. |
| @@ -4670,14 +4694,14 @@ and a string describing how the process finished.") | |||
| 4670 | Non-nil means \\[compile] asks which buffers to save before compiling. | 4694 | Non-nil means \\[compile] asks which buffers to save before compiling. |
| 4671 | Otherwise, it saves all modified buffers without asking.") | 4695 | Otherwise, it saves all modified buffers without asking.") |
| 4672 | 4696 | ||
| 4673 | (custom-autoload (quote compilation-ask-about-save) "compile" t) | 4697 | (custom-autoload 'compilation-ask-about-save "compile" t) |
| 4674 | 4698 | ||
| 4675 | (defvar compilation-search-path (quote (nil)) "\ | 4699 | (defvar compilation-search-path '(nil) "\ |
| 4676 | List of directories to search for source files named in error messages. | 4700 | List of directories to search for source files named in error messages. |
| 4677 | Elements should be directory names, not file names of directories. | 4701 | Elements should be directory names, not file names of directories. |
| 4678 | The value nil as an element means to try the default directory.") | 4702 | The value nil as an element means to try the default directory.") |
| 4679 | 4703 | ||
| 4680 | (custom-autoload (quote compilation-search-path) "compile" t) | 4704 | (custom-autoload 'compilation-search-path "compile" t) |
| 4681 | 4705 | ||
| 4682 | (defvar compile-command "make -k " "\ | 4706 | (defvar compile-command "make -k " "\ |
| 4683 | Last shell command used to do a compilation; default for next compilation. | 4707 | Last shell command used to do a compilation; default for next compilation. |
| @@ -4693,7 +4717,7 @@ You might also use mode hooks to specify it in certain modes, like this: | |||
| 4693 | (concat \"make -k \" | 4717 | (concat \"make -k \" |
| 4694 | (file-name-sans-extension buffer-file-name))))))") | 4718 | (file-name-sans-extension buffer-file-name))))))") |
| 4695 | 4719 | ||
| 4696 | (custom-autoload (quote compile-command) "compile" t) | 4720 | (custom-autoload 'compile-command "compile" t) |
| 4697 | (put 'compile-command 'safe-local-variable 'stringp) | 4721 | (put 'compile-command 'safe-local-variable 'stringp) |
| 4698 | 4722 | ||
| 4699 | (defvar compilation-disable-input nil "\ | 4723 | (defvar compilation-disable-input nil "\ |
| @@ -4701,9 +4725,9 @@ If non-nil, send end-of-file as compilation process input. | |||
| 4701 | This only affects platforms that support asynchronous processes (see | 4725 | This only affects platforms that support asynchronous processes (see |
| 4702 | `start-process'); synchronous compilation processes never accept input.") | 4726 | `start-process'); synchronous compilation processes never accept input.") |
| 4703 | 4727 | ||
| 4704 | (custom-autoload (quote compilation-disable-input) "compile" t) | 4728 | (custom-autoload 'compilation-disable-input "compile" t) |
| 4705 | 4729 | ||
| 4706 | (autoload (quote compile) "compile" "\ | 4730 | (autoload 'compile "compile" "\ |
| 4707 | Compile the program including the current buffer. Default: run `make'. | 4731 | Compile the program including the current buffer. Default: run `make'. |
| 4708 | Runs COMMAND, a shell command, in a separate process asynchronously | 4732 | Runs COMMAND, a shell command, in a separate process asynchronously |
| 4709 | with output going to the buffer `*compilation*'. | 4733 | with output going to the buffer `*compilation*'. |
| @@ -4733,7 +4757,7 @@ to a function that generates a unique name. | |||
| 4733 | 4757 | ||
| 4734 | \(fn COMMAND &optional COMINT)" t nil) | 4758 | \(fn COMMAND &optional COMINT)" t nil) |
| 4735 | 4759 | ||
| 4736 | (autoload (quote compilation-start) "compile" "\ | 4760 | (autoload 'compilation-start "compile" "\ |
| 4737 | Run compilation command COMMAND (low level interface). | 4761 | Run compilation command COMMAND (low level interface). |
| 4738 | If COMMAND starts with a cd command, that becomes the `default-directory'. | 4762 | If COMMAND starts with a cd command, that becomes the `default-directory'. |
| 4739 | The rest of the arguments are optional; for them, nil means use the default. | 4763 | The rest of the arguments are optional; for them, nil means use the default. |
| @@ -4754,7 +4778,7 @@ Returns the compilation buffer created. | |||
| 4754 | 4778 | ||
| 4755 | \(fn COMMAND &optional MODE NAME-FUNCTION HIGHLIGHT-REGEXP)" nil nil) | 4779 | \(fn COMMAND &optional MODE NAME-FUNCTION HIGHLIGHT-REGEXP)" nil nil) |
| 4756 | 4780 | ||
| 4757 | (autoload (quote compilation-mode) "compile" "\ | 4781 | (autoload 'compilation-mode "compile" "\ |
| 4758 | Major mode for compilation log buffers. | 4782 | Major mode for compilation log buffers. |
| 4759 | \\<compilation-mode-map>To visit the source for a line-numbered error, | 4783 | \\<compilation-mode-map>To visit the source for a line-numbered error, |
| 4760 | move point to the error message line and type \\[compile-goto-error]. | 4784 | move point to the error message line and type \\[compile-goto-error]. |
| @@ -4766,7 +4790,7 @@ Runs `compilation-mode-hook' with `run-mode-hooks' (which see). | |||
| 4766 | 4790 | ||
| 4767 | \(fn &optional NAME-OF-MODE)" t nil) | 4791 | \(fn &optional NAME-OF-MODE)" t nil) |
| 4768 | 4792 | ||
| 4769 | (autoload (quote compilation-shell-minor-mode) "compile" "\ | 4793 | (autoload 'compilation-shell-minor-mode "compile" "\ |
| 4770 | Toggle compilation shell minor mode. | 4794 | Toggle compilation shell minor mode. |
| 4771 | With arg, turn compilation mode on if and only if arg is positive. | 4795 | With arg, turn compilation mode on if and only if arg is positive. |
| 4772 | In this minor mode, all the error-parsing commands of the | 4796 | In this minor mode, all the error-parsing commands of the |
| @@ -4776,7 +4800,7 @@ Turning the mode on runs the normal hook `compilation-shell-minor-mode-hook'. | |||
| 4776 | 4800 | ||
| 4777 | \(fn &optional ARG)" t nil) | 4801 | \(fn &optional ARG)" t nil) |
| 4778 | 4802 | ||
| 4779 | (autoload (quote compilation-minor-mode) "compile" "\ | 4803 | (autoload 'compilation-minor-mode "compile" "\ |
| 4780 | Toggle compilation minor mode. | 4804 | Toggle compilation minor mode. |
| 4781 | With arg, turn compilation mode on if and only if arg is positive. | 4805 | With arg, turn compilation mode on if and only if arg is positive. |
| 4782 | In this minor mode, all the error-parsing commands of the | 4806 | In this minor mode, all the error-parsing commands of the |
| @@ -4785,18 +4809,18 @@ Turning the mode on runs the normal hook `compilation-minor-mode-hook'. | |||
| 4785 | 4809 | ||
| 4786 | \(fn &optional ARG)" t nil) | 4810 | \(fn &optional ARG)" t nil) |
| 4787 | 4811 | ||
| 4788 | (autoload (quote compilation-next-error-function) "compile" "\ | 4812 | (autoload 'compilation-next-error-function "compile" "\ |
| 4789 | Advance to the next error message and visit the file where the error was. | 4813 | Advance to the next error message and visit the file where the error was. |
| 4790 | This is the value of `next-error-function' in Compilation buffers. | 4814 | This is the value of `next-error-function' in Compilation buffers. |
| 4791 | 4815 | ||
| 4792 | \(fn N &optional RESET)" t nil) | 4816 | \(fn N &optional RESET)" t nil) |
| 4793 | 4817 | ||
| 4794 | (add-to-list (quote auto-mode-alist) (quote ("\\.gcov\\'" . compilation-mode))) | 4818 | (add-to-list 'auto-mode-alist '("\\.gcov\\'" . compilation-mode)) |
| 4795 | 4819 | ||
| 4796 | ;;;*** | 4820 | ;;;*** |
| 4797 | 4821 | ||
| 4798 | ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" | 4822 | ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" |
| 4799 | ;;;;;; (18104 24730)) | 4823 | ;;;;;; (18204 59927)) |
| 4800 | ;;; Generated autoloads from complete.el | 4824 | ;;; Generated autoloads from complete.el |
| 4801 | 4825 | ||
| 4802 | (defvar partial-completion-mode nil "\ | 4826 | (defvar partial-completion-mode nil "\ |
| @@ -4806,9 +4830,9 @@ Setting this variable directly does not take effect; | |||
| 4806 | either customize it (see the info node `Easy Customization') | 4830 | either customize it (see the info node `Easy Customization') |
| 4807 | or call the function `partial-completion-mode'.") | 4831 | or call the function `partial-completion-mode'.") |
| 4808 | 4832 | ||
| 4809 | (custom-autoload (quote partial-completion-mode) "complete" nil) | 4833 | (custom-autoload 'partial-completion-mode "complete" nil) |
| 4810 | 4834 | ||
| 4811 | (autoload (quote partial-completion-mode) "complete" "\ | 4835 | (autoload 'partial-completion-mode "complete" "\ |
| 4812 | Toggle Partial Completion mode. | 4836 | Toggle Partial Completion mode. |
| 4813 | With prefix ARG, turn Partial Completion mode on if ARG is positive. | 4837 | With prefix ARG, turn Partial Completion mode on if ARG is positive. |
| 4814 | 4838 | ||
| @@ -4838,7 +4862,7 @@ second TAB brings up the `*Completions*' buffer. | |||
| 4838 | ;;;*** | 4862 | ;;;*** |
| 4839 | 4863 | ||
| 4840 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" | 4864 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" |
| 4841 | ;;;;;; (18104 24731)) | 4865 | ;;;;;; (18169 11930)) |
| 4842 | ;;; Generated autoloads from completion.el | 4866 | ;;; Generated autoloads from completion.el |
| 4843 | 4867 | ||
| 4844 | (defvar dynamic-completion-mode nil "\ | 4868 | (defvar dynamic-completion-mode nil "\ |
| @@ -4848,9 +4872,9 @@ Setting this variable directly does not take effect; | |||
| 4848 | either customize it (see the info node `Easy Customization') | 4872 | either customize it (see the info node `Easy Customization') |
| 4849 | or call the function `dynamic-completion-mode'.") | 4873 | or call the function `dynamic-completion-mode'.") |
| 4850 | 4874 | ||
| 4851 | (custom-autoload (quote dynamic-completion-mode) "completion" nil) | 4875 | (custom-autoload 'dynamic-completion-mode "completion" nil) |
| 4852 | 4876 | ||
| 4853 | (autoload (quote dynamic-completion-mode) "completion" "\ | 4877 | (autoload 'dynamic-completion-mode "completion" "\ |
| 4854 | Enable dynamic word-completion. | 4878 | Enable dynamic word-completion. |
| 4855 | 4879 | ||
| 4856 | \(fn &optional ARG)" t nil) | 4880 | \(fn &optional ARG)" t nil) |
| @@ -4860,10 +4884,10 @@ Enable dynamic word-completion. | |||
| 4860 | ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after | 4884 | ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after |
| 4861 | ;;;;;; find-composition compose-chars decompose-string compose-string | 4885 | ;;;;;; find-composition compose-chars decompose-string compose-string |
| 4862 | ;;;;;; decompose-region compose-region encode-composition-rule) | 4886 | ;;;;;; decompose-region compose-region encode-composition-rule) |
| 4863 | ;;;;;; "composite" "composite.el" (18104 24731)) | 4887 | ;;;;;; "composite" "composite.el" (18088 55081)) |
| 4864 | ;;; Generated autoloads from composite.el | 4888 | ;;; Generated autoloads from composite.el |
| 4865 | 4889 | ||
| 4866 | (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))) "\ | 4890 | (defconst reference-point-alist '((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)) "\ |
| 4867 | Alist of symbols vs integer codes of glyph reference points. | 4891 | Alist of symbols vs integer codes of glyph reference points. |
| 4868 | A glyph reference point symbol is to be used to specify a composition | 4892 | A glyph reference point symbol is to be used to specify a composition |
| 4869 | rule in COMPONENTS argument to such functions as `compose-region' and | 4893 | rule in COMPONENTS argument to such functions as `compose-region' and |
| @@ -4902,14 +4926,14 @@ follows (the point `*' corresponds to both reference points): | |||
| 4902 | +----+-----+ <--- new descent | 4926 | +----+-----+ <--- new descent |
| 4903 | ") | 4927 | ") |
| 4904 | 4928 | ||
| 4905 | (autoload (quote encode-composition-rule) "composite" "\ | 4929 | (autoload 'encode-composition-rule "composite" "\ |
| 4906 | Encode composition rule RULE into an integer value. | 4930 | Encode composition rule RULE into an integer value. |
| 4907 | RULE is a cons of global and new reference point symbols | 4931 | RULE is a cons of global and new reference point symbols |
| 4908 | \(see `reference-point-alist'). | 4932 | \(see `reference-point-alist'). |
| 4909 | 4933 | ||
| 4910 | \(fn RULE)" nil nil) | 4934 | \(fn RULE)" nil nil) |
| 4911 | 4935 | ||
| 4912 | (autoload (quote compose-region) "composite" "\ | 4936 | (autoload 'compose-region "composite" "\ |
| 4913 | Compose characters in the current region. | 4937 | Compose characters in the current region. |
| 4914 | 4938 | ||
| 4915 | Characters are composed relatively, i.e. composed by overstricking or | 4939 | Characters are composed relatively, i.e. composed by overstricking or |
| @@ -4944,7 +4968,7 @@ text in the composition. | |||
| 4944 | 4968 | ||
| 4945 | \(fn START END &optional COMPONENTS MODIFICATION-FUNC)" t nil) | 4969 | \(fn START END &optional COMPONENTS MODIFICATION-FUNC)" t nil) |
| 4946 | 4970 | ||
| 4947 | (autoload (quote decompose-region) "composite" "\ | 4971 | (autoload 'decompose-region "composite" "\ |
| 4948 | Decompose text in the current region. | 4972 | Decompose text in the current region. |
| 4949 | 4973 | ||
| 4950 | When called from a program, expects two arguments, | 4974 | When called from a program, expects two arguments, |
| @@ -4952,7 +4976,7 @@ positions (integers or markers) specifying the region. | |||
| 4952 | 4976 | ||
| 4953 | \(fn START END)" t nil) | 4977 | \(fn START END)" t nil) |
| 4954 | 4978 | ||
| 4955 | (autoload (quote compose-string) "composite" "\ | 4979 | (autoload 'compose-string "composite" "\ |
| 4956 | Compose characters in string STRING. | 4980 | Compose characters in string STRING. |
| 4957 | 4981 | ||
| 4958 | The return value is STRING where `composition' property is put on all | 4982 | The return value is STRING where `composition' property is put on all |
| @@ -4972,12 +4996,12 @@ text in the composition. | |||
| 4972 | 4996 | ||
| 4973 | \(fn STRING &optional START END COMPONENTS MODIFICATION-FUNC)" nil nil) | 4997 | \(fn STRING &optional START END COMPONENTS MODIFICATION-FUNC)" nil nil) |
| 4974 | 4998 | ||
| 4975 | (autoload (quote decompose-string) "composite" "\ | 4999 | (autoload 'decompose-string "composite" "\ |
| 4976 | Return STRING where `composition' property is removed. | 5000 | Return STRING where `composition' property is removed. |
| 4977 | 5001 | ||
| 4978 | \(fn STRING)" nil nil) | 5002 | \(fn STRING)" nil nil) |
| 4979 | 5003 | ||
| 4980 | (autoload (quote compose-chars) "composite" "\ | 5004 | (autoload 'compose-chars "composite" "\ |
| 4981 | Return a string from arguments in which all characters are composed. | 5005 | Return a string from arguments in which all characters are composed. |
| 4982 | For relative composition, arguments are characters. | 5006 | For relative composition, arguments are characters. |
| 4983 | For rule-based composition, Mth (where M is odd) arguments are | 5007 | For rule-based composition, Mth (where M is odd) arguments are |
| @@ -4988,7 +5012,7 @@ A composition rule is a cons of glyph reference points of the form | |||
| 4988 | 5012 | ||
| 4989 | \(fn &rest ARGS)" nil nil) | 5013 | \(fn &rest ARGS)" nil nil) |
| 4990 | 5014 | ||
| 4991 | (autoload (quote find-composition) "composite" "\ | 5015 | (autoload 'find-composition "composite" "\ |
| 4992 | Return information about a composition at or nearest to buffer position POS. | 5016 | Return information about a composition at or nearest to buffer position POS. |
| 4993 | 5017 | ||
| 4994 | If the character at POS has `composition' property, the value is a list | 5018 | If the character at POS has `composition' property, the value is a list |
| @@ -5023,7 +5047,7 @@ WIDTH is a number of columns the composition occupies on the screen. | |||
| 5023 | 5047 | ||
| 5024 | \(fn POS &optional LIMIT STRING DETAIL-P)" nil nil) | 5048 | \(fn POS &optional LIMIT STRING DETAIL-P)" nil nil) |
| 5025 | 5049 | ||
| 5026 | (autoload (quote compose-chars-after) "composite" "\ | 5050 | (autoload 'compose-chars-after "composite" "\ |
| 5027 | Compose characters in current buffer after position POS. | 5051 | Compose characters in current buffer after position POS. |
| 5028 | 5052 | ||
| 5029 | It looks up the char-table `composition-function-table' (which see) by | 5053 | It looks up the char-table `composition-function-table' (which see) by |
| @@ -5049,7 +5073,7 @@ This function is the default value of `compose-chars-after-function'. | |||
| 5049 | 5073 | ||
| 5050 | \(fn POS &optional LIMIT OBJECT)" nil nil) | 5074 | \(fn POS &optional LIMIT OBJECT)" nil nil) |
| 5051 | 5075 | ||
| 5052 | (autoload (quote compose-last-chars) "composite" "\ | 5076 | (autoload 'compose-last-chars "composite" "\ |
| 5053 | Compose last characters. | 5077 | Compose last characters. |
| 5054 | The argument is a parameterized event of the form | 5078 | The argument is a parameterized event of the form |
| 5055 | (compose-last-chars N COMPONENTS), | 5079 | (compose-last-chars N COMPONENTS), |
| @@ -5065,7 +5089,7 @@ after a sequence of character events. | |||
| 5065 | \(fn ARGS)" t nil) | 5089 | \(fn ARGS)" t nil) |
| 5066 | (global-set-key [compose-last-chars] 'compose-last-chars) | 5090 | (global-set-key [compose-last-chars] 'compose-last-chars) |
| 5067 | 5091 | ||
| 5068 | (autoload (quote decompose-composite-char) "composite" "\ | 5092 | (autoload 'decompose-composite-char "composite" "\ |
| 5069 | Convert CHAR to string. | 5093 | Convert CHAR to string. |
| 5070 | 5094 | ||
| 5071 | If optional 2nd arg TYPE is non-nil, it is `string', `list', or | 5095 | If optional 2nd arg TYPE is non-nil, it is `string', `list', or |
| @@ -5075,17 +5099,17 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored. | |||
| 5075 | 5099 | ||
| 5076 | \(fn CHAR &optional TYPE WITH-COMPOSITION-RULE)" nil nil) | 5100 | \(fn CHAR &optional TYPE WITH-COMPOSITION-RULE)" nil nil) |
| 5077 | 5101 | ||
| 5078 | (make-obsolete (quote decompose-composite-char) (quote char-to-string) "21.1") | 5102 | (make-obsolete 'decompose-composite-char 'char-to-string "21.1") |
| 5079 | 5103 | ||
| 5080 | ;;;*** | 5104 | ;;;*** |
| 5081 | 5105 | ||
| 5082 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode | 5106 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode |
| 5083 | ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode | 5107 | ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode |
| 5084 | ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" | 5108 | ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" |
| 5085 | ;;;;;; (18104 24770)) | 5109 | ;;;;;; (18208 48754)) |
| 5086 | ;;; Generated autoloads from textmodes/conf-mode.el | 5110 | ;;; Generated autoloads from textmodes/conf-mode.el |
| 5087 | 5111 | ||
| 5088 | (autoload (quote conf-mode) "conf-mode" "\ | 5112 | (autoload 'conf-mode "conf-mode" "\ |
| 5089 | Mode for Unix and Windows Conf files and Java properties. | 5113 | Mode for Unix and Windows Conf files and Java properties. |
| 5090 | Most conf files know only three kinds of constructs: parameter | 5114 | Most conf files know only three kinds of constructs: parameter |
| 5091 | assignments optionally grouped into sections and comments. Yet | 5115 | assignments optionally grouped into sections and comments. Yet |
| @@ -5118,7 +5142,7 @@ See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode', | |||
| 5118 | 5142 | ||
| 5119 | \(fn)" t nil) | 5143 | \(fn)" t nil) |
| 5120 | 5144 | ||
| 5121 | (autoload (quote conf-unix-mode) "conf-mode" "\ | 5145 | (autoload 'conf-unix-mode "conf-mode" "\ |
| 5122 | Conf Mode starter for Unix style Conf files. | 5146 | Conf Mode starter for Unix style Conf files. |
| 5123 | Comments start with `#'. | 5147 | Comments start with `#'. |
| 5124 | For details see `conf-mode'. Example: | 5148 | For details see `conf-mode'. Example: |
| @@ -5133,7 +5157,7 @@ For details see `conf-mode'. Example: | |||
| 5133 | 5157 | ||
| 5134 | \(fn)" t nil) | 5158 | \(fn)" t nil) |
| 5135 | 5159 | ||
| 5136 | (autoload (quote conf-windows-mode) "conf-mode" "\ | 5160 | (autoload 'conf-windows-mode "conf-mode" "\ |
| 5137 | Conf Mode starter for Windows style Conf files. | 5161 | Conf Mode starter for Windows style Conf files. |
| 5138 | Comments start with `;'. | 5162 | Comments start with `;'. |
| 5139 | For details see `conf-mode'. Example: | 5163 | For details see `conf-mode'. Example: |
| @@ -5149,7 +5173,7 @@ PersistMoniker=file://Folder.htt | |||
| 5149 | 5173 | ||
| 5150 | \(fn)" t nil) | 5174 | \(fn)" t nil) |
| 5151 | 5175 | ||
| 5152 | (autoload (quote conf-javaprop-mode) "conf-mode" "\ | 5176 | (autoload 'conf-javaprop-mode "conf-mode" "\ |
| 5153 | Conf Mode starter for Java properties files. | 5177 | Conf Mode starter for Java properties files. |
| 5154 | Comments start with `#' but are also recognized with `//' or | 5178 | Comments start with `#' but are also recognized with `//' or |
| 5155 | between `/*' and `*/'. | 5179 | between `/*' and `*/'. |
| @@ -5168,7 +5192,7 @@ x.2.y.1.z.2.zz = | |||
| 5168 | 5192 | ||
| 5169 | \(fn)" t nil) | 5193 | \(fn)" t nil) |
| 5170 | 5194 | ||
| 5171 | (autoload (quote conf-space-mode) "conf-mode" "\ | 5195 | (autoload 'conf-space-mode "conf-mode" "\ |
| 5172 | Conf Mode starter for space separated conf files. | 5196 | Conf Mode starter for space separated conf files. |
| 5173 | \"Assignments\" are with ` '. Keywords before the parameters are | 5197 | \"Assignments\" are with ` '. Keywords before the parameters are |
| 5174 | recognized according to the variable `conf-space-keywords-alist'. | 5198 | recognized according to the variable `conf-space-keywords-alist'. |
| @@ -5193,13 +5217,13 @@ add /dev/mixer desktop | |||
| 5193 | 5217 | ||
| 5194 | \(fn)" t nil) | 5218 | \(fn)" t nil) |
| 5195 | 5219 | ||
| 5196 | (autoload (quote conf-space-keywords) "conf-mode" "\ | 5220 | (autoload 'conf-space-keywords "conf-mode" "\ |
| 5197 | Enter Conf Space mode using regexp KEYWORDS to match the keywords. | 5221 | Enter Conf Space mode using regexp KEYWORDS to match the keywords. |
| 5198 | See `conf-space-mode'. | 5222 | See `conf-space-mode'. |
| 5199 | 5223 | ||
| 5200 | \(fn KEYWORDS)" t nil) | 5224 | \(fn KEYWORDS)" t nil) |
| 5201 | 5225 | ||
| 5202 | (autoload (quote conf-colon-mode) "conf-mode" "\ | 5226 | (autoload 'conf-colon-mode "conf-mode" "\ |
| 5203 | Conf Mode starter for Colon files. | 5227 | Conf Mode starter for Colon files. |
| 5204 | \"Assignments\" are with `:'. | 5228 | \"Assignments\" are with `:'. |
| 5205 | For details see `conf-mode'. Example: | 5229 | For details see `conf-mode'. Example: |
| @@ -5211,7 +5235,7 @@ For details see `conf-mode'. Example: | |||
| 5211 | 5235 | ||
| 5212 | \(fn)" t nil) | 5236 | \(fn)" t nil) |
| 5213 | 5237 | ||
| 5214 | (autoload (quote conf-ppd-mode) "conf-mode" "\ | 5238 | (autoload 'conf-ppd-mode "conf-mode" "\ |
| 5215 | Conf Mode starter for Adobe/CUPS PPD files. | 5239 | Conf Mode starter for Adobe/CUPS PPD files. |
| 5216 | Comments start with `*%' and \"assignments\" are with `:'. | 5240 | Comments start with `*%' and \"assignments\" are with `:'. |
| 5217 | For details see `conf-mode'. Example: | 5241 | For details see `conf-mode'. Example: |
| @@ -5223,7 +5247,7 @@ For details see `conf-mode'. Example: | |||
| 5223 | 5247 | ||
| 5224 | \(fn)" t nil) | 5248 | \(fn)" t nil) |
| 5225 | 5249 | ||
| 5226 | (autoload (quote conf-xdefaults-mode) "conf-mode" "\ | 5250 | (autoload 'conf-xdefaults-mode "conf-mode" "\ |
| 5227 | Conf Mode starter for Xdefaults files. | 5251 | Conf Mode starter for Xdefaults files. |
| 5228 | Comments start with `!' and \"assignments\" are with `:'. | 5252 | Comments start with `!' and \"assignments\" are with `:'. |
| 5229 | For details see `conf-mode'. Example: | 5253 | For details see `conf-mode'. Example: |
| @@ -5238,31 +5262,31 @@ For details see `conf-mode'. Example: | |||
| 5238 | ;;;*** | 5262 | ;;;*** |
| 5239 | 5263 | ||
| 5240 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) | 5264 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) |
| 5241 | ;;;;;; "cookie1" "play/cookie1.el" (18104 24760)) | 5265 | ;;;;;; "cookie1" "play/cookie1.el" (18088 55113)) |
| 5242 | ;;; Generated autoloads from play/cookie1.el | 5266 | ;;; Generated autoloads from play/cookie1.el |
| 5243 | 5267 | ||
| 5244 | (autoload (quote cookie) "cookie1" "\ | 5268 | (autoload 'cookie "cookie1" "\ |
| 5245 | Return a random phrase from PHRASE-FILE. | 5269 | Return a random phrase from PHRASE-FILE. |
| 5246 | When the phrase file is read in, display STARTMSG at the beginning | 5270 | When the phrase file is read in, display STARTMSG at the beginning |
| 5247 | of load, ENDMSG at the end. | 5271 | of load, ENDMSG at the end. |
| 5248 | 5272 | ||
| 5249 | \(fn PHRASE-FILE STARTMSG ENDMSG)" nil nil) | 5273 | \(fn PHRASE-FILE STARTMSG ENDMSG)" nil nil) |
| 5250 | 5274 | ||
| 5251 | (autoload (quote cookie-insert) "cookie1" "\ | 5275 | (autoload 'cookie-insert "cookie1" "\ |
| 5252 | Insert random phrases from PHRASE-FILE; COUNT of them. | 5276 | Insert random phrases from PHRASE-FILE; COUNT of them. |
| 5253 | When the phrase file is read in, display STARTMSG at the beginning | 5277 | When the phrase file is read in, display STARTMSG at the beginning |
| 5254 | of load, ENDMSG at the end. | 5278 | of load, ENDMSG at the end. |
| 5255 | 5279 | ||
| 5256 | \(fn PHRASE-FILE &optional COUNT STARTMSG ENDMSG)" nil nil) | 5280 | \(fn PHRASE-FILE &optional COUNT STARTMSG ENDMSG)" nil nil) |
| 5257 | 5281 | ||
| 5258 | (autoload (quote cookie-snarf) "cookie1" "\ | 5282 | (autoload 'cookie-snarf "cookie1" "\ |
| 5259 | Reads in the PHRASE-FILE, returns it as a vector of strings. | 5283 | Reads in the PHRASE-FILE, returns it as a vector of strings. |
| 5260 | Emit STARTMSG and ENDMSG before and after. Caches the result; second | 5284 | Emit STARTMSG and ENDMSG before and after. Caches the result; second |
| 5261 | and subsequent calls on the same file won't go to disk. | 5285 | and subsequent calls on the same file won't go to disk. |
| 5262 | 5286 | ||
| 5263 | \(fn PHRASE-FILE STARTMSG ENDMSG)" nil nil) | 5287 | \(fn PHRASE-FILE STARTMSG ENDMSG)" nil nil) |
| 5264 | 5288 | ||
| 5265 | (autoload (quote shuffle-vector) "cookie1" "\ | 5289 | (autoload 'shuffle-vector "cookie1" "\ |
| 5266 | Randomly permute the elements of VECTOR (all permutations equally likely). | 5290 | Randomly permute the elements of VECTOR (all permutations equally likely). |
| 5267 | 5291 | ||
| 5268 | \(fn VECTOR)" nil nil) | 5292 | \(fn VECTOR)" nil nil) |
| @@ -5270,10 +5294,10 @@ Randomly permute the elements of VECTOR (all permutations equally likely). | |||
| 5270 | ;;;*** | 5294 | ;;;*** |
| 5271 | 5295 | ||
| 5272 | ;;;### (autoloads (copyright copyright-fix-years copyright-update) | 5296 | ;;;### (autoloads (copyright copyright-fix-years copyright-update) |
| 5273 | ;;;;;; "copyright" "emacs-lisp/copyright.el" (18104 24747)) | 5297 | ;;;;;; "copyright" "emacs-lisp/copyright.el" (18183 58476)) |
| 5274 | ;;; Generated autoloads from emacs-lisp/copyright.el | 5298 | ;;; Generated autoloads from emacs-lisp/copyright.el |
| 5275 | 5299 | ||
| 5276 | (autoload (quote copyright-update) "copyright" "\ | 5300 | (autoload 'copyright-update "copyright" "\ |
| 5277 | Update copyright notice at beginning of buffer to indicate the current year. | 5301 | Update copyright notice at beginning of buffer to indicate the current year. |
| 5278 | With prefix ARG, replace the years in the notice rather than adding | 5302 | With prefix ARG, replace the years in the notice rather than adding |
| 5279 | the current year after them. If necessary, and | 5303 | the current year after them. If necessary, and |
| @@ -5284,13 +5308,13 @@ interactively. | |||
| 5284 | 5308 | ||
| 5285 | \(fn &optional ARG INTERACTIVEP)" t nil) | 5309 | \(fn &optional ARG INTERACTIVEP)" t nil) |
| 5286 | 5310 | ||
| 5287 | (autoload (quote copyright-fix-years) "copyright" "\ | 5311 | (autoload 'copyright-fix-years "copyright" "\ |
| 5288 | Convert 2 digit years to 4 digit years. | 5312 | Convert 2 digit years to 4 digit years. |
| 5289 | Uses heuristic: year >= 50 means 19xx, < 50 means 20xx. | 5313 | Uses heuristic: year >= 50 means 19xx, < 50 means 20xx. |
| 5290 | 5314 | ||
| 5291 | \(fn)" t nil) | 5315 | \(fn)" t nil) |
| 5292 | 5316 | ||
| 5293 | (autoload (quote copyright) "copyright" "\ | 5317 | (autoload 'copyright "copyright" "\ |
| 5294 | Insert a copyright by $ORGANIZATION notice at cursor. | 5318 | Insert a copyright by $ORGANIZATION notice at cursor. |
| 5295 | 5319 | ||
| 5296 | \(fn &optional STR ARG)" t nil) | 5320 | \(fn &optional STR ARG)" t nil) |
| @@ -5298,10 +5322,11 @@ Insert a copyright by $ORGANIZATION notice at cursor. | |||
| 5298 | ;;;*** | 5322 | ;;;*** |
| 5299 | 5323 | ||
| 5300 | ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) | 5324 | ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) |
| 5301 | ;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (18104 24764)) | 5325 | ;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (18214 4479)) |
| 5302 | ;;; Generated autoloads from progmodes/cperl-mode.el | 5326 | ;;; Generated autoloads from progmodes/cperl-mode.el |
| 5327 | (put 'cperl-indent-level 'safe-local-variable 'integerp) | ||
| 5303 | 5328 | ||
| 5304 | (autoload (quote cperl-mode) "cperl-mode" "\ | 5329 | (autoload 'cperl-mode "cperl-mode" "\ |
| 5305 | Major mode for editing Perl code. | 5330 | Major mode for editing Perl code. |
| 5306 | Expression and list commands understand all C brackets. | 5331 | Expression and list commands understand all C brackets. |
| 5307 | Tab indents for Perl code. | 5332 | Tab indents for Perl code. |
| @@ -5476,12 +5501,12 @@ or as help on variables `cperl-tips', `cperl-problems', | |||
| 5476 | 5501 | ||
| 5477 | \(fn)" t nil) | 5502 | \(fn)" t nil) |
| 5478 | 5503 | ||
| 5479 | (autoload (quote cperl-perldoc) "cperl-mode" "\ | 5504 | (autoload 'cperl-perldoc "cperl-mode" "\ |
| 5480 | Run `perldoc' on WORD. | 5505 | Run `perldoc' on WORD. |
| 5481 | 5506 | ||
| 5482 | \(fn WORD)" t nil) | 5507 | \(fn WORD)" t nil) |
| 5483 | 5508 | ||
| 5484 | (autoload (quote cperl-perldoc-at-point) "cperl-mode" "\ | 5509 | (autoload 'cperl-perldoc-at-point "cperl-mode" "\ |
| 5485 | Run a `perldoc' on the word around point. | 5510 | Run a `perldoc' on the word around point. |
| 5486 | 5511 | ||
| 5487 | \(fn)" t nil) | 5512 | \(fn)" t nil) |
| @@ -5489,10 +5514,10 @@ Run a `perldoc' on the word around point. | |||
| 5489 | ;;;*** | 5514 | ;;;*** |
| 5490 | 5515 | ||
| 5491 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" | 5516 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" |
| 5492 | ;;;;;; (18104 24764)) | 5517 | ;;;;;; (18120 34752)) |
| 5493 | ;;; Generated autoloads from progmodes/cpp.el | 5518 | ;;; Generated autoloads from progmodes/cpp.el |
| 5494 | 5519 | ||
| 5495 | (autoload (quote cpp-highlight-buffer) "cpp" "\ | 5520 | (autoload 'cpp-highlight-buffer "cpp" "\ |
| 5496 | Highlight C code according to preprocessor conditionals. | 5521 | Highlight C code according to preprocessor conditionals. |
| 5497 | This command pops up a buffer which you should edit to specify | 5522 | This command pops up a buffer which you should edit to specify |
| 5498 | what kind of highlighting to use, and the criteria for highlighting. | 5523 | what kind of highlighting to use, and the criteria for highlighting. |
| @@ -5500,7 +5525,7 @@ A prefix arg suppresses display of that buffer. | |||
| 5500 | 5525 | ||
| 5501 | \(fn ARG)" t nil) | 5526 | \(fn ARG)" t nil) |
| 5502 | 5527 | ||
| 5503 | (autoload (quote cpp-parse-edit) "cpp" "\ | 5528 | (autoload 'cpp-parse-edit "cpp" "\ |
| 5504 | Edit display information for cpp conditionals. | 5529 | Edit display information for cpp conditionals. |
| 5505 | 5530 | ||
| 5506 | \(fn)" t nil) | 5531 | \(fn)" t nil) |
| @@ -5508,7 +5533,7 @@ Edit display information for cpp conditionals. | |||
| 5508 | ;;;*** | 5533 | ;;;*** |
| 5509 | 5534 | ||
| 5510 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" | 5535 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" |
| 5511 | ;;;;;; (18104 24748)) | 5536 | ;;;;;; (18088 55097)) |
| 5512 | ;;; Generated autoloads from emulation/crisp.el | 5537 | ;;; Generated autoloads from emulation/crisp.el |
| 5513 | 5538 | ||
| 5514 | (defvar crisp-mode nil "\ | 5539 | (defvar crisp-mode nil "\ |
| @@ -5519,23 +5544,23 @@ indicates CRiSP mode is enabled. | |||
| 5519 | Setting this variable directly does not take effect; | 5544 | Setting this variable directly does not take effect; |
| 5520 | use either M-x customize or the function `crisp-mode'.") | 5545 | use either M-x customize or the function `crisp-mode'.") |
| 5521 | 5546 | ||
| 5522 | (custom-autoload (quote crisp-mode) "crisp" nil) | 5547 | (custom-autoload 'crisp-mode "crisp" nil) |
| 5523 | 5548 | ||
| 5524 | (autoload (quote crisp-mode) "crisp" "\ | 5549 | (autoload 'crisp-mode "crisp" "\ |
| 5525 | Toggle CRiSP/Brief emulation minor mode. | 5550 | Toggle CRiSP/Brief emulation minor mode. |
| 5526 | With ARG, turn CRiSP mode on if ARG is positive, off otherwise. | 5551 | With ARG, turn CRiSP mode on if ARG is positive, off otherwise. |
| 5527 | 5552 | ||
| 5528 | \(fn &optional ARG)" t nil) | 5553 | \(fn &optional ARG)" t nil) |
| 5529 | 5554 | ||
| 5530 | (defalias (quote brief-mode) (quote crisp-mode)) | 5555 | (defalias 'brief-mode 'crisp-mode) |
| 5531 | 5556 | ||
| 5532 | ;;;*** | 5557 | ;;;*** |
| 5533 | 5558 | ||
| 5534 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" | 5559 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" |
| 5535 | ;;;;;; (18104 24747)) | 5560 | ;;;;;; (18088 55095)) |
| 5536 | ;;; Generated autoloads from emacs-lisp/crm.el | 5561 | ;;; Generated autoloads from emacs-lisp/crm.el |
| 5537 | 5562 | ||
| 5538 | (autoload (quote completing-read-multiple) "crm" "\ | 5563 | (autoload 'completing-read-multiple "crm" "\ |
| 5539 | Read multiple strings in the minibuffer, with completion. | 5564 | Read multiple strings in the minibuffer, with completion. |
| 5540 | By using this functionality, a user may specify multiple strings at a | 5565 | By using this functionality, a user may specify multiple strings at a |
| 5541 | single prompt, optionally using completion. | 5566 | single prompt, optionally using completion. |
| @@ -5567,12 +5592,12 @@ INHERIT-INPUT-METHOD. | |||
| 5567 | 5592 | ||
| 5568 | ;;;*** | 5593 | ;;;*** |
| 5569 | 5594 | ||
| 5570 | ;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (18104 | 5595 | ;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (18211 |
| 5571 | ;;;;;; 24771)) | 5596 | ;;;;;; 32385)) |
| 5572 | ;;; Generated autoloads from textmodes/css-mode.el | 5597 | ;;; Generated autoloads from textmodes/css-mode.el |
| 5573 | (add-to-list 'auto-mode-alist '("\\.css\\'" . css-mode)) | 5598 | (add-to-list 'auto-mode-alist '("\\.css\\'" . css-mode)) |
| 5574 | 5599 | ||
| 5575 | (autoload (quote css-mode) "css-mode" "\ | 5600 | (autoload 'css-mode "css-mode" "\ |
| 5576 | Major mode to edit Cascading Style Sheets. | 5601 | Major mode to edit Cascading Style Sheets. |
| 5577 | 5602 | ||
| 5578 | \(fn)" t nil) | 5603 | \(fn)" t nil) |
| @@ -5580,7 +5605,7 @@ Major mode to edit Cascading Style Sheets. | |||
| 5580 | ;;;*** | 5605 | ;;;*** |
| 5581 | 5606 | ||
| 5582 | ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" | 5607 | ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" |
| 5583 | ;;;;;; (18104 24748)) | 5608 | ;;;;;; (18186 14736)) |
| 5584 | ;;; Generated autoloads from emulation/cua-base.el | 5609 | ;;; Generated autoloads from emulation/cua-base.el |
| 5585 | 5610 | ||
| 5586 | (defvar cua-mode nil "\ | 5611 | (defvar cua-mode nil "\ |
| @@ -5590,9 +5615,9 @@ Setting this variable directly does not take effect; | |||
| 5590 | either customize it (see the info node `Easy Customization') | 5615 | either customize it (see the info node `Easy Customization') |
| 5591 | or call the function `cua-mode'.") | 5616 | or call the function `cua-mode'.") |
| 5592 | 5617 | ||
| 5593 | (custom-autoload (quote cua-mode) "cua-base" nil) | 5618 | (custom-autoload 'cua-mode "cua-base" nil) |
| 5594 | 5619 | ||
| 5595 | (autoload (quote cua-mode) "cua-base" "\ | 5620 | (autoload 'cua-mode "cua-base" "\ |
| 5596 | Toggle CUA key-binding mode. | 5621 | Toggle CUA key-binding mode. |
| 5597 | When enabled, using shifted movement keys will activate the | 5622 | When enabled, using shifted movement keys will activate the |
| 5598 | region (and highlight the region using `transient-mark-mode'), | 5623 | region (and highlight the region using `transient-mark-mode'), |
| @@ -5622,19 +5647,10 @@ shifted movement key, set `cua-highlight-region-shift-only'. | |||
| 5622 | 5647 | ||
| 5623 | \(fn &optional ARG)" t nil) | 5648 | \(fn &optional ARG)" t nil) |
| 5624 | 5649 | ||
| 5625 | (autoload (quote cua-selection-mode) "cua-base" "\ | 5650 | (autoload 'cua-selection-mode "cua-base" "\ |
| 5626 | Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | 5651 | Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. |
| 5627 | 5652 | ||
| 5628 | \(fn ARG)" t nil) | 5653 | \(fn ARG)" t nil) |
| 5629 | (eval-after-load 'CUA-mode | ||
| 5630 | '(error (concat "\n\n" | ||
| 5631 | "CUA-mode is now part of the standard GNU Emacs distribution, so you may\n" | ||
| 5632 | "now enable CUA via the Options menu or by customizing option `cua-mode'.\n\n" | ||
| 5633 | "You have loaded an older version of CUA-mode which does\n" | ||
| 5634 | "not work correctly with this version of GNU Emacs.\n\n" | ||
| 5635 | (if user-init-file (concat | ||
| 5636 | "To correct this, remove the loading and customization of the\n" | ||
| 5637 | "old version from the " user-init-file " file.\n\n"))))) | ||
| 5638 | 5654 | ||
| 5639 | ;;;*** | 5655 | ;;;*** |
| 5640 | 5656 | ||
| @@ -5648,26 +5664,26 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | |||
| 5648 | ;;;;;; customize-mode customize customize-save-variable customize-set-variable | 5664 | ;;;;;; customize-mode customize customize-save-variable customize-set-variable |
| 5649 | ;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically | 5665 | ;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically |
| 5650 | ;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el" | 5666 | ;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el" |
| 5651 | ;;;;;; (18104 24731)) | 5667 | ;;;;;; (18212 54459)) |
| 5652 | ;;; Generated autoloads from cus-edit.el | 5668 | ;;; Generated autoloads from cus-edit.el |
| 5653 | 5669 | ||
| 5654 | (defvar custom-browse-sort-alphabetically nil "\ | 5670 | (defvar custom-browse-sort-alphabetically nil "\ |
| 5655 | If non-nil, sort customization group alphabetically in `custom-browse'.") | 5671 | If non-nil, sort customization group alphabetically in `custom-browse'.") |
| 5656 | 5672 | ||
| 5657 | (custom-autoload (quote custom-browse-sort-alphabetically) "cus-edit" t) | 5673 | (custom-autoload 'custom-browse-sort-alphabetically "cus-edit" t) |
| 5658 | 5674 | ||
| 5659 | (defvar custom-buffer-sort-alphabetically nil "\ | 5675 | (defvar custom-buffer-sort-alphabetically nil "\ |
| 5660 | If non-nil, sort each customization group alphabetically in Custom buffer.") | 5676 | If non-nil, sort each customization group alphabetically in Custom buffer.") |
| 5661 | 5677 | ||
| 5662 | (custom-autoload (quote custom-buffer-sort-alphabetically) "cus-edit" t) | 5678 | (custom-autoload 'custom-buffer-sort-alphabetically "cus-edit" t) |
| 5663 | 5679 | ||
| 5664 | (defvar custom-menu-sort-alphabetically nil "\ | 5680 | (defvar custom-menu-sort-alphabetically nil "\ |
| 5665 | If non-nil, sort each customization group alphabetically in menus.") | 5681 | If non-nil, sort each customization group alphabetically in menus.") |
| 5666 | 5682 | ||
| 5667 | (custom-autoload (quote custom-menu-sort-alphabetically) "cus-edit" t) | 5683 | (custom-autoload 'custom-menu-sort-alphabetically "cus-edit" t) |
| 5668 | (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") | 5684 | (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") |
| 5669 | 5685 | ||
| 5670 | (autoload (quote customize-set-value) "cus-edit" "\ | 5686 | (autoload 'customize-set-value "cus-edit" "\ |
| 5671 | Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object. | 5687 | Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object. |
| 5672 | 5688 | ||
| 5673 | If VARIABLE has a `variable-interactive' property, that is used as if | 5689 | If VARIABLE has a `variable-interactive' property, that is used as if |
| @@ -5680,7 +5696,7 @@ If given a prefix (or a COMMENT argument), also prompt for a comment. | |||
| 5680 | 5696 | ||
| 5681 | \(fn VARIABLE VALUE &optional COMMENT)" t nil) | 5697 | \(fn VARIABLE VALUE &optional COMMENT)" t nil) |
| 5682 | 5698 | ||
| 5683 | (autoload (quote customize-set-variable) "cus-edit" "\ | 5699 | (autoload 'customize-set-variable "cus-edit" "\ |
| 5684 | Set the default for VARIABLE to VALUE, and return VALUE. | 5700 | Set the default for VARIABLE to VALUE, and return VALUE. |
| 5685 | VALUE is a Lisp object. | 5701 | VALUE is a Lisp object. |
| 5686 | 5702 | ||
| @@ -5697,7 +5713,7 @@ If given a prefix (or a COMMENT argument), also prompt for a comment. | |||
| 5697 | 5713 | ||
| 5698 | \(fn VARIABLE VALUE &optional COMMENT)" t nil) | 5714 | \(fn VARIABLE VALUE &optional COMMENT)" t nil) |
| 5699 | 5715 | ||
| 5700 | (autoload (quote customize-save-variable) "cus-edit" "\ | 5716 | (autoload 'customize-save-variable "cus-edit" "\ |
| 5701 | Set the default for VARIABLE to VALUE, and save it for future sessions. | 5717 | Set the default for VARIABLE to VALUE, and save it for future sessions. |
| 5702 | Return VALUE. | 5718 | Return VALUE. |
| 5703 | 5719 | ||
| @@ -5714,7 +5730,7 @@ If given a prefix (or a COMMENT argument), also prompt for a comment. | |||
| 5714 | 5730 | ||
| 5715 | \(fn VARIABLE VALUE &optional COMMENT)" t nil) | 5731 | \(fn VARIABLE VALUE &optional COMMENT)" t nil) |
| 5716 | 5732 | ||
| 5717 | (autoload (quote customize) "cus-edit" "\ | 5733 | (autoload 'customize "cus-edit" "\ |
| 5718 | Select a customization buffer which you can use to set user options. | 5734 | Select a customization buffer which you can use to set user options. |
| 5719 | User options are structured into \"groups\". | 5735 | User options are structured into \"groups\". |
| 5720 | Initially the top-level group `Emacs' and its immediate subgroups | 5736 | Initially the top-level group `Emacs' and its immediate subgroups |
| @@ -5722,33 +5738,33 @@ are shown; the contents of those subgroups are initially hidden. | |||
| 5722 | 5738 | ||
| 5723 | \(fn)" t nil) | 5739 | \(fn)" t nil) |
| 5724 | 5740 | ||
| 5725 | (autoload (quote customize-mode) "cus-edit" "\ | 5741 | (autoload 'customize-mode "cus-edit" "\ |
| 5726 | Customize options related to the current major mode. | 5742 | Customize options related to the current major mode. |
| 5727 | If a prefix \\[universal-argument] was given (or if the current major mode has no known group), | 5743 | If a prefix \\[universal-argument] was given (or if the current major mode has no known group), |
| 5728 | then prompt for the MODE to customize. | 5744 | then prompt for the MODE to customize. |
| 5729 | 5745 | ||
| 5730 | \(fn MODE)" t nil) | 5746 | \(fn MODE)" t nil) |
| 5731 | 5747 | ||
| 5732 | (autoload (quote customize-group) "cus-edit" "\ | 5748 | (autoload 'customize-group "cus-edit" "\ |
| 5733 | Customize GROUP, which must be a customization group. | 5749 | Customize GROUP, which must be a customization group. |
| 5734 | 5750 | ||
| 5735 | \(fn &optional GROUP)" t nil) | 5751 | \(fn &optional GROUP)" t nil) |
| 5736 | 5752 | ||
| 5737 | (autoload (quote customize-group-other-window) "cus-edit" "\ | 5753 | (autoload 'customize-group-other-window "cus-edit" "\ |
| 5738 | Customize GROUP, which must be a customization group, in another window. | 5754 | Customize GROUP, which must be a customization group, in another window. |
| 5739 | 5755 | ||
| 5740 | \(fn &optional GROUP)" t nil) | 5756 | \(fn &optional GROUP)" t nil) |
| 5741 | 5757 | ||
| 5742 | (defalias (quote customize-variable) (quote customize-option)) | 5758 | (defalias 'customize-variable 'customize-option) |
| 5743 | 5759 | ||
| 5744 | (autoload (quote customize-option) "cus-edit" "\ | 5760 | (autoload 'customize-option "cus-edit" "\ |
| 5745 | Customize SYMBOL, which must be a user option variable. | 5761 | Customize SYMBOL, which must be a user option variable. |
| 5746 | 5762 | ||
| 5747 | \(fn SYMBOL)" t nil) | 5763 | \(fn SYMBOL)" t nil) |
| 5748 | 5764 | ||
| 5749 | (defalias (quote customize-variable-other-window) (quote customize-option-other-window)) | 5765 | (defalias 'customize-variable-other-window 'customize-option-other-window) |
| 5750 | 5766 | ||
| 5751 | (autoload (quote customize-option-other-window) "cus-edit" "\ | 5767 | (autoload 'customize-option-other-window "cus-edit" "\ |
| 5752 | Customize SYMBOL, which must be a user option variable. | 5768 | Customize SYMBOL, which must be a user option variable. |
| 5753 | Show the buffer in another window, but don't select it. | 5769 | Show the buffer in another window, but don't select it. |
| 5754 | 5770 | ||
| @@ -5785,9 +5801,9 @@ PACKAGE value appearing in the :package-version keyword. Since | |||
| 5785 | the user might see the value in a error message, a good choice is | 5801 | the user might see the value in a error message, a good choice is |
| 5786 | the official name of the package, such as MH-E or Gnus.") | 5802 | the official name of the package, such as MH-E or Gnus.") |
| 5787 | 5803 | ||
| 5788 | (defalias (quote customize-changed) (quote customize-changed-options)) | 5804 | (defalias 'customize-changed 'customize-changed-options) |
| 5789 | 5805 | ||
| 5790 | (autoload (quote customize-changed-options) "cus-edit" "\ | 5806 | (autoload 'customize-changed-options "cus-edit" "\ |
| 5791 | Customize all settings whose meanings have changed in Emacs itself. | 5807 | Customize all settings whose meanings have changed in Emacs itself. |
| 5792 | This includes new user option variables and faces, and new | 5808 | This includes new user option variables and faces, and new |
| 5793 | customization groups, as well as older options and faces whose meanings | 5809 | customization groups, as well as older options and faces whose meanings |
| @@ -5796,9 +5812,9 @@ or default values have changed since the previous major Emacs release. | |||
| 5796 | With argument SINCE-VERSION (a string), customize all settings | 5812 | With argument SINCE-VERSION (a string), customize all settings |
| 5797 | that were added or redefined since that version. | 5813 | that were added or redefined since that version. |
| 5798 | 5814 | ||
| 5799 | \(fn SINCE-VERSION)" t nil) | 5815 | \(fn &optional SINCE-VERSION)" t nil) |
| 5800 | 5816 | ||
| 5801 | (autoload (quote customize-face) "cus-edit" "\ | 5817 | (autoload 'customize-face "cus-edit" "\ |
| 5802 | Customize FACE, which should be a face name or nil. | 5818 | Customize FACE, which should be a face name or nil. |
| 5803 | If FACE is nil, customize all faces. If FACE is actually a | 5819 | If FACE is nil, customize all faces. If FACE is actually a |
| 5804 | face-alias, customize the face it is aliased to. | 5820 | face-alias, customize the face it is aliased to. |
| @@ -5808,7 +5824,7 @@ suggest to customize that face, if it's customizable. | |||
| 5808 | 5824 | ||
| 5809 | \(fn &optional FACE)" t nil) | 5825 | \(fn &optional FACE)" t nil) |
| 5810 | 5826 | ||
| 5811 | (autoload (quote customize-face-other-window) "cus-edit" "\ | 5827 | (autoload 'customize-face-other-window "cus-edit" "\ |
| 5812 | Show customization buffer for face FACE in other window. | 5828 | Show customization buffer for face FACE in other window. |
| 5813 | If FACE is actually a face-alias, customize the face it is aliased to. | 5829 | If FACE is actually a face-alias, customize the face it is aliased to. |
| 5814 | 5830 | ||
| @@ -5817,22 +5833,22 @@ suggest to customize that face, if it's customizable. | |||
| 5817 | 5833 | ||
| 5818 | \(fn &optional FACE)" t nil) | 5834 | \(fn &optional FACE)" t nil) |
| 5819 | 5835 | ||
| 5820 | (autoload (quote customize-unsaved) "cus-edit" "\ | 5836 | (autoload 'customize-unsaved "cus-edit" "\ |
| 5821 | Customize all user options set in this session but not saved. | 5837 | Customize all user options set in this session but not saved. |
| 5822 | 5838 | ||
| 5823 | \(fn)" t nil) | 5839 | \(fn)" t nil) |
| 5824 | 5840 | ||
| 5825 | (autoload (quote customize-rogue) "cus-edit" "\ | 5841 | (autoload 'customize-rogue "cus-edit" "\ |
| 5826 | Customize all user variables modified outside customize. | 5842 | Customize all user variables modified outside customize. |
| 5827 | 5843 | ||
| 5828 | \(fn)" t nil) | 5844 | \(fn)" t nil) |
| 5829 | 5845 | ||
| 5830 | (autoload (quote customize-saved) "cus-edit" "\ | 5846 | (autoload 'customize-saved "cus-edit" "\ |
| 5831 | Customize all already saved user options. | 5847 | Customize all already saved user options. |
| 5832 | 5848 | ||
| 5833 | \(fn)" t nil) | 5849 | \(fn)" t nil) |
| 5834 | 5850 | ||
| 5835 | (autoload (quote customize-apropos) "cus-edit" "\ | 5851 | (autoload 'customize-apropos "cus-edit" "\ |
| 5836 | Customize all loaded options, faces and groups matching REGEXP. | 5852 | Customize all loaded options, faces and groups matching REGEXP. |
| 5837 | If ALL is `options', include only options. | 5853 | If ALL is `options', include only options. |
| 5838 | If ALL is `faces', include only faces. | 5854 | If ALL is `faces', include only faces. |
| @@ -5843,24 +5859,24 @@ that are not customizable options, as well as faces and groups | |||
| 5843 | 5859 | ||
| 5844 | \(fn REGEXP &optional ALL)" t nil) | 5860 | \(fn REGEXP &optional ALL)" t nil) |
| 5845 | 5861 | ||
| 5846 | (autoload (quote customize-apropos-options) "cus-edit" "\ | 5862 | (autoload 'customize-apropos-options "cus-edit" "\ |
| 5847 | Customize all loaded customizable options matching REGEXP. | 5863 | Customize all loaded customizable options matching REGEXP. |
| 5848 | With prefix arg, include variables that are not customizable options | 5864 | With prefix arg, include variables that are not customizable options |
| 5849 | \(but we recommend using `apropos-variable' instead). | 5865 | \(but we recommend using `apropos-variable' instead). |
| 5850 | 5866 | ||
| 5851 | \(fn REGEXP &optional ARG)" t nil) | 5867 | \(fn REGEXP &optional ARG)" t nil) |
| 5852 | 5868 | ||
| 5853 | (autoload (quote customize-apropos-faces) "cus-edit" "\ | 5869 | (autoload 'customize-apropos-faces "cus-edit" "\ |
| 5854 | Customize all loaded faces matching REGEXP. | 5870 | Customize all loaded faces matching REGEXP. |
| 5855 | 5871 | ||
| 5856 | \(fn REGEXP)" t nil) | 5872 | \(fn REGEXP)" t nil) |
| 5857 | 5873 | ||
| 5858 | (autoload (quote customize-apropos-groups) "cus-edit" "\ | 5874 | (autoload 'customize-apropos-groups "cus-edit" "\ |
| 5859 | Customize all loaded groups matching REGEXP. | 5875 | Customize all loaded groups matching REGEXP. |
| 5860 | 5876 | ||
| 5861 | \(fn REGEXP)" t nil) | 5877 | \(fn REGEXP)" t nil) |
| 5862 | 5878 | ||
| 5863 | (autoload (quote custom-buffer-create) "cus-edit" "\ | 5879 | (autoload 'custom-buffer-create "cus-edit" "\ |
| 5864 | Create a buffer containing OPTIONS. | 5880 | Create a buffer containing OPTIONS. |
| 5865 | Optional NAME is the name of the buffer. | 5881 | Optional NAME is the name of the buffer. |
| 5866 | OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where | 5882 | OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where |
| @@ -5869,7 +5885,7 @@ that option. | |||
| 5869 | 5885 | ||
| 5870 | \(fn OPTIONS &optional NAME DESCRIPTION)" nil nil) | 5886 | \(fn OPTIONS &optional NAME DESCRIPTION)" nil nil) |
| 5871 | 5887 | ||
| 5872 | (autoload (quote custom-buffer-create-other-window) "cus-edit" "\ | 5888 | (autoload 'custom-buffer-create-other-window "cus-edit" "\ |
| 5873 | Create a buffer containing OPTIONS, and display it in another window. | 5889 | Create a buffer containing OPTIONS, and display it in another window. |
| 5874 | The result includes selecting that window. | 5890 | The result includes selecting that window. |
| 5875 | Optional NAME is the name of the buffer. | 5891 | Optional NAME is the name of the buffer. |
| @@ -5879,7 +5895,7 @@ that option. | |||
| 5879 | 5895 | ||
| 5880 | \(fn OPTIONS &optional NAME DESCRIPTION)" nil nil) | 5896 | \(fn OPTIONS &optional NAME DESCRIPTION)" nil nil) |
| 5881 | 5897 | ||
| 5882 | (autoload (quote customize-browse) "cus-edit" "\ | 5898 | (autoload 'customize-browse "cus-edit" "\ |
| 5883 | Create a tree browser for the customize hierarchy. | 5899 | Create a tree browser for the customize hierarchy. |
| 5884 | 5900 | ||
| 5885 | \(fn &optional GROUP)" t nil) | 5901 | \(fn &optional GROUP)" t nil) |
| @@ -5917,25 +5933,25 @@ in your init file, where CUSTOM-FILE is the actual name of the | |||
| 5917 | file. Otherwise, Emacs will not load the file when it starts up, | 5933 | file. Otherwise, Emacs will not load the file when it starts up, |
| 5918 | and hence will not set `custom-file' to that file either.") | 5934 | and hence will not set `custom-file' to that file either.") |
| 5919 | 5935 | ||
| 5920 | (custom-autoload (quote custom-file) "cus-edit" t) | 5936 | (custom-autoload 'custom-file "cus-edit" t) |
| 5921 | 5937 | ||
| 5922 | (autoload (quote custom-save-all) "cus-edit" "\ | 5938 | (autoload 'custom-save-all "cus-edit" "\ |
| 5923 | Save all customizations in `custom-file'. | 5939 | Save all customizations in `custom-file'. |
| 5924 | 5940 | ||
| 5925 | \(fn)" nil nil) | 5941 | \(fn)" nil nil) |
| 5926 | 5942 | ||
| 5927 | (autoload (quote customize-save-customized) "cus-edit" "\ | 5943 | (autoload 'customize-save-customized "cus-edit" "\ |
| 5928 | Save all user options which have been set in this session. | 5944 | Save all user options which have been set in this session. |
| 5929 | 5945 | ||
| 5930 | \(fn)" t nil) | 5946 | \(fn)" t nil) |
| 5931 | 5947 | ||
| 5932 | (autoload (quote custom-menu-create) "cus-edit" "\ | 5948 | (autoload 'custom-menu-create "cus-edit" "\ |
| 5933 | Create menu for customization group SYMBOL. | 5949 | Create menu for customization group SYMBOL. |
| 5934 | The menu is in a format applicable to `easy-menu-define'. | 5950 | The menu is in a format applicable to `easy-menu-define'. |
| 5935 | 5951 | ||
| 5936 | \(fn SYMBOL)" nil nil) | 5952 | \(fn SYMBOL)" nil nil) |
| 5937 | 5953 | ||
| 5938 | (autoload (quote customize-menu-create) "cus-edit" "\ | 5954 | (autoload 'customize-menu-create "cus-edit" "\ |
| 5939 | Return a customize menu for customization group SYMBOL. | 5955 | Return a customize menu for customization group SYMBOL. |
| 5940 | If optional NAME is given, use that as the name of the menu. | 5956 | If optional NAME is given, use that as the name of the menu. |
| 5941 | Otherwise the menu will be named `Customize'. | 5957 | Otherwise the menu will be named `Customize'. |
| @@ -5946,15 +5962,15 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5946 | ;;;*** | 5962 | ;;;*** |
| 5947 | 5963 | ||
| 5948 | ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces | 5964 | ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces |
| 5949 | ;;;;;; custom-declare-face) "cus-face" "cus-face.el" (18104 24732)) | 5965 | ;;;;;; custom-declare-face) "cus-face" "cus-face.el" (18157 61328)) |
| 5950 | ;;; Generated autoloads from cus-face.el | 5966 | ;;; Generated autoloads from cus-face.el |
| 5951 | 5967 | ||
| 5952 | (autoload (quote custom-declare-face) "cus-face" "\ | 5968 | (autoload 'custom-declare-face "cus-face" "\ |
| 5953 | Like `defface', but FACE is evaluated as a normal argument. | 5969 | Like `defface', but FACE is evaluated as a normal argument. |
| 5954 | 5970 | ||
| 5955 | \(fn FACE SPEC DOC &rest ARGS)" nil nil) | 5971 | \(fn FACE SPEC DOC &rest ARGS)" nil nil) |
| 5956 | 5972 | ||
| 5957 | (defconst custom-face-attributes (quote ((:family (string :tag "Font Family" :help-echo "Font family or fontset alias name.")) (:width (choice :tag "Width" :help-echo "Font width." :value normal (const :tag "compressed" condensed) (const :tag "condensed" condensed) (const :tag "demiexpanded" semi-expanded) (const :tag "expanded" expanded) (const :tag "extracondensed" extra-condensed) (const :tag "extraexpanded" extra-expanded) (const :tag "medium" normal) (const :tag "narrow" condensed) (const :tag "normal" normal) (const :tag "regular" normal) (const :tag "semicondensed" semi-condensed) (const :tag "semiexpanded" semi-expanded) (const :tag "ultracondensed" ultra-condensed) (const :tag "ultraexpanded" ultra-expanded) (const :tag "wide" extra-expanded))) (:height (choice :tag "Height" :help-echo "Face's font height." :value 1.0 (integer :tag "Height in 1/10 pt") (number :tag "Scale" 1.0))) (:weight (choice :tag "Weight" :help-echo "Font weight." :value normal (const :tag "black" ultra-bold) (const :tag "bold" bold) (const :tag "book" semi-light) (const :tag "demibold" semi-bold) (const :tag "extralight" extra-light) (const :tag "extrabold" extra-bold) (const :tag "heavy" extra-bold) (const :tag "light" light) (const :tag "medium" normal) (const :tag "normal" normal) (const :tag "regular" normal) (const :tag "semibold" semi-bold) (const :tag "semilight" semi-light) (const :tag "ultralight" ultra-light) (const :tag "ultrabold" ultra-bold))) (:slant (choice :tag "Slant" :help-echo "Font slant." :value normal (const :tag "italic" italic) (const :tag "oblique" oblique) (const :tag "normal" normal))) (:underline (choice :tag "Underline" :help-echo "Control text underlining." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:overline (choice :tag "Overline" :help-echo "Control text overlining." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:strike-through (choice :tag "Strike-through" :help-echo "Control text strike-through." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:box (choice :tag "Box around text" :help-echo "Control box around text." (const :tag "Off" nil) (list :tag "Box" :value (:line-width 2 :color "grey75" :style released-button) (const :format "" :value :line-width) (integer :tag "Width") (const :format "" :value :color) (choice :tag "Color" (const :tag "*" nil) color) (const :format "" :value :style) (choice :tag "Style" (const :tag "Raised" released-button) (const :tag "Sunken" pressed-button) (const :tag "None" nil)))) (lambda (real-value) (and real-value (let ((lwidth (or (and (consp real-value) (plist-get real-value :line-width)) (and (integerp real-value) real-value) 1)) (color (or (and (consp real-value) (plist-get real-value :color)) (and (stringp real-value) real-value) nil)) (style (and (consp real-value) (plist-get real-value :style)))) (list :line-width lwidth :color color :style style)))) (lambda (cus-value) (and cus-value (let ((lwidth (plist-get cus-value :line-width)) (color (plist-get cus-value :color)) (style (plist-get cus-value :style))) (cond ((and (null color) (null style)) lwidth) ((and (null lwidth) (null style)) color) (t (nconc (and lwidth (\` (:line-width (\, lwidth)))) (and color (\` (:color (\, color)))) (and style (\` (:style (\, style))))))))))) (:inverse-video (choice :tag "Inverse-video" :help-echo "Control whether text should be in inverse-video." (const :tag "Off" nil) (const :tag "On" t))) (:foreground (color :tag "Foreground" :help-echo "Set foreground color (name or #RRGGBB hex spec).")) (:background (color :tag "Background" :help-echo "Set background color (name or #RRGGBB hex spec).")) (:stipple (choice :tag "Stipple" :help-echo "Background bit-mask" (const :tag "None" nil) (file :tag "File" :help-echo "Name of bitmap file." :must-match t))) (:inherit (repeat :tag "Inherit" :help-echo "List of faces to inherit attributes from." (face :Tag "Face" default)) (lambda (real-value) (cond ((or (null real-value) (eq real-value (quote unspecified))) nil) ((symbolp real-value) (list real-value)) (t real-value))) (lambda (cus-value) (if (and (consp cus-value) (null (cdr cus-value))) (car cus-value) cus-value))))) "\ | 5973 | (defconst custom-face-attributes '((:family (string :tag "Font Family" :help-echo "Font family or fontset alias name.")) (:width (choice :tag "Width" :help-echo "Font width." :value normal (const :tag "compressed" condensed) (const :tag "condensed" condensed) (const :tag "demiexpanded" semi-expanded) (const :tag "expanded" expanded) (const :tag "extracondensed" extra-condensed) (const :tag "extraexpanded" extra-expanded) (const :tag "medium" normal) (const :tag "narrow" condensed) (const :tag "normal" normal) (const :tag "regular" normal) (const :tag "semicondensed" semi-condensed) (const :tag "semiexpanded" semi-expanded) (const :tag "ultracondensed" ultra-condensed) (const :tag "ultraexpanded" ultra-expanded) (const :tag "wide" extra-expanded))) (:height (choice :tag "Height" :help-echo "Face's font height." :value 1.0 (integer :tag "Height in 1/10 pt") (number :tag "Scale" 1.0))) (:weight (choice :tag "Weight" :help-echo "Font weight." :value normal (const :tag "black" ultra-bold) (const :tag "bold" bold) (const :tag "book" semi-light) (const :tag "demibold" semi-bold) (const :tag "extralight" extra-light) (const :tag "extrabold" extra-bold) (const :tag "heavy" extra-bold) (const :tag "light" light) (const :tag "medium" normal) (const :tag "normal" normal) (const :tag "regular" normal) (const :tag "semibold" semi-bold) (const :tag "semilight" semi-light) (const :tag "ultralight" ultra-light) (const :tag "ultrabold" ultra-bold))) (:slant (choice :tag "Slant" :help-echo "Font slant." :value normal (const :tag "italic" italic) (const :tag "oblique" oblique) (const :tag "normal" normal))) (:underline (choice :tag "Underline" :help-echo "Control text underlining." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:overline (choice :tag "Overline" :help-echo "Control text overlining." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:strike-through (choice :tag "Strike-through" :help-echo "Control text strike-through." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:box (choice :tag "Box around text" :help-echo "Control box around text." (const :tag "Off" nil) (list :tag "Box" :value (:line-width 2 :color "grey75" :style released-button) (const :format "" :value :line-width) (integer :tag "Width") (const :format "" :value :color) (choice :tag "Color" (const :tag "*" nil) color) (const :format "" :value :style) (choice :tag "Style" (const :tag "Raised" released-button) (const :tag "Sunken" pressed-button) (const :tag "None" nil)))) (lambda (real-value) (and real-value (let ((lwidth (or (and (consp real-value) (plist-get real-value :line-width)) (and (integerp real-value) real-value) 1)) (color (or (and (consp real-value) (plist-get real-value :color)) (and (stringp real-value) real-value) nil)) (style (and (consp real-value) (plist-get real-value :style)))) (list :line-width lwidth :color color :style style)))) (lambda (cus-value) (and cus-value (let ((lwidth (plist-get cus-value :line-width)) (color (plist-get cus-value :color)) (style (plist-get cus-value :style))) (cond ((and (null color) (null style)) lwidth) ((and (null lwidth) (null style)) color) (t (nconc (and lwidth `(:line-width ,lwidth)) (and color `(:color ,color)) (and style `(:style ,style))))))))) (:inverse-video (choice :tag "Inverse-video" :help-echo "Control whether text should be in inverse-video." (const :tag "Off" nil) (const :tag "On" t))) (:foreground (color :tag "Foreground" :help-echo "Set foreground color (name or #RRGGBB hex spec).")) (:background (color :tag "Background" :help-echo "Set background color (name or #RRGGBB hex spec).")) (:stipple (choice :tag "Stipple" :help-echo "Background bit-mask" (const :tag "None" nil) (file :tag "File" :help-echo "Name of bitmap file." :must-match t))) (:inherit (repeat :tag "Inherit" :help-echo "List of faces to inherit attributes from." (face :Tag "Face" default)) (lambda (real-value) (cond ((or (null real-value) (eq real-value 'unspecified)) nil) ((symbolp real-value) (list real-value)) (t real-value))) (lambda (cus-value) (if (and (consp cus-value) (null (cdr cus-value))) (car cus-value) cus-value)))) "\ |
| 5958 | Alist of face attributes. | 5974 | Alist of face attributes. |
| 5959 | 5975 | ||
| 5960 | The elements are of the form (KEY TYPE PRE-FILTER POST-FILTER), | 5976 | The elements are of the form (KEY TYPE PRE-FILTER POST-FILTER), |
| @@ -5972,7 +5988,7 @@ The POST-FILTER should also take a single argument, the value after | |||
| 5972 | being customized, and should return a value suitable for setting the | 5988 | being customized, and should return a value suitable for setting the |
| 5973 | given face attribute.") | 5989 | given face attribute.") |
| 5974 | 5990 | ||
| 5975 | (autoload (quote custom-set-faces) "cus-face" "\ | 5991 | (autoload 'custom-set-faces "cus-face" "\ |
| 5976 | Initialize faces according to user preferences. | 5992 | Initialize faces according to user preferences. |
| 5977 | This associates the settings with the `user' theme. | 5993 | This associates the settings with the `user' theme. |
| 5978 | The arguments should be a list where each entry has the form: | 5994 | The arguments should be a list where each entry has the form: |
| @@ -5991,7 +6007,7 @@ COMMENT is a string comment about FACE. | |||
| 5991 | 6007 | ||
| 5992 | \(fn &rest ARGS)" nil nil) | 6008 | \(fn &rest ARGS)" nil nil) |
| 5993 | 6009 | ||
| 5994 | (autoload (quote custom-theme-reset-faces) "cus-face" "\ | 6010 | (autoload 'custom-theme-reset-faces "cus-face" "\ |
| 5995 | Reset the specs in THEME of some faces to their specs in other themes. | 6011 | Reset the specs in THEME of some faces to their specs in other themes. |
| 5996 | Each of the arguments ARGS has this form: | 6012 | Each of the arguments ARGS has this form: |
| 5997 | 6013 | ||
| @@ -6001,7 +6017,7 @@ This means reset FACE. The argument IGNORED is ignored. | |||
| 6001 | 6017 | ||
| 6002 | \(fn THEME &rest ARGS)" nil nil) | 6018 | \(fn THEME &rest ARGS)" nil nil) |
| 6003 | 6019 | ||
| 6004 | (autoload (quote custom-reset-faces) "cus-face" "\ | 6020 | (autoload 'custom-reset-faces "cus-face" "\ |
| 6005 | Reset the specs of some faces to their specs in specified themes. | 6021 | Reset the specs of some faces to their specs in specified themes. |
| 6006 | This creates settings in the `user' theme. | 6022 | This creates settings in the `user' theme. |
| 6007 | 6023 | ||
| @@ -6016,10 +6032,10 @@ This means reset FACE to its value in FROM-THEME. | |||
| 6016 | ;;;*** | 6032 | ;;;*** |
| 6017 | 6033 | ||
| 6018 | ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" | 6034 | ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" |
| 6019 | ;;;;;; (18104 24732)) | 6035 | ;;;;;; (18088 55081)) |
| 6020 | ;;; Generated autoloads from cus-theme.el | 6036 | ;;; Generated autoloads from cus-theme.el |
| 6021 | 6037 | ||
| 6022 | (autoload (quote customize-create-theme) "cus-theme" "\ | 6038 | (autoload 'customize-create-theme "cus-theme" "\ |
| 6023 | Create a custom theme. | 6039 | Create a custom theme. |
| 6024 | 6040 | ||
| 6025 | \(fn)" t nil) | 6041 | \(fn)" t nil) |
| @@ -6027,10 +6043,10 @@ Create a custom theme. | |||
| 6027 | ;;;*** | 6043 | ;;;*** |
| 6028 | 6044 | ||
| 6029 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" | 6045 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" |
| 6030 | ;;;;;; (18104 24732)) | 6046 | ;;;;;; (18088 55081)) |
| 6031 | ;;; Generated autoloads from cvs-status.el | 6047 | ;;; Generated autoloads from cvs-status.el |
| 6032 | 6048 | ||
| 6033 | (autoload (quote cvs-status-mode) "cvs-status" "\ | 6049 | (autoload 'cvs-status-mode "cvs-status" "\ |
| 6034 | Mode used for cvs status output. | 6050 | Mode used for cvs status output. |
| 6035 | 6051 | ||
| 6036 | \(fn)" t nil) | 6052 | \(fn)" t nil) |
| @@ -6038,10 +6054,10 @@ Mode used for cvs status output. | |||
| 6038 | ;;;*** | 6054 | ;;;*** |
| 6039 | 6055 | ||
| 6040 | ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) | 6056 | ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) |
| 6041 | ;;;;;; "cwarn" "progmodes/cwarn.el" (18104 24764)) | 6057 | ;;;;;; "cwarn" "progmodes/cwarn.el" (18088 55115)) |
| 6042 | ;;; Generated autoloads from progmodes/cwarn.el | 6058 | ;;; Generated autoloads from progmodes/cwarn.el |
| 6043 | 6059 | ||
| 6044 | (autoload (quote cwarn-mode) "cwarn" "\ | 6060 | (autoload 'cwarn-mode "cwarn" "\ |
| 6045 | Minor mode that highlights suspicious C and C++ constructions. | 6061 | Minor mode that highlights suspicious C and C++ constructions. |
| 6046 | 6062 | ||
| 6047 | Note, in addition to enabling this minor mode, the major mode must | 6063 | Note, in addition to enabling this minor mode, the major mode must |
| @@ -6052,7 +6068,7 @@ With ARG, turn CWarn mode on if and only if arg is positive. | |||
| 6052 | 6068 | ||
| 6053 | \(fn &optional ARG)" t nil) | 6069 | \(fn &optional ARG)" t nil) |
| 6054 | 6070 | ||
| 6055 | (autoload (quote turn-on-cwarn-mode) "cwarn" "\ | 6071 | (autoload 'turn-on-cwarn-mode "cwarn" "\ |
| 6056 | Turn on CWarn mode. | 6072 | Turn on CWarn mode. |
| 6057 | 6073 | ||
| 6058 | This function is designed to be added to hooks, for example: | 6074 | This function is designed to be added to hooks, for example: |
| @@ -6067,9 +6083,9 @@ Setting this variable directly does not take effect; | |||
| 6067 | either customize it (see the info node `Easy Customization') | 6083 | either customize it (see the info node `Easy Customization') |
| 6068 | or call the function `global-cwarn-mode'.") | 6084 | or call the function `global-cwarn-mode'.") |
| 6069 | 6085 | ||
| 6070 | (custom-autoload (quote global-cwarn-mode) "cwarn" nil) | 6086 | (custom-autoload 'global-cwarn-mode "cwarn" nil) |
| 6071 | 6087 | ||
| 6072 | (autoload (quote global-cwarn-mode) "cwarn" "\ | 6088 | (autoload 'global-cwarn-mode "cwarn" "\ |
| 6073 | Toggle Cwarn mode in every possible buffer. | 6089 | Toggle Cwarn mode in every possible buffer. |
| 6074 | With prefix ARG, turn Global-Cwarn mode on if and only if ARG is positive. | 6090 | With prefix ARG, turn Global-Cwarn mode on if and only if ARG is positive. |
| 6075 | Cwarn mode is enabled in all buffers where `turn-on-cwarn-mode-if-enabled' would do it. | 6091 | Cwarn mode is enabled in all buffers where `turn-on-cwarn-mode-if-enabled' would do it. |
| @@ -6081,20 +6097,20 @@ See `cwarn-mode' for more information on Cwarn mode. | |||
| 6081 | 6097 | ||
| 6082 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char | 6098 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char |
| 6083 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" | 6099 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" |
| 6084 | ;;;;;; (18104 24757)) | 6100 | ;;;;;; (18088 55108)) |
| 6085 | ;;; Generated autoloads from language/cyril-util.el | 6101 | ;;; Generated autoloads from language/cyril-util.el |
| 6086 | 6102 | ||
| 6087 | (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ | 6103 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ |
| 6088 | Return KOI8-R external character code of CHAR if appropriate. | 6104 | Return KOI8-R external character code of CHAR if appropriate. |
| 6089 | 6105 | ||
| 6090 | \(fn CHAR)" nil nil) | 6106 | \(fn CHAR)" nil nil) |
| 6091 | 6107 | ||
| 6092 | (autoload (quote cyrillic-encode-alternativnyj-char) "cyril-util" "\ | 6108 | (autoload 'cyrillic-encode-alternativnyj-char "cyril-util" "\ |
| 6093 | Return ALTERNATIVNYJ external character code of CHAR if appropriate. | 6109 | Return ALTERNATIVNYJ external character code of CHAR if appropriate. |
| 6094 | 6110 | ||
| 6095 | \(fn CHAR)" nil nil) | 6111 | \(fn CHAR)" nil nil) |
| 6096 | 6112 | ||
| 6097 | (autoload (quote standard-display-cyrillic-translit) "cyril-util" "\ | 6113 | (autoload 'standard-display-cyrillic-translit "cyril-util" "\ |
| 6098 | Display a cyrillic buffer using a transliteration. | 6114 | Display a cyrillic buffer using a transliteration. |
| 6099 | For readability, the table is slightly | 6115 | For readability, the table is slightly |
| 6100 | different from the one used for the input method `cyrillic-translit'. | 6116 | different from the one used for the input method `cyrillic-translit'. |
| @@ -6110,12 +6126,12 @@ If the argument is nil, we return the display table to its standard state. | |||
| 6110 | ;;;*** | 6126 | ;;;*** |
| 6111 | 6127 | ||
| 6112 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" | 6128 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" |
| 6113 | ;;;;;; (18104 24732)) | 6129 | ;;;;;; (18126 18419)) |
| 6114 | ;;; Generated autoloads from dabbrev.el | 6130 | ;;; Generated autoloads from dabbrev.el |
| 6115 | (define-key esc-map "/" 'dabbrev-expand) | 6131 | (define-key esc-map "/" 'dabbrev-expand) |
| 6116 | (define-key esc-map [?\C-/] 'dabbrev-completion) | 6132 | (define-key esc-map [?\C-/] 'dabbrev-completion) |
| 6117 | 6133 | ||
| 6118 | (autoload (quote dabbrev-completion) "dabbrev" "\ | 6134 | (autoload 'dabbrev-completion "dabbrev" "\ |
| 6119 | Completion on current word. | 6135 | Completion on current word. |
| 6120 | Like \\[dabbrev-expand] but finds all expansions in the current buffer | 6136 | Like \\[dabbrev-expand] but finds all expansions in the current buffer |
| 6121 | and presents suggestions for completion. | 6137 | and presents suggestions for completion. |
| @@ -6129,7 +6145,7 @@ then it searches *all* buffers. | |||
| 6129 | 6145 | ||
| 6130 | \(fn &optional ARG)" t nil) | 6146 | \(fn &optional ARG)" t nil) |
| 6131 | 6147 | ||
| 6132 | (autoload (quote dabbrev-expand) "dabbrev" "\ | 6148 | (autoload 'dabbrev-expand "dabbrev" "\ |
| 6133 | Expand previous word \"dynamically\". | 6149 | Expand previous word \"dynamically\". |
| 6134 | 6150 | ||
| 6135 | Expands to the most recent, preceding word for which this is a prefix. | 6151 | Expands to the most recent, preceding word for which this is a prefix. |
| @@ -6154,11 +6170,11 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. | |||
| 6154 | 6170 | ||
| 6155 | ;;;*** | 6171 | ;;;*** |
| 6156 | 6172 | ||
| 6157 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (18104 | 6173 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (18203 |
| 6158 | ;;;;;; 24764)) | 6174 | ;;;;;; 37789)) |
| 6159 | ;;; Generated autoloads from progmodes/dcl-mode.el | 6175 | ;;; Generated autoloads from progmodes/dcl-mode.el |
| 6160 | 6176 | ||
| 6161 | (autoload (quote dcl-mode) "dcl-mode" "\ | 6177 | (autoload 'dcl-mode "dcl-mode" "\ |
| 6162 | Major mode for editing DCL-files. | 6178 | Major mode for editing DCL-files. |
| 6163 | 6179 | ||
| 6164 | This mode indents command lines in blocks. (A block is commands between | 6180 | This mode indents command lines in blocks. (A block is commands between |
| @@ -6282,12 +6298,12 @@ There is some minimal font-lock support (see vars | |||
| 6282 | ;;;*** | 6298 | ;;;*** |
| 6283 | 6299 | ||
| 6284 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" | 6300 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" |
| 6285 | ;;;;;; "emacs-lisp/debug.el" (18104 24747)) | 6301 | ;;;;;; "emacs-lisp/debug.el" (18197 21672)) |
| 6286 | ;;; Generated autoloads from emacs-lisp/debug.el | 6302 | ;;; Generated autoloads from emacs-lisp/debug.el |
| 6287 | 6303 | ||
| 6288 | (setq debugger (quote debug)) | 6304 | (setq debugger 'debug) |
| 6289 | 6305 | ||
| 6290 | (autoload (quote debug) "debug" "\ | 6306 | (autoload 'debug "debug" "\ |
| 6291 | Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'. | 6307 | Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'. |
| 6292 | Arguments are mainly for use when this is called from the internals | 6308 | Arguments are mainly for use when this is called from the internals |
| 6293 | of the evaluator. | 6309 | of the evaluator. |
| @@ -6298,7 +6314,7 @@ first will be printed into the backtrace buffer. | |||
| 6298 | 6314 | ||
| 6299 | \(fn &rest DEBUGGER-ARGS)" t nil) | 6315 | \(fn &rest DEBUGGER-ARGS)" t nil) |
| 6300 | 6316 | ||
| 6301 | (autoload (quote debug-on-entry) "debug" "\ | 6317 | (autoload 'debug-on-entry "debug" "\ |
| 6302 | Request FUNCTION to invoke debugger each time it is called. | 6318 | Request FUNCTION to invoke debugger each time it is called. |
| 6303 | 6319 | ||
| 6304 | When called interactively, prompt for FUNCTION in the minibuffer. | 6320 | When called interactively, prompt for FUNCTION in the minibuffer. |
| @@ -6315,7 +6331,7 @@ Redefining FUNCTION also cancels it. | |||
| 6315 | 6331 | ||
| 6316 | \(fn FUNCTION)" t nil) | 6332 | \(fn FUNCTION)" t nil) |
| 6317 | 6333 | ||
| 6318 | (autoload (quote cancel-debug-on-entry) "debug" "\ | 6334 | (autoload 'cancel-debug-on-entry "debug" "\ |
| 6319 | Undo effect of \\[debug-on-entry] on FUNCTION. | 6335 | Undo effect of \\[debug-on-entry] on FUNCTION. |
| 6320 | If FUNCTION is nil, cancel debug-on-entry for all functions. | 6336 | If FUNCTION is nil, cancel debug-on-entry for all functions. |
| 6321 | When called interactively, prompt for FUNCTION in the minibuffer. | 6337 | When called interactively, prompt for FUNCTION in the minibuffer. |
| @@ -6326,15 +6342,15 @@ To specify a nil argument interactively, exit with an empty minibuffer. | |||
| 6326 | ;;;*** | 6342 | ;;;*** |
| 6327 | 6343 | ||
| 6328 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" | 6344 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" |
| 6329 | ;;;;;; (18104 24760)) | 6345 | ;;;;;; (18202 4002)) |
| 6330 | ;;; Generated autoloads from play/decipher.el | 6346 | ;;; Generated autoloads from play/decipher.el |
| 6331 | 6347 | ||
| 6332 | (autoload (quote decipher) "decipher" "\ | 6348 | (autoload 'decipher "decipher" "\ |
| 6333 | Format a buffer of ciphertext for cryptanalysis and enter Decipher mode. | 6349 | Format a buffer of ciphertext for cryptanalysis and enter Decipher mode. |
| 6334 | 6350 | ||
| 6335 | \(fn)" t nil) | 6351 | \(fn)" t nil) |
| 6336 | 6352 | ||
| 6337 | (autoload (quote decipher-mode) "decipher" "\ | 6353 | (autoload 'decipher-mode "decipher" "\ |
| 6338 | Major mode for decrypting monoalphabetic substitution ciphers. | 6354 | Major mode for decrypting monoalphabetic substitution ciphers. |
| 6339 | Lower-case letters enter plaintext. | 6355 | Lower-case letters enter plaintext. |
| 6340 | Upper-case letters are commands. | 6356 | Upper-case letters are commands. |
| @@ -6355,23 +6371,23 @@ The most useful commands are: | |||
| 6355 | ;;;*** | 6371 | ;;;*** |
| 6356 | 6372 | ||
| 6357 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region | 6373 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region |
| 6358 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (18104 | 6374 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (18088 |
| 6359 | ;;;;;; 24732)) | 6375 | ;;;;;; 55081)) |
| 6360 | ;;; Generated autoloads from delim-col.el | 6376 | ;;; Generated autoloads from delim-col.el |
| 6361 | 6377 | ||
| 6362 | (autoload (quote delimit-columns-customize) "delim-col" "\ | 6378 | (autoload 'delimit-columns-customize "delim-col" "\ |
| 6363 | Customization of `columns' group. | 6379 | Customization of `columns' group. |
| 6364 | 6380 | ||
| 6365 | \(fn)" t nil) | 6381 | \(fn)" t nil) |
| 6366 | 6382 | ||
| 6367 | (autoload (quote delimit-columns-region) "delim-col" "\ | 6383 | (autoload 'delimit-columns-region "delim-col" "\ |
| 6368 | Prettify all columns in a text region. | 6384 | Prettify all columns in a text region. |
| 6369 | 6385 | ||
| 6370 | START and END delimits the text region. | 6386 | START and END delimits the text region. |
| 6371 | 6387 | ||
| 6372 | \(fn START END)" t nil) | 6388 | \(fn START END)" t nil) |
| 6373 | 6389 | ||
| 6374 | (autoload (quote delimit-columns-rectangle) "delim-col" "\ | 6390 | (autoload 'delimit-columns-rectangle "delim-col" "\ |
| 6375 | Prettify all columns in a text rectangle. | 6391 | Prettify all columns in a text rectangle. |
| 6376 | 6392 | ||
| 6377 | START and END delimits the corners of text rectangle. | 6393 | START and END delimits the corners of text rectangle. |
| @@ -6380,11 +6396,11 @@ START and END delimits the corners of text rectangle. | |||
| 6380 | 6396 | ||
| 6381 | ;;;*** | 6397 | ;;;*** |
| 6382 | 6398 | ||
| 6383 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (18104 | 6399 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (18200 |
| 6384 | ;;;;;; 24765)) | 6400 | ;;;;;; 51266)) |
| 6385 | ;;; Generated autoloads from progmodes/delphi.el | 6401 | ;;; Generated autoloads from progmodes/delphi.el |
| 6386 | 6402 | ||
| 6387 | (autoload (quote delphi-mode) "delphi" "\ | 6403 | (autoload 'delphi-mode "delphi" "\ |
| 6388 | Major mode for editing Delphi code. \\<delphi-mode-map> | 6404 | Major mode for editing Delphi code. \\<delphi-mode-map> |
| 6389 | \\[delphi-tab] - Indents the current line for Delphi code. | 6405 | \\[delphi-tab] - Indents the current line for Delphi code. |
| 6390 | \\[delphi-find-unit] - Search for a Delphi source file. | 6406 | \\[delphi-find-unit] - Search for a Delphi source file. |
| @@ -6431,11 +6447,11 @@ no args, if that value is non-nil. | |||
| 6431 | 6447 | ||
| 6432 | ;;;*** | 6448 | ;;;*** |
| 6433 | 6449 | ||
| 6434 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (18104 | 6450 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (18186 |
| 6435 | ;;;;;; 24732)) | 6451 | ;;;;;; 14736)) |
| 6436 | ;;; Generated autoloads from delsel.el | 6452 | ;;; Generated autoloads from delsel.el |
| 6437 | 6453 | ||
| 6438 | (defalias (quote pending-delete-mode) (quote delete-selection-mode)) | 6454 | (defalias 'pending-delete-mode 'delete-selection-mode) |
| 6439 | 6455 | ||
| 6440 | (defvar delete-selection-mode nil "\ | 6456 | (defvar delete-selection-mode nil "\ |
| 6441 | Non-nil if Delete-Selection mode is enabled. | 6457 | Non-nil if Delete-Selection mode is enabled. |
| @@ -6444,9 +6460,9 @@ Setting this variable directly does not take effect; | |||
| 6444 | either customize it (see the info node `Easy Customization') | 6460 | either customize it (see the info node `Easy Customization') |
| 6445 | or call the function `delete-selection-mode'.") | 6461 | or call the function `delete-selection-mode'.") |
| 6446 | 6462 | ||
| 6447 | (custom-autoload (quote delete-selection-mode) "delsel" nil) | 6463 | (custom-autoload 'delete-selection-mode "delsel" nil) |
| 6448 | 6464 | ||
| 6449 | (autoload (quote delete-selection-mode) "delsel" "\ | 6465 | (autoload 'delete-selection-mode "delsel" "\ |
| 6450 | Toggle Delete Selection mode. | 6466 | Toggle Delete Selection mode. |
| 6451 | With prefix ARG, turn Delete Selection mode on if and only if ARG is | 6467 | With prefix ARG, turn Delete Selection mode on if and only if ARG is |
| 6452 | positive. | 6468 | positive. |
| @@ -6461,10 +6477,10 @@ any selection. | |||
| 6461 | ;;;*** | 6477 | ;;;*** |
| 6462 | 6478 | ||
| 6463 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) | 6479 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) |
| 6464 | ;;;;;; "derived" "emacs-lisp/derived.el" (18104 24747)) | 6480 | ;;;;;; "derived" "emacs-lisp/derived.el" (18088 55095)) |
| 6465 | ;;; Generated autoloads from emacs-lisp/derived.el | 6481 | ;;; Generated autoloads from emacs-lisp/derived.el |
| 6466 | 6482 | ||
| 6467 | (autoload (quote define-derived-mode) "derived" "\ | 6483 | (autoload 'define-derived-mode "derived" "\ |
| 6468 | Create a new mode as a variant of an existing mode. | 6484 | Create a new mode as a variant of an existing mode. |
| 6469 | 6485 | ||
| 6470 | The arguments to this command are as follow: | 6486 | The arguments to this command are as follow: |
| @@ -6515,7 +6531,7 @@ See Info node `(elisp)Derived Modes' for more details. | |||
| 6515 | 6531 | ||
| 6516 | \(fn CHILD PARENT NAME &optional DOCSTRING &rest BODY)" nil (quote macro)) | 6532 | \(fn CHILD PARENT NAME &optional DOCSTRING &rest BODY)" nil (quote macro)) |
| 6517 | 6533 | ||
| 6518 | (autoload (quote derived-mode-init-mode-variables) "derived" "\ | 6534 | (autoload 'derived-mode-init-mode-variables "derived" "\ |
| 6519 | Initialize variables for a new MODE. | 6535 | Initialize variables for a new MODE. |
| 6520 | Right now, if they don't already exist, set up a blank keymap, an | 6536 | Right now, if they don't already exist, set up a blank keymap, an |
| 6521 | empty syntax table, and an empty abbrev table -- these will be merged | 6537 | empty syntax table, and an empty abbrev table -- these will be merged |
| @@ -6526,10 +6542,10 @@ the first time the mode is used. | |||
| 6526 | ;;;*** | 6542 | ;;;*** |
| 6527 | 6543 | ||
| 6528 | ;;;### (autoloads (describe-char describe-text-properties) "descr-text" | 6544 | ;;;### (autoloads (describe-char describe-text-properties) "descr-text" |
| 6529 | ;;;;;; "descr-text.el" (18104 24732)) | 6545 | ;;;;;; "descr-text.el" (18088 55081)) |
| 6530 | ;;; Generated autoloads from descr-text.el | 6546 | ;;; Generated autoloads from descr-text.el |
| 6531 | 6547 | ||
| 6532 | (autoload (quote describe-text-properties) "descr-text" "\ | 6548 | (autoload 'describe-text-properties "descr-text" "\ |
| 6533 | Describe widgets, buttons, overlays and text properties at POS. | 6549 | Describe widgets, buttons, overlays and text properties at POS. |
| 6534 | Interactively, describe them for the character after point. | 6550 | Interactively, describe them for the character after point. |
| 6535 | If optional second argument OUTPUT-BUFFER is non-nil, | 6551 | If optional second argument OUTPUT-BUFFER is non-nil, |
| @@ -6538,7 +6554,7 @@ otherwise. | |||
| 6538 | 6554 | ||
| 6539 | \(fn POS &optional OUTPUT-BUFFER)" t nil) | 6555 | \(fn POS &optional OUTPUT-BUFFER)" t nil) |
| 6540 | 6556 | ||
| 6541 | (autoload (quote describe-char) "descr-text" "\ | 6557 | (autoload 'describe-char "descr-text" "\ |
| 6542 | Describe the character after POS (interactively, the character after point). | 6558 | Describe the character after POS (interactively, the character after point). |
| 6543 | The information includes character code, charset and code points in it, | 6559 | The information includes character code, charset and code points in it, |
| 6544 | syntax, category, how the character is encoded in a file, | 6560 | syntax, category, how the character is encoded in a file, |
| @@ -6552,16 +6568,16 @@ as well as widgets, buttons, overlays, and text properties. | |||
| 6552 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir | 6568 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir |
| 6553 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save | 6569 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save |
| 6554 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" | 6570 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" |
| 6555 | ;;;;;; "desktop.el" (18104 24732)) | 6571 | ;;;;;; "desktop.el" (18211 32385)) |
| 6556 | ;;; Generated autoloads from desktop.el | 6572 | ;;; Generated autoloads from desktop.el |
| 6557 | 6573 | ||
| 6558 | (defvar desktop-save-mode nil "\ | 6574 | (defvar desktop-save-mode nil "\ |
| 6559 | Non-nil if Desktop-Save mode is enabled. | 6575 | Non-nil if Desktop-Save mode is enabled. |
| 6560 | See the command `desktop-save-mode' for a description of this minor mode.") | 6576 | See the command `desktop-save-mode' for a description of this minor mode.") |
| 6561 | 6577 | ||
| 6562 | (custom-autoload (quote desktop-save-mode) "desktop" nil) | 6578 | (custom-autoload 'desktop-save-mode "desktop" nil) |
| 6563 | 6579 | ||
| 6564 | (autoload (quote desktop-save-mode) "desktop" "\ | 6580 | (autoload 'desktop-save-mode "desktop" "\ |
| 6565 | Toggle desktop saving mode. | 6581 | Toggle desktop saving mode. |
| 6566 | With numeric ARG, turn desktop saving on if ARG is positive, off | 6582 | With numeric ARG, turn desktop saving on if ARG is positive, off |
| 6567 | otherwise. If desktop saving is turned on, the state of Emacs is | 6583 | otherwise. If desktop saving is turned on, the state of Emacs is |
| @@ -6570,12 +6586,12 @@ and function `desktop-read' for details. | |||
| 6570 | 6586 | ||
| 6571 | \(fn &optional ARG)" t nil) | 6587 | \(fn &optional ARG)" t nil) |
| 6572 | 6588 | ||
| 6573 | (defvar desktop-locals-to-save (quote (desktop-locals-to-save truncate-lines case-fold-search case-replace fill-column overwrite-mode change-log-default-name line-number-mode column-number-mode size-indication-mode buffer-file-coding-system indent-tabs-mode tab-width indicate-buffer-boundaries indicate-empty-lines show-trailing-whitespace)) "\ | 6589 | (defvar desktop-locals-to-save '(desktop-locals-to-save truncate-lines case-fold-search case-replace fill-column overwrite-mode change-log-default-name line-number-mode column-number-mode size-indication-mode buffer-file-coding-system indent-tabs-mode tab-width indicate-buffer-boundaries indicate-empty-lines show-trailing-whitespace) "\ |
| 6574 | List of local variables to save for each buffer. | 6590 | List of local variables to save for each buffer. |
| 6575 | The variables are saved only when they really are local. Conventional minor | 6591 | The variables are saved only when they really are local. Conventional minor |
| 6576 | modes are restored automatically; they should not be listed here.") | 6592 | modes are restored automatically; they should not be listed here.") |
| 6577 | 6593 | ||
| 6578 | (custom-autoload (quote desktop-locals-to-save) "desktop" t) | 6594 | (custom-autoload 'desktop-locals-to-save "desktop" t) |
| 6579 | 6595 | ||
| 6580 | (defvar desktop-save-buffer nil "\ | 6596 | (defvar desktop-save-buffer nil "\ |
| 6581 | When non-nil, save buffer status in desktop file. | 6597 | When non-nil, save buffer status in desktop file. |
| @@ -6629,7 +6645,7 @@ code like | |||
| 6629 | 6645 | ||
| 6630 | Furthermore the major mode function must be autoloaded.") | 6646 | Furthermore the major mode function must be autoloaded.") |
| 6631 | 6647 | ||
| 6632 | (put (quote desktop-buffer-mode-handlers) (quote risky-local-variable) t) | 6648 | (put 'desktop-buffer-mode-handlers 'risky-local-variable t) |
| 6633 | 6649 | ||
| 6634 | (defvar desktop-minor-mode-handlers nil "\ | 6650 | (defvar desktop-minor-mode-handlers nil "\ |
| 6635 | Alist of functions to restore non-standard minor modes. | 6651 | Alist of functions to restore non-standard minor modes. |
| @@ -6673,9 +6689,9 @@ Furthermore the minor mode function must be autoloaded. | |||
| 6673 | 6689 | ||
| 6674 | See also `desktop-minor-mode-table'.") | 6690 | See also `desktop-minor-mode-table'.") |
| 6675 | 6691 | ||
| 6676 | (put (quote desktop-minor-mode-handlers) (quote risky-local-variable) t) | 6692 | (put 'desktop-minor-mode-handlers 'risky-local-variable t) |
| 6677 | 6693 | ||
| 6678 | (autoload (quote desktop-clear) "desktop" "\ | 6694 | (autoload 'desktop-clear "desktop" "\ |
| 6679 | Empty the Desktop. | 6695 | Empty the Desktop. |
| 6680 | This kills all buffers except for internal ones and those with names matched by | 6696 | This kills all buffers except for internal ones and those with names matched by |
| 6681 | a regular expression in the list `desktop-clear-preserve-buffers'. | 6697 | a regular expression in the list `desktop-clear-preserve-buffers'. |
| @@ -6683,7 +6699,7 @@ Furthermore, it clears the variables listed in `desktop-globals-to-clear'. | |||
| 6683 | 6699 | ||
| 6684 | \(fn)" t nil) | 6700 | \(fn)" t nil) |
| 6685 | 6701 | ||
| 6686 | (autoload (quote desktop-save) "desktop" "\ | 6702 | (autoload 'desktop-save "desktop" "\ |
| 6687 | Save the desktop in a desktop file. | 6703 | Save the desktop in a desktop file. |
| 6688 | Parameter DIRNAME specifies where to save the desktop file. | 6704 | Parameter DIRNAME specifies where to save the desktop file. |
| 6689 | Optional parameter RELEASE says whether we're done with this desktop. | 6705 | Optional parameter RELEASE says whether we're done with this desktop. |
| @@ -6691,13 +6707,13 @@ See also `desktop-base-file-name'. | |||
| 6691 | 6707 | ||
| 6692 | \(fn DIRNAME &optional RELEASE)" t nil) | 6708 | \(fn DIRNAME &optional RELEASE)" t nil) |
| 6693 | 6709 | ||
| 6694 | (autoload (quote desktop-remove) "desktop" "\ | 6710 | (autoload 'desktop-remove "desktop" "\ |
| 6695 | Delete desktop file in `desktop-dirname'. | 6711 | Delete desktop file in `desktop-dirname'. |
| 6696 | This function also sets `desktop-dirname' to nil. | 6712 | This function also sets `desktop-dirname' to nil. |
| 6697 | 6713 | ||
| 6698 | \(fn)" t nil) | 6714 | \(fn)" t nil) |
| 6699 | 6715 | ||
| 6700 | (autoload (quote desktop-read) "desktop" "\ | 6716 | (autoload 'desktop-read "desktop" "\ |
| 6701 | Read and process the desktop file in directory DIRNAME. | 6717 | Read and process the desktop file in directory DIRNAME. |
| 6702 | Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in | 6718 | Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in |
| 6703 | directories listed in `desktop-path'. If a desktop file is found, it | 6719 | directories listed in `desktop-path'. If a desktop file is found, it |
| @@ -6708,13 +6724,13 @@ It returns t if a desktop file was loaded, nil otherwise. | |||
| 6708 | 6724 | ||
| 6709 | \(fn &optional DIRNAME)" t nil) | 6725 | \(fn &optional DIRNAME)" t nil) |
| 6710 | 6726 | ||
| 6711 | (autoload (quote desktop-load-default) "desktop" "\ | 6727 | (autoload 'desktop-load-default "desktop" "\ |
| 6712 | Load the `default' start-up library manually. | 6728 | Load the `default' start-up library manually. |
| 6713 | Also inhibit further loading of it. | 6729 | Also inhibit further loading of it. |
| 6714 | 6730 | ||
| 6715 | \(fn)" nil nil) | 6731 | \(fn)" nil nil) |
| 6716 | 6732 | ||
| 6717 | (autoload (quote desktop-change-dir) "desktop" "\ | 6733 | (autoload 'desktop-change-dir "desktop" "\ |
| 6718 | Change to desktop saved in DIRNAME. | 6734 | Change to desktop saved in DIRNAME. |
| 6719 | Kill the desktop as specified by variables `desktop-save-mode' and | 6735 | Kill the desktop as specified by variables `desktop-save-mode' and |
| 6720 | `desktop-save', then clear the desktop and load the desktop file in | 6736 | `desktop-save', then clear the desktop and load the desktop file in |
| @@ -6722,12 +6738,12 @@ directory DIRNAME. | |||
| 6722 | 6738 | ||
| 6723 | \(fn DIRNAME)" t nil) | 6739 | \(fn DIRNAME)" t nil) |
| 6724 | 6740 | ||
| 6725 | (autoload (quote desktop-save-in-desktop-dir) "desktop" "\ | 6741 | (autoload 'desktop-save-in-desktop-dir "desktop" "\ |
| 6726 | Save the desktop in directory `desktop-dirname'. | 6742 | Save the desktop in directory `desktop-dirname'. |
| 6727 | 6743 | ||
| 6728 | \(fn)" t nil) | 6744 | \(fn)" t nil) |
| 6729 | 6745 | ||
| 6730 | (autoload (quote desktop-revert) "desktop" "\ | 6746 | (autoload 'desktop-revert "desktop" "\ |
| 6731 | Revert to the last loaded desktop. | 6747 | Revert to the last loaded desktop. |
| 6732 | 6748 | ||
| 6733 | \(fn)" t nil) | 6749 | \(fn)" t nil) |
| @@ -6736,10 +6752,10 @@ Revert to the last loaded desktop. | |||
| 6736 | 6752 | ||
| 6737 | ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article | 6753 | ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article |
| 6738 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) | 6754 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) |
| 6739 | ;;;;;; "deuglify" "gnus/deuglify.el" (18104 24750)) | 6755 | ;;;;;; "deuglify" "gnus/deuglify.el" (18212 46006)) |
| 6740 | ;;; Generated autoloads from gnus/deuglify.el | 6756 | ;;; Generated autoloads from gnus/deuglify.el |
| 6741 | 6757 | ||
| 6742 | (autoload (quote gnus-article-outlook-unwrap-lines) "deuglify" "\ | 6758 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ |
| 6743 | Unwrap lines that appear to be wrapped citation lines. | 6759 | Unwrap lines that appear to be wrapped citation lines. |
| 6744 | You can control what lines will be unwrapped by frobbing | 6760 | You can control what lines will be unwrapped by frobbing |
| 6745 | `gnus-outlook-deuglify-unwrap-min' and `gnus-outlook-deuglify-unwrap-max', | 6761 | `gnus-outlook-deuglify-unwrap-min' and `gnus-outlook-deuglify-unwrap-max', |
| @@ -6748,20 +6764,20 @@ NODISPLAY is non-nil, don't redisplay the article buffer. | |||
| 6748 | 6764 | ||
| 6749 | \(fn &optional NODISPLAY)" t nil) | 6765 | \(fn &optional NODISPLAY)" t nil) |
| 6750 | 6766 | ||
| 6751 | (autoload (quote gnus-article-outlook-repair-attribution) "deuglify" "\ | 6767 | (autoload 'gnus-article-outlook-repair-attribution "deuglify" "\ |
| 6752 | Repair a broken attribution line. | 6768 | Repair a broken attribution line. |
| 6753 | If NODISPLAY is non-nil, don't redisplay the article buffer. | 6769 | If NODISPLAY is non-nil, don't redisplay the article buffer. |
| 6754 | 6770 | ||
| 6755 | \(fn &optional NODISPLAY)" t nil) | 6771 | \(fn &optional NODISPLAY)" t nil) |
| 6756 | 6772 | ||
| 6757 | (autoload (quote gnus-outlook-deuglify-article) "deuglify" "\ | 6773 | (autoload 'gnus-outlook-deuglify-article "deuglify" "\ |
| 6758 | Full deuglify of broken Outlook (Express) articles. | 6774 | Full deuglify of broken Outlook (Express) articles. |
| 6759 | Treat dumbquotes, unwrap lines, repair attribution and rearrange citation. If | 6775 | Treat dumbquotes, unwrap lines, repair attribution and rearrange citation. If |
| 6760 | NODISPLAY is non-nil, don't redisplay the article buffer. | 6776 | NODISPLAY is non-nil, don't redisplay the article buffer. |
| 6761 | 6777 | ||
| 6762 | \(fn &optional NODISPLAY)" t nil) | 6778 | \(fn &optional NODISPLAY)" t nil) |
| 6763 | 6779 | ||
| 6764 | (autoload (quote gnus-article-outlook-deuglify-article) "deuglify" "\ | 6780 | (autoload 'gnus-article-outlook-deuglify-article "deuglify" "\ |
| 6765 | Deuglify broken Outlook (Express) articles and redisplay. | 6781 | Deuglify broken Outlook (Express) articles and redisplay. |
| 6766 | 6782 | ||
| 6767 | \(fn)" t nil) | 6783 | \(fn)" t nil) |
| @@ -6769,17 +6785,17 @@ Deuglify broken Outlook (Express) articles and redisplay. | |||
| 6769 | ;;;*** | 6785 | ;;;*** |
| 6770 | 6786 | ||
| 6771 | ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) | 6787 | ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) |
| 6772 | ;;;;;; "devan-util" "language/devan-util.el" (18104 24757)) | 6788 | ;;;;;; "devan-util" "language/devan-util.el" (18088 55109)) |
| 6773 | ;;; Generated autoloads from language/devan-util.el | 6789 | ;;; Generated autoloads from language/devan-util.el |
| 6774 | 6790 | ||
| 6775 | (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") | 6791 | (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") |
| 6776 | 6792 | ||
| 6777 | (autoload (quote devanagari-compose-region) "devan-util" "\ | 6793 | (autoload 'devanagari-compose-region "devan-util" "\ |
| 6778 | Not documented | 6794 | Not documented |
| 6779 | 6795 | ||
| 6780 | \(fn FROM TO)" t nil) | 6796 | \(fn FROM TO)" t nil) |
| 6781 | 6797 | ||
| 6782 | (autoload (quote devanagari-post-read-conversion) "devan-util" "\ | 6798 | (autoload 'devanagari-post-read-conversion "devan-util" "\ |
| 6783 | Not documented | 6799 | Not documented |
| 6784 | 6800 | ||
| 6785 | \(fn LEN)" nil nil) | 6801 | \(fn LEN)" nil nil) |
| @@ -6787,10 +6803,10 @@ Not documented | |||
| 6787 | ;;;*** | 6803 | ;;;*** |
| 6788 | 6804 | ||
| 6789 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" | 6805 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" |
| 6790 | ;;;;;; "calendar/diary-lib.el" (18104 24745)) | 6806 | ;;;;;; "calendar/diary-lib.el" (18157 34340)) |
| 6791 | ;;; Generated autoloads from calendar/diary-lib.el | 6807 | ;;; Generated autoloads from calendar/diary-lib.el |
| 6792 | 6808 | ||
| 6793 | (autoload (quote diary) "diary-lib" "\ | 6809 | (autoload 'diary "diary-lib" "\ |
| 6794 | Generate the diary window for ARG days starting with the current date. | 6810 | Generate the diary window for ARG days starting with the current date. |
| 6795 | If no argument is provided, the number of days of diary entries is governed | 6811 | If no argument is provided, the number of days of diary entries is governed |
| 6796 | by the variable `number-of-diary-entries'. A value of ARG less than 1 | 6812 | by the variable `number-of-diary-entries'. A value of ARG less than 1 |
| @@ -6798,7 +6814,7 @@ does nothing. This function is suitable for execution in a `.emacs' file. | |||
| 6798 | 6814 | ||
| 6799 | \(fn &optional ARG)" t nil) | 6815 | \(fn &optional ARG)" t nil) |
| 6800 | 6816 | ||
| 6801 | (autoload (quote diary-mail-entries) "diary-lib" "\ | 6817 | (autoload 'diary-mail-entries "diary-lib" "\ |
| 6802 | Send a mail message showing diary entries for next NDAYS days. | 6818 | Send a mail message showing diary entries for next NDAYS days. |
| 6803 | If no prefix argument is given, NDAYS is set to `diary-mail-days'. | 6819 | If no prefix argument is given, NDAYS is set to `diary-mail-days'. |
| 6804 | Mail is sent to the address specified by `diary-mail-addr'. | 6820 | Mail is sent to the address specified by `diary-mail-addr'. |
| @@ -6825,7 +6841,7 @@ to run it every morning at 1am. | |||
| 6825 | 6841 | ||
| 6826 | \(fn &optional NDAYS)" t nil) | 6842 | \(fn &optional NDAYS)" t nil) |
| 6827 | 6843 | ||
| 6828 | (autoload (quote diary-mode) "diary-lib" "\ | 6844 | (autoload 'diary-mode "diary-lib" "\ |
| 6829 | Major mode for editing the diary file. | 6845 | Major mode for editing the diary file. |
| 6830 | 6846 | ||
| 6831 | \(fn)" t nil) | 6847 | \(fn)" t nil) |
| @@ -6833,20 +6849,20 @@ Major mode for editing the diary file. | |||
| 6833 | ;;;*** | 6849 | ;;;*** |
| 6834 | 6850 | ||
| 6835 | ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" | 6851 | ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" |
| 6836 | ;;;;;; "diff.el" (18104 24733)) | 6852 | ;;;;;; "diff.el" (18210 30826)) |
| 6837 | ;;; Generated autoloads from diff.el | 6853 | ;;; Generated autoloads from diff.el |
| 6838 | 6854 | ||
| 6839 | (defvar diff-switches "-c" "\ | 6855 | (defvar diff-switches "-c" "\ |
| 6840 | *A string or list of strings specifying switches to be passed to diff.") | 6856 | *A string or list of strings specifying switches to be passed to diff.") |
| 6841 | 6857 | ||
| 6842 | (custom-autoload (quote diff-switches) "diff" t) | 6858 | (custom-autoload 'diff-switches "diff" t) |
| 6843 | 6859 | ||
| 6844 | (defvar diff-command "diff" "\ | 6860 | (defvar diff-command "diff" "\ |
| 6845 | *The command to use to run diff.") | 6861 | *The command to use to run diff.") |
| 6846 | 6862 | ||
| 6847 | (custom-autoload (quote diff-command) "diff" t) | 6863 | (custom-autoload 'diff-command "diff" t) |
| 6848 | 6864 | ||
| 6849 | (autoload (quote diff) "diff" "\ | 6865 | (autoload 'diff "diff" "\ |
| 6850 | Find and display the differences between OLD and NEW files. | 6866 | Find and display the differences between OLD and NEW files. |
| 6851 | Interactively the current buffer's file name is the default for NEW | 6867 | Interactively the current buffer's file name is the default for NEW |
| 6852 | and a backup file for NEW is the default for OLD. | 6868 | and a backup file for NEW is the default for OLD. |
| @@ -6855,7 +6871,7 @@ With prefix arg, prompt for diff switches. | |||
| 6855 | 6871 | ||
| 6856 | \(fn OLD NEW &optional SWITCHES NO-ASYNC)" t nil) | 6872 | \(fn OLD NEW &optional SWITCHES NO-ASYNC)" t nil) |
| 6857 | 6873 | ||
| 6858 | (autoload (quote diff-backup) "diff" "\ | 6874 | (autoload 'diff-backup "diff" "\ |
| 6859 | Diff this file with its backup file or vice versa. | 6875 | Diff this file with its backup file or vice versa. |
| 6860 | Uses the latest backup, if there are several numerical backups. | 6876 | Uses the latest backup, if there are several numerical backups. |
| 6861 | If this file is a backup, diff it with its original. | 6877 | If this file is a backup, diff it with its original. |
| @@ -6867,10 +6883,10 @@ With prefix arg, prompt for diff switches. | |||
| 6867 | ;;;*** | 6883 | ;;;*** |
| 6868 | 6884 | ||
| 6869 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" | 6885 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" |
| 6870 | ;;;;;; (18104 24733)) | 6886 | ;;;;;; (18203 37786)) |
| 6871 | ;;; Generated autoloads from diff-mode.el | 6887 | ;;; Generated autoloads from diff-mode.el |
| 6872 | 6888 | ||
| 6873 | (autoload (quote diff-mode) "diff-mode" "\ | 6889 | (autoload 'diff-mode "diff-mode" "\ |
| 6874 | Major mode for viewing/editing context diffs. | 6890 | Major mode for viewing/editing context diffs. |
| 6875 | Supports unified and context diffs as well as (to a lesser extent) | 6891 | Supports unified and context diffs as well as (to a lesser extent) |
| 6876 | normal diffs. | 6892 | normal diffs. |
| @@ -6887,7 +6903,7 @@ a diff with \\[diff-reverse-direction]. | |||
| 6887 | 6903 | ||
| 6888 | \(fn)" t nil) | 6904 | \(fn)" t nil) |
| 6889 | 6905 | ||
| 6890 | (autoload (quote diff-minor-mode) "diff-mode" "\ | 6906 | (autoload 'diff-minor-mode "diff-mode" "\ |
| 6891 | Minor mode for viewing/editing context diffs. | 6907 | Minor mode for viewing/editing context diffs. |
| 6892 | \\{diff-minor-mode-map} | 6908 | \\{diff-minor-mode-map} |
| 6893 | 6909 | ||
| @@ -6899,7 +6915,7 @@ Minor mode for viewing/editing context diffs. | |||
| 6899 | ;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink | 6915 | ;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink |
| 6900 | ;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename | 6916 | ;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename |
| 6901 | ;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) | 6917 | ;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) |
| 6902 | ;;;;;; "dired" "dired.el" (18104 24733)) | 6918 | ;;;;;; "dired" "dired.el" (18200 51263)) |
| 6903 | ;;; Generated autoloads from dired.el | 6919 | ;;; Generated autoloads from dired.el |
| 6904 | 6920 | ||
| 6905 | (defvar dired-listing-switches "-al" "\ | 6921 | (defvar dired-listing-switches "-al" "\ |
| @@ -6911,9 +6927,9 @@ On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp, | |||
| 6911 | some of the `ls' switches are not supported; see the doc string of | 6927 | some of the `ls' switches are not supported; see the doc string of |
| 6912 | `insert-directory' in `ls-lisp.el' for more details.") | 6928 | `insert-directory' in `ls-lisp.el' for more details.") |
| 6913 | 6929 | ||
| 6914 | (custom-autoload (quote dired-listing-switches) "dired" t) | 6930 | (custom-autoload 'dired-listing-switches "dired" t) |
| 6915 | 6931 | ||
| 6916 | (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v irix linux gnu/linux cygwin))) "chown" (if (file-exists-p "/usr/sbin/chown") "/usr/sbin/chown" "/etc/chown")) "\ | 6932 | (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v irix linux gnu/linux cygwin)) "chown" (if (file-exists-p "/usr/sbin/chown") "/usr/sbin/chown" "/etc/chown")) "\ |
| 6917 | Name of chown command (usually `chown' or `/etc/chown').") | 6933 | Name of chown command (usually `chown' or `/etc/chown').") |
| 6918 | 6934 | ||
| 6919 | (defvar dired-ls-F-marks-symlinks nil "\ | 6935 | (defvar dired-ls-F-marks-symlinks nil "\ |
| @@ -6930,14 +6946,14 @@ marking `ls' program on one host and a non-marking on another host, and | |||
| 6930 | don't care about symbolic links which really end in a @, you can | 6946 | don't care about symbolic links which really end in a @, you can |
| 6931 | always set this variable to t.") | 6947 | always set this variable to t.") |
| 6932 | 6948 | ||
| 6933 | (custom-autoload (quote dired-ls-F-marks-symlinks) "dired" t) | 6949 | (custom-autoload 'dired-ls-F-marks-symlinks "dired" t) |
| 6934 | 6950 | ||
| 6935 | (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\ | 6951 | (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\ |
| 6936 | *Regexp of files to skip when finding first file of a directory. | 6952 | *Regexp of files to skip when finding first file of a directory. |
| 6937 | A value of nil means move to the subdir line. | 6953 | A value of nil means move to the subdir line. |
| 6938 | A value of t means move to first file.") | 6954 | A value of t means move to first file.") |
| 6939 | 6955 | ||
| 6940 | (custom-autoload (quote dired-trivial-filenames) "dired" t) | 6956 | (custom-autoload 'dired-trivial-filenames "dired" t) |
| 6941 | 6957 | ||
| 6942 | (defvar dired-keep-marker-rename t "\ | 6958 | (defvar dired-keep-marker-rename t "\ |
| 6943 | *Controls marking of renamed files. | 6959 | *Controls marking of renamed files. |
| @@ -6945,28 +6961,28 @@ If t, files keep their previous marks when they are renamed. | |||
| 6945 | If a character, renamed files (whether previously marked or not) | 6961 | If a character, renamed files (whether previously marked or not) |
| 6946 | are afterward marked with that character.") | 6962 | are afterward marked with that character.") |
| 6947 | 6963 | ||
| 6948 | (custom-autoload (quote dired-keep-marker-rename) "dired" t) | 6964 | (custom-autoload 'dired-keep-marker-rename "dired" t) |
| 6949 | 6965 | ||
| 6950 | (defvar dired-keep-marker-copy 67 "\ | 6966 | (defvar dired-keep-marker-copy 67 "\ |
| 6951 | *Controls marking of copied files. | 6967 | *Controls marking of copied files. |
| 6952 | If t, copied files are marked if and as the corresponding original files were. | 6968 | If t, copied files are marked if and as the corresponding original files were. |
| 6953 | If a character, copied files are unconditionally marked with that character.") | 6969 | If a character, copied files are unconditionally marked with that character.") |
| 6954 | 6970 | ||
| 6955 | (custom-autoload (quote dired-keep-marker-copy) "dired" t) | 6971 | (custom-autoload 'dired-keep-marker-copy "dired" t) |
| 6956 | 6972 | ||
| 6957 | (defvar dired-keep-marker-hardlink 72 "\ | 6973 | (defvar dired-keep-marker-hardlink 72 "\ |
| 6958 | *Controls marking of newly made hard links. | 6974 | *Controls marking of newly made hard links. |
| 6959 | If t, they are marked if and as the files linked to were marked. | 6975 | If t, they are marked if and as the files linked to were marked. |
| 6960 | If a character, new links are unconditionally marked with that character.") | 6976 | If a character, new links are unconditionally marked with that character.") |
| 6961 | 6977 | ||
| 6962 | (custom-autoload (quote dired-keep-marker-hardlink) "dired" t) | 6978 | (custom-autoload 'dired-keep-marker-hardlink "dired" t) |
| 6963 | 6979 | ||
| 6964 | (defvar dired-keep-marker-symlink 89 "\ | 6980 | (defvar dired-keep-marker-symlink 89 "\ |
| 6965 | *Controls marking of newly made symbolic links. | 6981 | *Controls marking of newly made symbolic links. |
| 6966 | If t, they are marked if and as the files linked to were marked. | 6982 | If t, they are marked if and as the files linked to were marked. |
| 6967 | If a character, new links are unconditionally marked with that character.") | 6983 | If a character, new links are unconditionally marked with that character.") |
| 6968 | 6984 | ||
| 6969 | (custom-autoload (quote dired-keep-marker-symlink) "dired" t) | 6985 | (custom-autoload 'dired-keep-marker-symlink "dired" t) |
| 6970 | 6986 | ||
| 6971 | (defvar dired-dwim-target nil "\ | 6987 | (defvar dired-dwim-target nil "\ |
| 6972 | *If non-nil, Dired tries to guess a default target directory. | 6988 | *If non-nil, Dired tries to guess a default target directory. |
| @@ -6975,13 +6991,13 @@ use its current subdir, instead of the current subdir of this dired buffer. | |||
| 6975 | 6991 | ||
| 6976 | The target is used in the prompt for file copy, rename etc.") | 6992 | The target is used in the prompt for file copy, rename etc.") |
| 6977 | 6993 | ||
| 6978 | (custom-autoload (quote dired-dwim-target) "dired" t) | 6994 | (custom-autoload 'dired-dwim-target "dired" t) |
| 6979 | 6995 | ||
| 6980 | (defvar dired-copy-preserve-time t "\ | 6996 | (defvar dired-copy-preserve-time t "\ |
| 6981 | *If non-nil, Dired preserves the last-modified time in a file copy. | 6997 | *If non-nil, Dired preserves the last-modified time in a file copy. |
| 6982 | \(This works on only some systems.)") | 6998 | \(This works on only some systems.)") |
| 6983 | 6999 | ||
| 6984 | (custom-autoload (quote dired-copy-preserve-time) "dired" t) | 7000 | (custom-autoload 'dired-copy-preserve-time "dired" t) |
| 6985 | 7001 | ||
| 6986 | (defvar dired-directory nil "\ | 7002 | (defvar dired-directory nil "\ |
| 6987 | The directory name or wildcard spec that this dired directory lists. | 7003 | The directory name or wildcard spec that this dired directory lists. |
| @@ -6990,7 +7006,7 @@ directory name and the cdr is the list of files to mention. | |||
| 6990 | The directory name must be absolute, but need not be fully expanded.") | 7006 | The directory name must be absolute, but need not be fully expanded.") |
| 6991 | (define-key ctl-x-map "d" 'dired) | 7007 | (define-key ctl-x-map "d" 'dired) |
| 6992 | 7008 | ||
| 6993 | (autoload (quote dired) "dired" "\ | 7009 | (autoload 'dired "dired" "\ |
| 6994 | \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. | 7010 | \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. |
| 6995 | Optional second argument SWITCHES specifies the `ls' options used. | 7011 | Optional second argument SWITCHES specifies the `ls' options used. |
| 6996 | \(Interactively, use a prefix argument to be able to specify SWITCHES.) | 7012 | \(Interactively, use a prefix argument to be able to specify SWITCHES.) |
| @@ -7008,23 +7024,23 @@ If DIRNAME is already in a dired buffer, that buffer is used without refresh. | |||
| 7008 | \(fn DIRNAME &optional SWITCHES)" t nil) | 7024 | \(fn DIRNAME &optional SWITCHES)" t nil) |
| 7009 | (define-key ctl-x-4-map "d" 'dired-other-window) | 7025 | (define-key ctl-x-4-map "d" 'dired-other-window) |
| 7010 | 7026 | ||
| 7011 | (autoload (quote dired-other-window) "dired" "\ | 7027 | (autoload 'dired-other-window "dired" "\ |
| 7012 | \"Edit\" directory DIRNAME. Like `dired' but selects in another window. | 7028 | \"Edit\" directory DIRNAME. Like `dired' but selects in another window. |
| 7013 | 7029 | ||
| 7014 | \(fn DIRNAME &optional SWITCHES)" t nil) | 7030 | \(fn DIRNAME &optional SWITCHES)" t nil) |
| 7015 | (define-key ctl-x-5-map "d" 'dired-other-frame) | 7031 | (define-key ctl-x-5-map "d" 'dired-other-frame) |
| 7016 | 7032 | ||
| 7017 | (autoload (quote dired-other-frame) "dired" "\ | 7033 | (autoload 'dired-other-frame "dired" "\ |
| 7018 | \"Edit\" directory DIRNAME. Like `dired' but makes a new frame. | 7034 | \"Edit\" directory DIRNAME. Like `dired' but makes a new frame. |
| 7019 | 7035 | ||
| 7020 | \(fn DIRNAME &optional SWITCHES)" t nil) | 7036 | \(fn DIRNAME &optional SWITCHES)" t nil) |
| 7021 | 7037 | ||
| 7022 | (autoload (quote dired-noselect) "dired" "\ | 7038 | (autoload 'dired-noselect "dired" "\ |
| 7023 | Like `dired' but returns the dired buffer as value, does not select it. | 7039 | Like `dired' but returns the dired buffer as value, does not select it. |
| 7024 | 7040 | ||
| 7025 | \(fn DIR-OR-LIST &optional SWITCHES)" nil nil) | 7041 | \(fn DIR-OR-LIST &optional SWITCHES)" nil nil) |
| 7026 | 7042 | ||
| 7027 | (autoload (quote dired-mode) "dired" "\ | 7043 | (autoload 'dired-mode "dired" "\ |
| 7028 | Mode for \"editing\" directory listings. | 7044 | Mode for \"editing\" directory listings. |
| 7029 | In Dired, you are \"editing\" a list of the files in a directory and | 7045 | In Dired, you are \"editing\" a list of the files in a directory and |
| 7030 | (optionally) its subdirectories, in the format of `ls -lR'. | 7046 | (optionally) its subdirectories, in the format of `ls -lR'. |
| @@ -7104,10 +7120,10 @@ Keybindings: | |||
| 7104 | ;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory | 7120 | ;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory |
| 7105 | ;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp | 7121 | ;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp |
| 7106 | ;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff | 7122 | ;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff |
| 7107 | ;;;;;; dired-diff) "dired-aux" "dired-aux.el" (18104 24733)) | 7123 | ;;;;;; dired-diff) "dired-aux" "dired-aux.el" (18169 11930)) |
| 7108 | ;;; Generated autoloads from dired-aux.el | 7124 | ;;; Generated autoloads from dired-aux.el |
| 7109 | 7125 | ||
| 7110 | (autoload (quote dired-diff) "dired-aux" "\ | 7126 | (autoload 'dired-diff "dired-aux" "\ |
| 7111 | Compare file at point with file FILE using `diff'. | 7127 | Compare file at point with file FILE using `diff'. |
| 7112 | FILE defaults to the file at the mark. (That's the mark set by | 7128 | FILE defaults to the file at the mark. (That's the mark set by |
| 7113 | \\[set-mark-command], not by Dired's \\[dired-mark] command.) | 7129 | \\[set-mark-command], not by Dired's \\[dired-mark] command.) |
| @@ -7117,7 +7133,7 @@ which is options for `diff'. | |||
| 7117 | 7133 | ||
| 7118 | \(fn FILE &optional SWITCHES)" t nil) | 7134 | \(fn FILE &optional SWITCHES)" t nil) |
| 7119 | 7135 | ||
| 7120 | (autoload (quote dired-backup-diff) "dired-aux" "\ | 7136 | (autoload 'dired-backup-diff "dired-aux" "\ |
| 7121 | Diff this file with its backup file or vice versa. | 7137 | Diff this file with its backup file or vice versa. |
| 7122 | Uses the latest backup, if there are several numerical backups. | 7138 | Uses the latest backup, if there are several numerical backups. |
| 7123 | If this file is a backup, diff it with its original. | 7139 | If this file is a backup, diff it with its original. |
| @@ -7126,7 +7142,7 @@ With prefix arg, prompt for argument SWITCHES which is options for `diff'. | |||
| 7126 | 7142 | ||
| 7127 | \(fn &optional SWITCHES)" t nil) | 7143 | \(fn &optional SWITCHES)" t nil) |
| 7128 | 7144 | ||
| 7129 | (autoload (quote dired-compare-directories) "dired-aux" "\ | 7145 | (autoload 'dired-compare-directories "dired-aux" "\ |
| 7130 | Mark files with different file attributes in two dired buffers. | 7146 | Mark files with different file attributes in two dired buffers. |
| 7131 | Compare file attributes of files in the current directory | 7147 | Compare file attributes of files in the current directory |
| 7132 | with file attributes in directory DIR2 using PREDICATE on pairs of files | 7148 | with file attributes in directory DIR2 using PREDICATE on pairs of files |
| @@ -7154,36 +7170,36 @@ Examples of PREDICATE: | |||
| 7154 | 7170 | ||
| 7155 | \(fn DIR2 PREDICATE)" t nil) | 7171 | \(fn DIR2 PREDICATE)" t nil) |
| 7156 | 7172 | ||
| 7157 | (autoload (quote dired-do-chmod) "dired-aux" "\ | 7173 | (autoload 'dired-do-chmod "dired-aux" "\ |
| 7158 | Change the mode of the marked (or next ARG) files. | 7174 | Change the mode of the marked (or next ARG) files. |
| 7159 | This calls chmod, thus symbolic modes like `g+w' are allowed. | 7175 | Symbolic modes like `g+w' are allowed. |
| 7160 | 7176 | ||
| 7161 | \(fn &optional ARG)" t nil) | 7177 | \(fn &optional ARG)" t nil) |
| 7162 | 7178 | ||
| 7163 | (autoload (quote dired-do-chgrp) "dired-aux" "\ | 7179 | (autoload 'dired-do-chgrp "dired-aux" "\ |
| 7164 | Change the group of the marked (or next ARG) files. | 7180 | Change the group of the marked (or next ARG) files. |
| 7165 | 7181 | ||
| 7166 | \(fn &optional ARG)" t nil) | 7182 | \(fn &optional ARG)" t nil) |
| 7167 | 7183 | ||
| 7168 | (autoload (quote dired-do-chown) "dired-aux" "\ | 7184 | (autoload 'dired-do-chown "dired-aux" "\ |
| 7169 | Change the owner of the marked (or next ARG) files. | 7185 | Change the owner of the marked (or next ARG) files. |
| 7170 | 7186 | ||
| 7171 | \(fn &optional ARG)" t nil) | 7187 | \(fn &optional ARG)" t nil) |
| 7172 | 7188 | ||
| 7173 | (autoload (quote dired-do-touch) "dired-aux" "\ | 7189 | (autoload 'dired-do-touch "dired-aux" "\ |
| 7174 | Change the timestamp of the marked (or next ARG) files. | 7190 | Change the timestamp of the marked (or next ARG) files. |
| 7175 | This calls touch. | 7191 | This calls touch. |
| 7176 | 7192 | ||
| 7177 | \(fn &optional ARG)" t nil) | 7193 | \(fn &optional ARG)" t nil) |
| 7178 | 7194 | ||
| 7179 | (autoload (quote dired-do-print) "dired-aux" "\ | 7195 | (autoload 'dired-do-print "dired-aux" "\ |
| 7180 | Print the marked (or next ARG) files. | 7196 | Print the marked (or next ARG) files. |
| 7181 | Uses the shell command coming from variables `lpr-command' and | 7197 | Uses the shell command coming from variables `lpr-command' and |
| 7182 | `lpr-switches' as default. | 7198 | `lpr-switches' as default. |
| 7183 | 7199 | ||
| 7184 | \(fn &optional ARG)" t nil) | 7200 | \(fn &optional ARG)" t nil) |
| 7185 | 7201 | ||
| 7186 | (autoload (quote dired-clean-directory) "dired-aux" "\ | 7202 | (autoload 'dired-clean-directory "dired-aux" "\ |
| 7187 | Flag numerical backups for deletion. | 7203 | Flag numerical backups for deletion. |
| 7188 | Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. | 7204 | Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. |
| 7189 | Positive prefix arg KEEP overrides `dired-kept-versions'; | 7205 | Positive prefix arg KEEP overrides `dired-kept-versions'; |
| @@ -7194,7 +7210,7 @@ with a prefix argument. | |||
| 7194 | 7210 | ||
| 7195 | \(fn KEEP)" t nil) | 7211 | \(fn KEEP)" t nil) |
| 7196 | 7212 | ||
| 7197 | (autoload (quote dired-do-shell-command) "dired-aux" "\ | 7213 | (autoload 'dired-do-shell-command "dired-aux" "\ |
| 7198 | Run a shell command COMMAND on the marked files. | 7214 | Run a shell command COMMAND on the marked files. |
| 7199 | If no files are marked or a specific numeric prefix arg is given, | 7215 | If no files are marked or a specific numeric prefix arg is given, |
| 7200 | the next ARG files are used. Just \\[universal-argument] means the current file. | 7216 | the next ARG files are used. Just \\[universal-argument] means the current file. |
| @@ -7231,12 +7247,12 @@ can be produced by `dired-get-marked-files', for example. | |||
| 7231 | 7247 | ||
| 7232 | \(fn COMMAND &optional ARG FILE-LIST)" t nil) | 7248 | \(fn COMMAND &optional ARG FILE-LIST)" t nil) |
| 7233 | 7249 | ||
| 7234 | (autoload (quote dired-run-shell-command) "dired-aux" "\ | 7250 | (autoload 'dired-run-shell-command "dired-aux" "\ |
| 7235 | Not documented | 7251 | Not documented |
| 7236 | 7252 | ||
| 7237 | \(fn COMMAND)" nil nil) | 7253 | \(fn COMMAND)" nil nil) |
| 7238 | 7254 | ||
| 7239 | (autoload (quote dired-do-kill-lines) "dired-aux" "\ | 7255 | (autoload 'dired-do-kill-lines "dired-aux" "\ |
| 7240 | Kill all marked lines (not the files). | 7256 | Kill all marked lines (not the files). |
| 7241 | With a prefix argument, kill that many lines starting with the current line. | 7257 | With a prefix argument, kill that many lines starting with the current line. |
| 7242 | \(A negative argument kills backward.) | 7258 | \(A negative argument kills backward.) |
| @@ -7250,32 +7266,32 @@ command with a prefix argument (the value does not matter). | |||
| 7250 | 7266 | ||
| 7251 | \(fn &optional ARG FMT)" t nil) | 7267 | \(fn &optional ARG FMT)" t nil) |
| 7252 | 7268 | ||
| 7253 | (autoload (quote dired-compress-file) "dired-aux" "\ | 7269 | (autoload 'dired-compress-file "dired-aux" "\ |
| 7254 | Not documented | 7270 | Not documented |
| 7255 | 7271 | ||
| 7256 | \(fn FILE)" nil nil) | 7272 | \(fn FILE)" nil nil) |
| 7257 | 7273 | ||
| 7258 | (autoload (quote dired-query) "dired-aux" "\ | 7274 | (autoload 'dired-query "dired-aux" "\ |
| 7259 | Not documented | 7275 | Not documented |
| 7260 | 7276 | ||
| 7261 | \(fn QS-VAR QS-PROMPT &rest QS-ARGS)" nil nil) | 7277 | \(fn QS-VAR QS-PROMPT &rest QS-ARGS)" nil nil) |
| 7262 | 7278 | ||
| 7263 | (autoload (quote dired-do-compress) "dired-aux" "\ | 7279 | (autoload 'dired-do-compress "dired-aux" "\ |
| 7264 | Compress or uncompress marked (or next ARG) files. | 7280 | Compress or uncompress marked (or next ARG) files. |
| 7265 | 7281 | ||
| 7266 | \(fn &optional ARG)" t nil) | 7282 | \(fn &optional ARG)" t nil) |
| 7267 | 7283 | ||
| 7268 | (autoload (quote dired-do-byte-compile) "dired-aux" "\ | 7284 | (autoload 'dired-do-byte-compile "dired-aux" "\ |
| 7269 | Byte compile marked (or next ARG) Emacs Lisp files. | 7285 | Byte compile marked (or next ARG) Emacs Lisp files. |
| 7270 | 7286 | ||
| 7271 | \(fn &optional ARG)" t nil) | 7287 | \(fn &optional ARG)" t nil) |
| 7272 | 7288 | ||
| 7273 | (autoload (quote dired-do-load) "dired-aux" "\ | 7289 | (autoload 'dired-do-load "dired-aux" "\ |
| 7274 | Load the marked (or next ARG) Emacs Lisp files. | 7290 | Load the marked (or next ARG) Emacs Lisp files. |
| 7275 | 7291 | ||
| 7276 | \(fn &optional ARG)" t nil) | 7292 | \(fn &optional ARG)" t nil) |
| 7277 | 7293 | ||
| 7278 | (autoload (quote dired-do-redisplay) "dired-aux" "\ | 7294 | (autoload 'dired-do-redisplay "dired-aux" "\ |
| 7279 | Redisplay all marked (or next ARG) files. | 7295 | Redisplay all marked (or next ARG) files. |
| 7280 | If on a subdir line, redisplay that subdirectory. In that case, | 7296 | If on a subdir line, redisplay that subdirectory. In that case, |
| 7281 | a prefix arg lets you edit the `ls' switches used for the new listing. | 7297 | a prefix arg lets you edit the `ls' switches used for the new listing. |
| @@ -7290,37 +7306,37 @@ See Info node `(emacs)Subdir switches' for more details. | |||
| 7290 | 7306 | ||
| 7291 | \(fn &optional ARG TEST-FOR-SUBDIR)" t nil) | 7307 | \(fn &optional ARG TEST-FOR-SUBDIR)" t nil) |
| 7292 | 7308 | ||
| 7293 | (autoload (quote dired-add-file) "dired-aux" "\ | 7309 | (autoload 'dired-add-file "dired-aux" "\ |
| 7294 | Not documented | 7310 | Not documented |
| 7295 | 7311 | ||
| 7296 | \(fn FILENAME &optional MARKER-CHAR)" nil nil) | 7312 | \(fn FILENAME &optional MARKER-CHAR)" nil nil) |
| 7297 | 7313 | ||
| 7298 | (autoload (quote dired-remove-file) "dired-aux" "\ | 7314 | (autoload 'dired-remove-file "dired-aux" "\ |
| 7299 | Not documented | 7315 | Not documented |
| 7300 | 7316 | ||
| 7301 | \(fn FILE)" nil nil) | 7317 | \(fn FILE)" nil nil) |
| 7302 | 7318 | ||
| 7303 | (autoload (quote dired-relist-file) "dired-aux" "\ | 7319 | (autoload 'dired-relist-file "dired-aux" "\ |
| 7304 | Create or update the line for FILE in all Dired buffers it would belong in. | 7320 | Create or update the line for FILE in all Dired buffers it would belong in. |
| 7305 | 7321 | ||
| 7306 | \(fn FILE)" nil nil) | 7322 | \(fn FILE)" nil nil) |
| 7307 | 7323 | ||
| 7308 | (autoload (quote dired-copy-file) "dired-aux" "\ | 7324 | (autoload 'dired-copy-file "dired-aux" "\ |
| 7309 | Not documented | 7325 | Not documented |
| 7310 | 7326 | ||
| 7311 | \(fn FROM TO OK-FLAG)" nil nil) | 7327 | \(fn FROM TO OK-FLAG)" nil nil) |
| 7312 | 7328 | ||
| 7313 | (autoload (quote dired-rename-file) "dired-aux" "\ | 7329 | (autoload 'dired-rename-file "dired-aux" "\ |
| 7314 | Not documented | 7330 | Not documented |
| 7315 | 7331 | ||
| 7316 | \(fn FILE NEWNAME OK-IF-ALREADY-EXISTS)" nil nil) | 7332 | \(fn FILE NEWNAME OK-IF-ALREADY-EXISTS)" nil nil) |
| 7317 | 7333 | ||
| 7318 | (autoload (quote dired-create-directory) "dired-aux" "\ | 7334 | (autoload 'dired-create-directory "dired-aux" "\ |
| 7319 | Create a directory called DIRECTORY. | 7335 | Create a directory called DIRECTORY. |
| 7320 | 7336 | ||
| 7321 | \(fn DIRECTORY)" t nil) | 7337 | \(fn DIRECTORY)" t nil) |
| 7322 | 7338 | ||
| 7323 | (autoload (quote dired-do-copy) "dired-aux" "\ | 7339 | (autoload 'dired-do-copy "dired-aux" "\ |
| 7324 | Copy all marked (or next ARG) files, or copy the current file. | 7340 | Copy all marked (or next ARG) files, or copy the current file. |
| 7325 | This normally preserves the last-modified date when copying. | 7341 | This normally preserves the last-modified date when copying. |
| 7326 | When operating on just the current file, you specify the new name. | 7342 | When operating on just the current file, you specify the new name. |
| @@ -7335,7 +7351,7 @@ like `cp -d'. | |||
| 7335 | 7351 | ||
| 7336 | \(fn &optional ARG)" t nil) | 7352 | \(fn &optional ARG)" t nil) |
| 7337 | 7353 | ||
| 7338 | (autoload (quote dired-do-symlink) "dired-aux" "\ | 7354 | (autoload 'dired-do-symlink "dired-aux" "\ |
| 7339 | Make symbolic links to current file or all marked (or next ARG) files. | 7355 | Make symbolic links to current file or all marked (or next ARG) files. |
| 7340 | When operating on just the current file, you specify the new name. | 7356 | When operating on just the current file, you specify the new name. |
| 7341 | When operating on multiple or marked files, you specify a directory | 7357 | When operating on multiple or marked files, you specify a directory |
| @@ -7348,7 +7364,7 @@ For relative symlinks, use \\[dired-do-relsymlink]. | |||
| 7348 | 7364 | ||
| 7349 | \(fn &optional ARG)" t nil) | 7365 | \(fn &optional ARG)" t nil) |
| 7350 | 7366 | ||
| 7351 | (autoload (quote dired-do-hardlink) "dired-aux" "\ | 7367 | (autoload 'dired-do-hardlink "dired-aux" "\ |
| 7352 | Add names (hard links) current file or all marked (or next ARG) files. | 7368 | Add names (hard links) current file or all marked (or next ARG) files. |
| 7353 | When operating on just the current file, you specify the new name. | 7369 | When operating on just the current file, you specify the new name. |
| 7354 | When operating on multiple or marked files, you specify a directory | 7370 | When operating on multiple or marked files, you specify a directory |
| @@ -7359,7 +7375,7 @@ suggested for the target directory depends on the value of | |||
| 7359 | 7375 | ||
| 7360 | \(fn &optional ARG)" t nil) | 7376 | \(fn &optional ARG)" t nil) |
| 7361 | 7377 | ||
| 7362 | (autoload (quote dired-do-rename) "dired-aux" "\ | 7378 | (autoload 'dired-do-rename "dired-aux" "\ |
| 7363 | Rename current file or all marked (or next ARG) files. | 7379 | Rename current file or all marked (or next ARG) files. |
| 7364 | When renaming just the current file, you specify the new name. | 7380 | When renaming just the current file, you specify the new name. |
| 7365 | When renaming multiple or marked files, you specify a directory. | 7381 | When renaming multiple or marked files, you specify a directory. |
| @@ -7369,7 +7385,7 @@ of `dired-dwim-target', which see. | |||
| 7369 | 7385 | ||
| 7370 | \(fn &optional ARG)" t nil) | 7386 | \(fn &optional ARG)" t nil) |
| 7371 | 7387 | ||
| 7372 | (autoload (quote dired-do-rename-regexp) "dired-aux" "\ | 7388 | (autoload 'dired-do-rename-regexp "dired-aux" "\ |
| 7373 | Rename selected files whose names match REGEXP to NEWNAME. | 7389 | Rename selected files whose names match REGEXP to NEWNAME. |
| 7374 | 7390 | ||
| 7375 | With non-zero prefix argument ARG, the command operates on the next ARG | 7391 | With non-zero prefix argument ARG, the command operates on the next ARG |
| @@ -7386,35 +7402,35 @@ Normally, only the non-directory part of the file name is used and changed. | |||
| 7386 | 7402 | ||
| 7387 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | 7403 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) |
| 7388 | 7404 | ||
| 7389 | (autoload (quote dired-do-copy-regexp) "dired-aux" "\ | 7405 | (autoload 'dired-do-copy-regexp "dired-aux" "\ |
| 7390 | Copy selected files whose names match REGEXP to NEWNAME. | 7406 | Copy selected files whose names match REGEXP to NEWNAME. |
| 7391 | See function `dired-do-rename-regexp' for more info. | 7407 | See function `dired-do-rename-regexp' for more info. |
| 7392 | 7408 | ||
| 7393 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | 7409 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) |
| 7394 | 7410 | ||
| 7395 | (autoload (quote dired-do-hardlink-regexp) "dired-aux" "\ | 7411 | (autoload 'dired-do-hardlink-regexp "dired-aux" "\ |
| 7396 | Hardlink selected files whose names match REGEXP to NEWNAME. | 7412 | Hardlink selected files whose names match REGEXP to NEWNAME. |
| 7397 | See function `dired-do-rename-regexp' for more info. | 7413 | See function `dired-do-rename-regexp' for more info. |
| 7398 | 7414 | ||
| 7399 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | 7415 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) |
| 7400 | 7416 | ||
| 7401 | (autoload (quote dired-do-symlink-regexp) "dired-aux" "\ | 7417 | (autoload 'dired-do-symlink-regexp "dired-aux" "\ |
| 7402 | Symlink selected files whose names match REGEXP to NEWNAME. | 7418 | Symlink selected files whose names match REGEXP to NEWNAME. |
| 7403 | See function `dired-do-rename-regexp' for more info. | 7419 | See function `dired-do-rename-regexp' for more info. |
| 7404 | 7420 | ||
| 7405 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | 7421 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) |
| 7406 | 7422 | ||
| 7407 | (autoload (quote dired-upcase) "dired-aux" "\ | 7423 | (autoload 'dired-upcase "dired-aux" "\ |
| 7408 | Rename all marked (or next ARG) files to upper case. | 7424 | Rename all marked (or next ARG) files to upper case. |
| 7409 | 7425 | ||
| 7410 | \(fn &optional ARG)" t nil) | 7426 | \(fn &optional ARG)" t nil) |
| 7411 | 7427 | ||
| 7412 | (autoload (quote dired-downcase) "dired-aux" "\ | 7428 | (autoload 'dired-downcase "dired-aux" "\ |
| 7413 | Rename all marked (or next ARG) files to lower case. | 7429 | Rename all marked (or next ARG) files to lower case. |
| 7414 | 7430 | ||
| 7415 | \(fn &optional ARG)" t nil) | 7431 | \(fn &optional ARG)" t nil) |
| 7416 | 7432 | ||
| 7417 | (autoload (quote dired-maybe-insert-subdir) "dired-aux" "\ | 7433 | (autoload 'dired-maybe-insert-subdir "dired-aux" "\ |
| 7418 | Insert this subdirectory into the same dired buffer. | 7434 | Insert this subdirectory into the same dired buffer. |
| 7419 | If it is already present, just move to it (type \\[dired-do-redisplay] to refresh), | 7435 | If it is already present, just move to it (type \\[dired-do-redisplay] to refresh), |
| 7420 | else inserts it at its natural place (as `ls -lR' would have done). | 7436 | else inserts it at its natural place (as `ls -lR' would have done). |
| @@ -7433,7 +7449,7 @@ See Info node `(emacs)Subdir switches' for more details. | |||
| 7433 | 7449 | ||
| 7434 | \(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil) | 7450 | \(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil) |
| 7435 | 7451 | ||
| 7436 | (autoload (quote dired-insert-subdir) "dired-aux" "\ | 7452 | (autoload 'dired-insert-subdir "dired-aux" "\ |
| 7437 | Insert this subdirectory into the same dired buffer. | 7453 | Insert this subdirectory into the same dired buffer. |
| 7438 | If it is already present, overwrites previous entry, | 7454 | If it is already present, overwrites previous entry, |
| 7439 | else inserts it at its natural place (as `ls -lR' would have done). | 7455 | else inserts it at its natural place (as `ls -lR' would have done). |
| @@ -7444,64 +7460,64 @@ This function takes some pains to conform to `ls -lR' output. | |||
| 7444 | 7460 | ||
| 7445 | \(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil) | 7461 | \(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil) |
| 7446 | 7462 | ||
| 7447 | (autoload (quote dired-prev-subdir) "dired-aux" "\ | 7463 | (autoload 'dired-prev-subdir "dired-aux" "\ |
| 7448 | Go to previous subdirectory, regardless of level. | 7464 | Go to previous subdirectory, regardless of level. |
| 7449 | When called interactively and not on a subdir line, go to this subdir's line. | 7465 | When called interactively and not on a subdir line, go to this subdir's line. |
| 7450 | 7466 | ||
| 7451 | \(fn ARG &optional NO-ERROR-IF-NOT-FOUND NO-SKIP)" t nil) | 7467 | \(fn ARG &optional NO-ERROR-IF-NOT-FOUND NO-SKIP)" t nil) |
| 7452 | 7468 | ||
| 7453 | (autoload (quote dired-goto-subdir) "dired-aux" "\ | 7469 | (autoload 'dired-goto-subdir "dired-aux" "\ |
| 7454 | Go to end of header line of DIR in this dired buffer. | 7470 | Go to end of header line of DIR in this dired buffer. |
| 7455 | Return value of point on success, otherwise return nil. | 7471 | Return value of point on success, otherwise return nil. |
| 7456 | The next char is either \\n, or \\r if DIR is hidden. | 7472 | The next char is either \\n, or \\r if DIR is hidden. |
| 7457 | 7473 | ||
| 7458 | \(fn DIR)" t nil) | 7474 | \(fn DIR)" t nil) |
| 7459 | 7475 | ||
| 7460 | (autoload (quote dired-mark-subdir-files) "dired-aux" "\ | 7476 | (autoload 'dired-mark-subdir-files "dired-aux" "\ |
| 7461 | Mark all files except `.' and `..' in current subdirectory. | 7477 | Mark all files except `.' and `..' in current subdirectory. |
| 7462 | If the Dired buffer shows multiple directories, this command | 7478 | If the Dired buffer shows multiple directories, this command |
| 7463 | marks the files listed in the subdirectory that point is in. | 7479 | marks the files listed in the subdirectory that point is in. |
| 7464 | 7480 | ||
| 7465 | \(fn)" t nil) | 7481 | \(fn)" t nil) |
| 7466 | 7482 | ||
| 7467 | (autoload (quote dired-kill-subdir) "dired-aux" "\ | 7483 | (autoload 'dired-kill-subdir "dired-aux" "\ |
| 7468 | Remove all lines of current subdirectory. | 7484 | Remove all lines of current subdirectory. |
| 7469 | Lower levels are unaffected. | 7485 | Lower levels are unaffected. |
| 7470 | 7486 | ||
| 7471 | \(fn &optional REMEMBER-MARKS)" t nil) | 7487 | \(fn &optional REMEMBER-MARKS)" t nil) |
| 7472 | 7488 | ||
| 7473 | (autoload (quote dired-tree-up) "dired-aux" "\ | 7489 | (autoload 'dired-tree-up "dired-aux" "\ |
| 7474 | Go up ARG levels in the dired tree. | 7490 | Go up ARG levels in the dired tree. |
| 7475 | 7491 | ||
| 7476 | \(fn ARG)" t nil) | 7492 | \(fn ARG)" t nil) |
| 7477 | 7493 | ||
| 7478 | (autoload (quote dired-tree-down) "dired-aux" "\ | 7494 | (autoload 'dired-tree-down "dired-aux" "\ |
| 7479 | Go down in the dired tree. | 7495 | Go down in the dired tree. |
| 7480 | 7496 | ||
| 7481 | \(fn)" t nil) | 7497 | \(fn)" t nil) |
| 7482 | 7498 | ||
| 7483 | (autoload (quote dired-hide-subdir) "dired-aux" "\ | 7499 | (autoload 'dired-hide-subdir "dired-aux" "\ |
| 7484 | Hide or unhide the current subdirectory and move to next directory. | 7500 | Hide or unhide the current subdirectory and move to next directory. |
| 7485 | Optional prefix arg is a repeat factor. | 7501 | Optional prefix arg is a repeat factor. |
| 7486 | Use \\[dired-hide-all] to (un)hide all directories. | 7502 | Use \\[dired-hide-all] to (un)hide all directories. |
| 7487 | 7503 | ||
| 7488 | \(fn ARG)" t nil) | 7504 | \(fn ARG)" t nil) |
| 7489 | 7505 | ||
| 7490 | (autoload (quote dired-hide-all) "dired-aux" "\ | 7506 | (autoload 'dired-hide-all "dired-aux" "\ |
| 7491 | Hide all subdirectories, leaving only their header lines. | 7507 | Hide all subdirectories, leaving only their header lines. |
| 7492 | If there is already something hidden, make everything visible again. | 7508 | If there is already something hidden, make everything visible again. |
| 7493 | Use \\[dired-hide-subdir] to (un)hide a particular subdirectory. | 7509 | Use \\[dired-hide-subdir] to (un)hide a particular subdirectory. |
| 7494 | 7510 | ||
| 7495 | \(fn ARG)" t nil) | 7511 | \(fn ARG)" t nil) |
| 7496 | 7512 | ||
| 7497 | (autoload (quote dired-do-search) "dired-aux" "\ | 7513 | (autoload 'dired-do-search "dired-aux" "\ |
| 7498 | Search through all marked files for a match for REGEXP. | 7514 | Search through all marked files for a match for REGEXP. |
| 7499 | Stops when a match is found. | 7515 | Stops when a match is found. |
| 7500 | To continue searching for next match, use command \\[tags-loop-continue]. | 7516 | To continue searching for next match, use command \\[tags-loop-continue]. |
| 7501 | 7517 | ||
| 7502 | \(fn REGEXP)" t nil) | 7518 | \(fn REGEXP)" t nil) |
| 7503 | 7519 | ||
| 7504 | (autoload (quote dired-do-query-replace-regexp) "dired-aux" "\ | 7520 | (autoload 'dired-do-query-replace-regexp "dired-aux" "\ |
| 7505 | Do `query-replace-regexp' of FROM with TO, on all marked files. | 7521 | Do `query-replace-regexp' of FROM with TO, on all marked files. |
| 7506 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 7522 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 7507 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace | 7523 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| @@ -7509,7 +7525,7 @@ with the command \\[tags-loop-continue]. | |||
| 7509 | 7525 | ||
| 7510 | \(fn FROM TO &optional DELIMITED)" t nil) | 7526 | \(fn FROM TO &optional DELIMITED)" t nil) |
| 7511 | 7527 | ||
| 7512 | (autoload (quote dired-show-file-type) "dired-aux" "\ | 7528 | (autoload 'dired-show-file-type "dired-aux" "\ |
| 7513 | Print the type of FILE, according to the `file' command. | 7529 | Print the type of FILE, according to the `file' command. |
| 7514 | If FILE is a symbolic link and the optional argument DEREF-SYMLINKS is | 7530 | If FILE is a symbolic link and the optional argument DEREF-SYMLINKS is |
| 7515 | true then the type of the file linked to by FILE is printed instead. | 7531 | true then the type of the file linked to by FILE is printed instead. |
| @@ -7519,10 +7535,10 @@ true then the type of the file linked to by FILE is printed instead. | |||
| 7519 | ;;;*** | 7535 | ;;;*** |
| 7520 | 7536 | ||
| 7521 | ;;;### (autoloads (dired-do-relsymlink dired-jump) "dired-x" "dired-x.el" | 7537 | ;;;### (autoloads (dired-do-relsymlink dired-jump) "dired-x" "dired-x.el" |
| 7522 | ;;;;;; (18104 24733)) | 7538 | ;;;;;; (18212 46004)) |
| 7523 | ;;; Generated autoloads from dired-x.el | 7539 | ;;; Generated autoloads from dired-x.el |
| 7524 | 7540 | ||
| 7525 | (autoload (quote dired-jump) "dired-x" "\ | 7541 | (autoload 'dired-jump "dired-x" "\ |
| 7526 | Jump to dired buffer corresponding to current buffer. | 7542 | Jump to dired buffer corresponding to current buffer. |
| 7527 | If in a file, dired the current directory and move to file's line. | 7543 | If in a file, dired the current directory and move to file's line. |
| 7528 | If in Dired already, pop up a level and goto old directory's line. | 7544 | If in Dired already, pop up a level and goto old directory's line. |
| @@ -7531,7 +7547,7 @@ buffer and try again. | |||
| 7531 | 7547 | ||
| 7532 | \(fn &optional OTHER-WINDOW)" t nil) | 7548 | \(fn &optional OTHER-WINDOW)" t nil) |
| 7533 | 7549 | ||
| 7534 | (autoload (quote dired-do-relsymlink) "dired-x" "\ | 7550 | (autoload 'dired-do-relsymlink "dired-x" "\ |
| 7535 | Relative symlink all marked (or next ARG) files into a directory. | 7551 | Relative symlink all marked (or next ARG) files into a directory. |
| 7536 | Otherwise make a relative symbolic link to the current file. | 7552 | Otherwise make a relative symbolic link to the current file. |
| 7537 | This creates relative symbolic links like | 7553 | This creates relative symbolic links like |
| @@ -7548,30 +7564,34 @@ For absolute symlinks, use \\[dired-do-symlink]. | |||
| 7548 | 7564 | ||
| 7549 | ;;;*** | 7565 | ;;;*** |
| 7550 | 7566 | ||
| 7551 | ;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (18104 24733)) | 7567 | ;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" |
| 7568 | ;;;;;; (18213 13926)) | ||
| 7552 | ;;; Generated autoloads from dirtrack.el | 7569 | ;;; Generated autoloads from dirtrack.el |
| 7553 | 7570 | ||
| 7554 | (autoload (quote dirtrack) "dirtrack" "\ | 7571 | (autoload 'dirtrack-mode "dirtrack" "\ |
| 7572 | Enable or disable Dirtrack directory tracking in a shell buffer. | ||
| 7573 | This provides an alternative to `shell-dirtrack-mode'. | ||
| 7574 | |||
| 7575 | \(fn &optional ARG)" t nil) | ||
| 7576 | |||
| 7577 | (autoload 'dirtrack "dirtrack" "\ | ||
| 7555 | Determine the current directory by scanning the process output for a prompt. | 7578 | Determine the current directory by scanning the process output for a prompt. |
| 7556 | The prompt to look for is the first item in `dirtrack-list'. | 7579 | The prompt to look for is the first item in `dirtrack-list'. |
| 7557 | 7580 | ||
| 7558 | You can toggle directory tracking by using the function `dirtrack-toggle'. | 7581 | You can toggle directory tracking by using the function `dirtrack-mode'. |
| 7559 | 7582 | ||
| 7560 | If directory tracking does not seem to be working, you can use the | 7583 | If directory tracking does not seem to be working, you can use the |
| 7561 | function `dirtrack-debug-toggle' to turn on debugging output. | 7584 | function `dirtrack-debug-mode' to turn on debugging output. |
| 7562 | |||
| 7563 | You can enable directory tracking by adding this function to | ||
| 7564 | `comint-output-filter-functions'. | ||
| 7565 | 7585 | ||
| 7566 | \(fn INPUT)" nil nil) | 7586 | \(fn INPUT)" nil nil) |
| 7567 | 7587 | ||
| 7568 | ;;;*** | 7588 | ;;;*** |
| 7569 | 7589 | ||
| 7570 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (18104 | 7590 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (18173 |
| 7571 | ;;;;;; 24747)) | 7591 | ;;;;;; 8195)) |
| 7572 | ;;; Generated autoloads from emacs-lisp/disass.el | 7592 | ;;; Generated autoloads from emacs-lisp/disass.el |
| 7573 | 7593 | ||
| 7574 | (autoload (quote disassemble) "disass" "\ | 7594 | (autoload 'disassemble "disass" "\ |
| 7575 | Print disassembled code for OBJECT in (optional) BUFFER. | 7595 | Print disassembled code for OBJECT in (optional) BUFFER. |
| 7576 | OBJECT can be a symbol defined as a function, or a function itself | 7596 | OBJECT can be a symbol defined as a function, or a function itself |
| 7577 | \(a lambda expression or a compiled-function object). | 7597 | \(a lambda expression or a compiled-function object). |
| @@ -7587,15 +7607,15 @@ redefine OBJECT if it is a symbol. | |||
| 7587 | ;;;;;; standard-display-g1 standard-display-ascii standard-display-default | 7607 | ;;;;;; standard-display-g1 standard-display-ascii standard-display-default |
| 7588 | ;;;;;; standard-display-8bit describe-current-display-table describe-display-table | 7608 | ;;;;;; standard-display-8bit describe-current-display-table describe-display-table |
| 7589 | ;;;;;; set-display-table-slot display-table-slot make-display-table) | 7609 | ;;;;;; set-display-table-slot display-table-slot make-display-table) |
| 7590 | ;;;;;; "disp-table" "disp-table.el" (18104 24734)) | 7610 | ;;;;;; "disp-table" "disp-table.el" (18088 55082)) |
| 7591 | ;;; Generated autoloads from disp-table.el | 7611 | ;;; Generated autoloads from disp-table.el |
| 7592 | 7612 | ||
| 7593 | (autoload (quote make-display-table) "disp-table" "\ | 7613 | (autoload 'make-display-table "disp-table" "\ |
| 7594 | Return a new, empty display table. | 7614 | Return a new, empty display table. |
| 7595 | 7615 | ||
| 7596 | \(fn)" nil nil) | 7616 | \(fn)" nil nil) |
| 7597 | 7617 | ||
| 7598 | (autoload (quote display-table-slot) "disp-table" "\ | 7618 | (autoload 'display-table-slot "disp-table" "\ |
| 7599 | Return the value of the extra slot in DISPLAY-TABLE named SLOT. | 7619 | Return the value of the extra slot in DISPLAY-TABLE named SLOT. |
| 7600 | SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol). | 7620 | SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol). |
| 7601 | Valid symbols are `truncation', `wrap', `escape', `control', | 7621 | Valid symbols are `truncation', `wrap', `escape', `control', |
| @@ -7603,7 +7623,7 @@ Valid symbols are `truncation', `wrap', `escape', `control', | |||
| 7603 | 7623 | ||
| 7604 | \(fn DISPLAY-TABLE SLOT)" nil nil) | 7624 | \(fn DISPLAY-TABLE SLOT)" nil nil) |
| 7605 | 7625 | ||
| 7606 | (autoload (quote set-display-table-slot) "disp-table" "\ | 7626 | (autoload 'set-display-table-slot "disp-table" "\ |
| 7607 | Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE. | 7627 | Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE. |
| 7608 | SLOT may be a number from 0 to 5 inclusive, or a name (symbol). | 7628 | SLOT may be a number from 0 to 5 inclusive, or a name (symbol). |
| 7609 | Valid symbols are `truncation', `wrap', `escape', `control', | 7629 | Valid symbols are `truncation', `wrap', `escape', `control', |
| @@ -7611,71 +7631,71 @@ Valid symbols are `truncation', `wrap', `escape', `control', | |||
| 7611 | 7631 | ||
| 7612 | \(fn DISPLAY-TABLE SLOT VALUE)" nil nil) | 7632 | \(fn DISPLAY-TABLE SLOT VALUE)" nil nil) |
| 7613 | 7633 | ||
| 7614 | (autoload (quote describe-display-table) "disp-table" "\ | 7634 | (autoload 'describe-display-table "disp-table" "\ |
| 7615 | Describe the display table DT in a help buffer. | 7635 | Describe the display table DT in a help buffer. |
| 7616 | 7636 | ||
| 7617 | \(fn DT)" nil nil) | 7637 | \(fn DT)" nil nil) |
| 7618 | 7638 | ||
| 7619 | (autoload (quote describe-current-display-table) "disp-table" "\ | 7639 | (autoload 'describe-current-display-table "disp-table" "\ |
| 7620 | Describe the display table in use in the selected window and buffer. | 7640 | Describe the display table in use in the selected window and buffer. |
| 7621 | 7641 | ||
| 7622 | \(fn)" t nil) | 7642 | \(fn)" t nil) |
| 7623 | 7643 | ||
| 7624 | (autoload (quote standard-display-8bit) "disp-table" "\ | 7644 | (autoload 'standard-display-8bit "disp-table" "\ |
| 7625 | Display characters in the range L to H literally. | 7645 | Display characters in the range L to H literally. |
| 7626 | 7646 | ||
| 7627 | \(fn L H)" nil nil) | 7647 | \(fn L H)" nil nil) |
| 7628 | 7648 | ||
| 7629 | (autoload (quote standard-display-default) "disp-table" "\ | 7649 | (autoload 'standard-display-default "disp-table" "\ |
| 7630 | Display characters in the range L to H using the default notation. | 7650 | Display characters in the range L to H using the default notation. |
| 7631 | 7651 | ||
| 7632 | \(fn L H)" nil nil) | 7652 | \(fn L H)" nil nil) |
| 7633 | 7653 | ||
| 7634 | (autoload (quote standard-display-ascii) "disp-table" "\ | 7654 | (autoload 'standard-display-ascii "disp-table" "\ |
| 7635 | Display character C using printable string S. | 7655 | Display character C using printable string S. |
| 7636 | 7656 | ||
| 7637 | \(fn C S)" nil nil) | 7657 | \(fn C S)" nil nil) |
| 7638 | 7658 | ||
| 7639 | (autoload (quote standard-display-g1) "disp-table" "\ | 7659 | (autoload 'standard-display-g1 "disp-table" "\ |
| 7640 | Display character C as character SC in the g1 character set. | 7660 | Display character C as character SC in the g1 character set. |
| 7641 | This function assumes that your terminal uses the SO/SI characters; | 7661 | This function assumes that your terminal uses the SO/SI characters; |
| 7642 | it is meaningless for an X frame. | 7662 | it is meaningless for an X frame. |
| 7643 | 7663 | ||
| 7644 | \(fn C SC)" nil nil) | 7664 | \(fn C SC)" nil nil) |
| 7645 | 7665 | ||
| 7646 | (autoload (quote standard-display-graphic) "disp-table" "\ | 7666 | (autoload 'standard-display-graphic "disp-table" "\ |
| 7647 | Display character C as character GC in graphics character set. | 7667 | Display character C as character GC in graphics character set. |
| 7648 | This function assumes VT100-compatible escapes; it is meaningless for an | 7668 | This function assumes VT100-compatible escapes; it is meaningless for an |
| 7649 | X frame. | 7669 | X frame. |
| 7650 | 7670 | ||
| 7651 | \(fn C GC)" nil nil) | 7671 | \(fn C GC)" nil nil) |
| 7652 | 7672 | ||
| 7653 | (autoload (quote standard-display-underline) "disp-table" "\ | 7673 | (autoload 'standard-display-underline "disp-table" "\ |
| 7654 | Display character C as character UC plus underlining. | 7674 | Display character C as character UC plus underlining. |
| 7655 | 7675 | ||
| 7656 | \(fn C UC)" nil nil) | 7676 | \(fn C UC)" nil nil) |
| 7657 | 7677 | ||
| 7658 | (autoload (quote create-glyph) "disp-table" "\ | 7678 | (autoload 'create-glyph "disp-table" "\ |
| 7659 | Allocate a glyph code to display by sending STRING to the terminal. | 7679 | Allocate a glyph code to display by sending STRING to the terminal. |
| 7660 | 7680 | ||
| 7661 | \(fn STRING)" nil nil) | 7681 | \(fn STRING)" nil nil) |
| 7662 | 7682 | ||
| 7663 | (autoload (quote make-glyph-code) "disp-table" "\ | 7683 | (autoload 'make-glyph-code "disp-table" "\ |
| 7664 | Return a glyph code representing char CHAR with face FACE. | 7684 | Return a glyph code representing char CHAR with face FACE. |
| 7665 | 7685 | ||
| 7666 | \(fn CHAR &optional FACE)" nil nil) | 7686 | \(fn CHAR &optional FACE)" nil nil) |
| 7667 | 7687 | ||
| 7668 | (autoload (quote glyph-char) "disp-table" "\ | 7688 | (autoload 'glyph-char "disp-table" "\ |
| 7669 | Return the character of glyph code GLYPH. | 7689 | Return the character of glyph code GLYPH. |
| 7670 | 7690 | ||
| 7671 | \(fn GLYPH)" nil nil) | 7691 | \(fn GLYPH)" nil nil) |
| 7672 | 7692 | ||
| 7673 | (autoload (quote glyph-face) "disp-table" "\ | 7693 | (autoload 'glyph-face "disp-table" "\ |
| 7674 | Return the face of glyph code GLYPH, or nil if glyph has default face. | 7694 | Return the face of glyph code GLYPH, or nil if glyph has default face. |
| 7675 | 7695 | ||
| 7676 | \(fn GLYPH)" nil nil) | 7696 | \(fn GLYPH)" nil nil) |
| 7677 | 7697 | ||
| 7678 | (autoload (quote standard-display-european) "disp-table" "\ | 7698 | (autoload 'standard-display-european "disp-table" "\ |
| 7679 | Semi-obsolete way to toggle display of ISO 8859 European characters. | 7699 | Semi-obsolete way to toggle display of ISO 8859 European characters. |
| 7680 | 7700 | ||
| 7681 | This function is semi-obsolete; if you want to do your editing with | 7701 | This function is semi-obsolete; if you want to do your editing with |
| @@ -7703,10 +7723,10 @@ for users who call this function in `.emacs'. | |||
| 7703 | ;;;*** | 7723 | ;;;*** |
| 7704 | 7724 | ||
| 7705 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" | 7725 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" |
| 7706 | ;;;;;; (18104 24760)) | 7726 | ;;;;;; (18088 55113)) |
| 7707 | ;;; Generated autoloads from play/dissociate.el | 7727 | ;;; Generated autoloads from play/dissociate.el |
| 7708 | 7728 | ||
| 7709 | (autoload (quote dissociated-press) "dissociate" "\ | 7729 | (autoload 'dissociated-press "dissociate" "\ |
| 7710 | Dissociate the text of the current buffer. | 7730 | Dissociate the text of the current buffer. |
| 7711 | Output goes in buffer named *Dissociation*, | 7731 | Output goes in buffer named *Dissociation*, |
| 7712 | which is redisplayed each time text is added to it. | 7732 | which is redisplayed each time text is added to it. |
| @@ -7719,10 +7739,10 @@ Default is 2. | |||
| 7719 | 7739 | ||
| 7720 | ;;;*** | 7740 | ;;;*** |
| 7721 | 7741 | ||
| 7722 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (18104 24734)) | 7742 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (18088 55082)) |
| 7723 | ;;; Generated autoloads from dnd.el | 7743 | ;;; Generated autoloads from dnd.el |
| 7724 | 7744 | ||
| 7725 | (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))) "\ | 7745 | (defvar dnd-protocol-alist '(("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file) ("^\\(https?\\|ftp\\|file\\|nfs\\)://" . dnd-open-file)) "\ |
| 7726 | The functions to call for different protocols when a drop is made. | 7746 | The functions to call for different protocols when a drop is made. |
| 7727 | This variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'. | 7747 | This variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'. |
| 7728 | The list contains of (REGEXP . FUNCTION) pairs. | 7748 | The list contains of (REGEXP . FUNCTION) pairs. |
| @@ -7735,15 +7755,15 @@ If no match is found, the URL is inserted as text by calling `dnd-insert-text'. | |||
| 7735 | The function shall return the action done (move, copy, link or private) | 7755 | The function shall return the action done (move, copy, link or private) |
| 7736 | if some action was made, or nil if the URL is ignored.") | 7756 | if some action was made, or nil if the URL is ignored.") |
| 7737 | 7757 | ||
| 7738 | (custom-autoload (quote dnd-protocol-alist) "dnd" t) | 7758 | (custom-autoload 'dnd-protocol-alist "dnd" t) |
| 7739 | 7759 | ||
| 7740 | ;;;*** | 7760 | ;;;*** |
| 7741 | 7761 | ||
| 7742 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" | 7762 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" |
| 7743 | ;;;;;; "textmodes/dns-mode.el" (18104 24771)) | 7763 | ;;;;;; "textmodes/dns-mode.el" (18088 55119)) |
| 7744 | ;;; Generated autoloads from textmodes/dns-mode.el | 7764 | ;;; Generated autoloads from textmodes/dns-mode.el |
| 7745 | 7765 | ||
| 7746 | (autoload (quote dns-mode) "dns-mode" "\ | 7766 | (autoload 'dns-mode "dns-mode" "\ |
| 7747 | Major mode for viewing and editing DNS master files. | 7767 | Major mode for viewing and editing DNS master files. |
| 7748 | This mode is inherited from text mode. It add syntax | 7768 | This mode is inherited from text mode. It add syntax |
| 7749 | highlighting, and some commands for handling DNS master files. | 7769 | highlighting, and some commands for handling DNS master files. |
| @@ -7756,7 +7776,7 @@ Turning on DNS mode runs `dns-mode-hook'. | |||
| 7756 | \(fn)" t nil) | 7776 | \(fn)" t nil) |
| 7757 | (defalias 'zone-mode 'dns-mode) | 7777 | (defalias 'zone-mode 'dns-mode) |
| 7758 | 7778 | ||
| 7759 | (autoload (quote dns-mode-soa-increment-serial) "dns-mode" "\ | 7779 | (autoload 'dns-mode-soa-increment-serial "dns-mode" "\ |
| 7760 | Locate SOA record and increment the serial field. | 7780 | Locate SOA record and increment the serial field. |
| 7761 | 7781 | ||
| 7762 | \(fn)" t nil) | 7782 | \(fn)" t nil) |
| @@ -7764,42 +7784,48 @@ Locate SOA record and increment the serial field. | |||
| 7764 | 7784 | ||
| 7765 | ;;;*** | 7785 | ;;;*** |
| 7766 | 7786 | ||
| 7767 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (18104 24760)) | 7787 | ;;;### (autoloads (doc-view-mode) "doc-view" "doc-view.el" (18201 |
| 7788 | ;;;;;; 33325)) | ||
| 7789 | ;;; Generated autoloads from doc-view.el | ||
| 7790 | |||
| 7791 | (autoload 'doc-view-mode "doc-view" "\ | ||
| 7792 | Major mode in DocView buffers. | ||
| 7793 | You can use \\<doc-view-mode-map>\\[doc-view-toggle-display] to | ||
| 7794 | toggle between display as a set of images and display as text. | ||
| 7795 | |||
| 7796 | \(fn)" t nil) | ||
| 7797 | |||
| 7798 | ;;;*** | ||
| 7799 | |||
| 7800 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (18088 55113)) | ||
| 7768 | ;;; Generated autoloads from play/doctor.el | 7801 | ;;; Generated autoloads from play/doctor.el |
| 7769 | 7802 | ||
| 7770 | (autoload (quote doctor) "doctor" "\ | 7803 | (autoload 'doctor "doctor" "\ |
| 7771 | Switch to *doctor* buffer and start giving psychotherapy. | 7804 | Switch to *doctor* buffer and start giving psychotherapy. |
| 7772 | 7805 | ||
| 7773 | \(fn)" t nil) | 7806 | \(fn)" t nil) |
| 7774 | 7807 | ||
| 7775 | ;;;*** | 7808 | ;;;*** |
| 7776 | 7809 | ||
| 7777 | ;;;### (autoloads (double-mode double-mode) "double" "double.el" | 7810 | ;;;### (autoloads (double-mode) "double" "double.el" (18203 37786)) |
| 7778 | ;;;;;; (18104 24734)) | ||
| 7779 | ;;; Generated autoloads from double.el | 7811 | ;;; Generated autoloads from double.el |
| 7780 | 7812 | ||
| 7781 | (defvar double-mode nil "\ | 7813 | (autoload 'double-mode "double" "\ |
| 7782 | Toggle Double mode. | ||
| 7783 | Setting this variable directly does not take effect; | ||
| 7784 | use either \\[customize] or the function `double-mode'.") | ||
| 7785 | |||
| 7786 | (custom-autoload (quote double-mode) "double" nil) | ||
| 7787 | |||
| 7788 | (autoload (quote double-mode) "double" "\ | ||
| 7789 | Toggle Double mode. | 7814 | Toggle Double mode. |
| 7790 | With prefix arg, turn Double mode on iff arg is positive. | 7815 | With prefix argument ARG, turn Double mode on if ARG is positive, otherwise |
| 7816 | turn it off. | ||
| 7791 | 7817 | ||
| 7792 | When Double mode is on, some keys will insert different strings | 7818 | When Double mode is on, some keys will insert different strings |
| 7793 | when pressed twice. See variable `double-map' for details. | 7819 | when pressed twice. See variable `double-map' for details. |
| 7794 | 7820 | ||
| 7795 | \(fn ARG)" t nil) | 7821 | \(fn &optional ARG)" t nil) |
| 7796 | 7822 | ||
| 7797 | ;;;*** | 7823 | ;;;*** |
| 7798 | 7824 | ||
| 7799 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (18104 24761)) | 7825 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (18088 55113)) |
| 7800 | ;;; Generated autoloads from play/dunnet.el | 7826 | ;;; Generated autoloads from play/dunnet.el |
| 7801 | 7827 | ||
| 7802 | (autoload (quote dunnet) "dunnet" "\ | 7828 | (autoload 'dunnet "dunnet" "\ |
| 7803 | Switch to *dungeon* buffer and start game. | 7829 | Switch to *dungeon* buffer and start game. |
| 7804 | 7830 | ||
| 7805 | \(fn)" t nil) | 7831 | \(fn)" t nil) |
| @@ -7807,10 +7833,10 @@ Switch to *dungeon* buffer and start game. | |||
| 7807 | ;;;*** | 7833 | ;;;*** |
| 7808 | 7834 | ||
| 7809 | ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" | 7835 | ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" |
| 7810 | ;;;;;; (18104 24750)) | 7836 | ;;;;;; (18088 55101)) |
| 7811 | ;;; Generated autoloads from gnus/earcon.el | 7837 | ;;; Generated autoloads from gnus/earcon.el |
| 7812 | 7838 | ||
| 7813 | (autoload (quote gnus-earcon-display) "earcon" "\ | 7839 | (autoload 'gnus-earcon-display "earcon" "\ |
| 7814 | Play sounds in message buffers. | 7840 | Play sounds in message buffers. |
| 7815 | 7841 | ||
| 7816 | \(fn)" t nil) | 7842 | \(fn)" t nil) |
| @@ -7819,12 +7845,12 @@ Play sounds in message buffers. | |||
| 7819 | 7845 | ||
| 7820 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap | 7846 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap |
| 7821 | ;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" | 7847 | ;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" |
| 7822 | ;;;;;; "emacs-lisp/easy-mmode.el" (18104 24747)) | 7848 | ;;;;;; "emacs-lisp/easy-mmode.el" (18201 33326)) |
| 7823 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el | 7849 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el |
| 7824 | 7850 | ||
| 7825 | (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) | 7851 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) |
| 7826 | 7852 | ||
| 7827 | (autoload (quote define-minor-mode) "easy-mmode" "\ | 7853 | (autoload 'define-minor-mode "easy-mmode" "\ |
| 7828 | Define a new minor mode MODE. | 7854 | Define a new minor mode MODE. |
| 7829 | This function defines the associated control variable MODE, keymap MODE-map, | 7855 | This function defines the associated control variable MODE, keymap MODE-map, |
| 7830 | and toggle command MODE. | 7856 | and toggle command MODE. |
| @@ -7864,11 +7890,11 @@ For example, you could write | |||
| 7864 | 7890 | ||
| 7865 | \(fn MODE DOC &optional INIT-VALUE LIGHTER KEYMAP &rest BODY)" nil (quote macro)) | 7891 | \(fn MODE DOC &optional INIT-VALUE LIGHTER KEYMAP &rest BODY)" nil (quote macro)) |
| 7866 | 7892 | ||
| 7867 | (defalias (quote easy-mmode-define-global-mode) (quote define-globalized-minor-mode)) | 7893 | (defalias 'easy-mmode-define-global-mode 'define-globalized-minor-mode) |
| 7868 | 7894 | ||
| 7869 | (defalias (quote define-global-minor-mode) (quote define-globalized-minor-mode)) | 7895 | (defalias 'define-global-minor-mode 'define-globalized-minor-mode) |
| 7870 | 7896 | ||
| 7871 | (autoload (quote define-globalized-minor-mode) "easy-mmode" "\ | 7897 | (autoload 'define-globalized-minor-mode "easy-mmode" "\ |
| 7872 | Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. | 7898 | Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. |
| 7873 | TURN-ON is a function that will be called with no args in every buffer | 7899 | TURN-ON is a function that will be called with no args in every buffer |
| 7874 | and that should try to turn MODE on if applicable for that buffer. | 7900 | and that should try to turn MODE on if applicable for that buffer. |
| @@ -7889,7 +7915,7 @@ call another major mode in their body. | |||
| 7889 | 7915 | ||
| 7890 | \(fn GLOBAL-MODE MODE TURN-ON &rest KEYS)" nil (quote macro)) | 7916 | \(fn GLOBAL-MODE MODE TURN-ON &rest KEYS)" nil (quote macro)) |
| 7891 | 7917 | ||
| 7892 | (autoload (quote easy-mmode-define-keymap) "easy-mmode" "\ | 7918 | (autoload 'easy-mmode-define-keymap "easy-mmode" "\ |
| 7893 | Return a keymap built from bindings BS. | 7919 | Return a keymap built from bindings BS. |
| 7894 | BS must be a list of (KEY . BINDING) where | 7920 | BS must be a list of (KEY . BINDING) where |
| 7895 | KEY and BINDINGS are suitable for `define-key'. | 7921 | KEY and BINDINGS are suitable for `define-key'. |
| @@ -7899,12 +7925,12 @@ ARGS is a list of additional keyword arguments. | |||
| 7899 | 7925 | ||
| 7900 | \(fn BS &optional NAME M ARGS)" nil nil) | 7926 | \(fn BS &optional NAME M ARGS)" nil nil) |
| 7901 | 7927 | ||
| 7902 | (autoload (quote easy-mmode-defmap) "easy-mmode" "\ | 7928 | (autoload 'easy-mmode-defmap "easy-mmode" "\ |
| 7903 | Not documented | 7929 | Not documented |
| 7904 | 7930 | ||
| 7905 | \(fn M BS DOC &rest ARGS)" nil (quote macro)) | 7931 | \(fn M BS DOC &rest ARGS)" nil (quote macro)) |
| 7906 | 7932 | ||
| 7907 | (autoload (quote easy-mmode-defsyntax) "easy-mmode" "\ | 7933 | (autoload 'easy-mmode-defsyntax "easy-mmode" "\ |
| 7908 | Define variable ST as a syntax-table. | 7934 | Define variable ST as a syntax-table. |
| 7909 | CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | 7935 | CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). |
| 7910 | 7936 | ||
| @@ -7913,13 +7939,13 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 7913 | ;;;*** | 7939 | ;;;*** |
| 7914 | 7940 | ||
| 7915 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define | 7941 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define |
| 7916 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (18104 | 7942 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (18120 |
| 7917 | ;;;;;; 24747)) | 7943 | ;;;;;; 34750)) |
| 7918 | ;;; Generated autoloads from emacs-lisp/easymenu.el | 7944 | ;;; Generated autoloads from emacs-lisp/easymenu.el |
| 7919 | 7945 | ||
| 7920 | (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) | 7946 | (put 'easy-menu-define 'lisp-indent-function 'defun) |
| 7921 | 7947 | ||
| 7922 | (autoload (quote easy-menu-define) "easymenu" "\ | 7948 | (autoload 'easy-menu-define "easymenu" "\ |
| 7923 | Define a menu bar submenu in maps MAPS, according to MENU. | 7949 | Define a menu bar submenu in maps MAPS, according to MENU. |
| 7924 | 7950 | ||
| 7925 | If SYMBOL is non-nil, store the menu keymap in the value of SYMBOL, | 7951 | If SYMBOL is non-nil, store the menu keymap in the value of SYMBOL, |
| @@ -8022,19 +8048,19 @@ A menu item can be a list with the same format as MENU. This is a submenu. | |||
| 8022 | 8048 | ||
| 8023 | \(fn SYMBOL MAPS DOC MENU)" nil (quote macro)) | 8049 | \(fn SYMBOL MAPS DOC MENU)" nil (quote macro)) |
| 8024 | 8050 | ||
| 8025 | (autoload (quote easy-menu-do-define) "easymenu" "\ | 8051 | (autoload 'easy-menu-do-define "easymenu" "\ |
| 8026 | Not documented | 8052 | Not documented |
| 8027 | 8053 | ||
| 8028 | \(fn SYMBOL MAPS DOC MENU)" nil nil) | 8054 | \(fn SYMBOL MAPS DOC MENU)" nil nil) |
| 8029 | 8055 | ||
| 8030 | (autoload (quote easy-menu-create-menu) "easymenu" "\ | 8056 | (autoload 'easy-menu-create-menu "easymenu" "\ |
| 8031 | Create a menu called MENU-NAME with items described in MENU-ITEMS. | 8057 | Create a menu called MENU-NAME with items described in MENU-ITEMS. |
| 8032 | MENU-NAME is a string, the name of the menu. MENU-ITEMS is a list of items | 8058 | MENU-NAME is a string, the name of the menu. MENU-ITEMS is a list of items |
| 8033 | possibly preceded by keyword pairs as described in `easy-menu-define'. | 8059 | possibly preceded by keyword pairs as described in `easy-menu-define'. |
| 8034 | 8060 | ||
| 8035 | \(fn MENU-NAME MENU-ITEMS)" nil nil) | 8061 | \(fn MENU-NAME MENU-ITEMS)" nil nil) |
| 8036 | 8062 | ||
| 8037 | (autoload (quote easy-menu-change) "easymenu" "\ | 8063 | (autoload 'easy-menu-change "easymenu" "\ |
| 8038 | Change menu found at PATH as item NAME to contain ITEMS. | 8064 | Change menu found at PATH as item NAME to contain ITEMS. |
| 8039 | PATH is a list of strings for locating the menu that | 8065 | PATH is a list of strings for locating the menu that |
| 8040 | should contain a submenu named NAME. | 8066 | should contain a submenu named NAME. |
| @@ -8063,15 +8089,15 @@ To implement dynamic menus, either call this from | |||
| 8063 | ;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer | 8089 | ;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer |
| 8064 | ;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer | 8090 | ;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer |
| 8065 | ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" | 8091 | ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" |
| 8066 | ;;;;;; "progmodes/ebnf2ps.el" (18104 24765)) | 8092 | ;;;;;; "progmodes/ebnf2ps.el" (18192 17587)) |
| 8067 | ;;; Generated autoloads from progmodes/ebnf2ps.el | 8093 | ;;; Generated autoloads from progmodes/ebnf2ps.el |
| 8068 | 8094 | ||
| 8069 | (autoload (quote ebnf-customize) "ebnf2ps" "\ | 8095 | (autoload 'ebnf-customize "ebnf2ps" "\ |
| 8070 | Customization for ebnf group. | 8096 | Customization for ebnf group. |
| 8071 | 8097 | ||
| 8072 | \(fn)" t nil) | 8098 | \(fn)" t nil) |
| 8073 | 8099 | ||
| 8074 | (autoload (quote ebnf-print-directory) "ebnf2ps" "\ | 8100 | (autoload 'ebnf-print-directory "ebnf2ps" "\ |
| 8075 | Generate and print a PostScript syntactic chart image of DIRECTORY. | 8101 | Generate and print a PostScript syntactic chart image of DIRECTORY. |
| 8076 | 8102 | ||
| 8077 | If DIRECTORY is nil, it's used `default-directory'. | 8103 | If DIRECTORY is nil, it's used `default-directory'. |
| @@ -8083,7 +8109,7 @@ See also `ebnf-print-buffer'. | |||
| 8083 | 8109 | ||
| 8084 | \(fn &optional DIRECTORY)" t nil) | 8110 | \(fn &optional DIRECTORY)" t nil) |
| 8085 | 8111 | ||
| 8086 | (autoload (quote ebnf-print-file) "ebnf2ps" "\ | 8112 | (autoload 'ebnf-print-file "ebnf2ps" "\ |
| 8087 | Generate and print a PostScript syntactic chart image of the file FILE. | 8113 | Generate and print a PostScript syntactic chart image of the file FILE. |
| 8088 | 8114 | ||
| 8089 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't | 8115 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
| @@ -8093,7 +8119,7 @@ See also `ebnf-print-buffer'. | |||
| 8093 | 8119 | ||
| 8094 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) | 8120 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) |
| 8095 | 8121 | ||
| 8096 | (autoload (quote ebnf-print-buffer) "ebnf2ps" "\ | 8122 | (autoload 'ebnf-print-buffer "ebnf2ps" "\ |
| 8097 | Generate and print a PostScript syntactic chart image of the buffer. | 8123 | Generate and print a PostScript syntactic chart image of the buffer. |
| 8098 | 8124 | ||
| 8099 | When called with a numeric prefix argument (C-u), prompts the user for | 8125 | When called with a numeric prefix argument (C-u), prompts the user for |
| @@ -8107,13 +8133,13 @@ number, prompt the user for the name of the file to save in. | |||
| 8107 | 8133 | ||
| 8108 | \(fn &optional FILENAME)" t nil) | 8134 | \(fn &optional FILENAME)" t nil) |
| 8109 | 8135 | ||
| 8110 | (autoload (quote ebnf-print-region) "ebnf2ps" "\ | 8136 | (autoload 'ebnf-print-region "ebnf2ps" "\ |
| 8111 | Generate and print a PostScript syntactic chart image of the region. | 8137 | Generate and print a PostScript syntactic chart image of the region. |
| 8112 | Like `ebnf-print-buffer', but prints just the current region. | 8138 | Like `ebnf-print-buffer', but prints just the current region. |
| 8113 | 8139 | ||
| 8114 | \(fn FROM TO &optional FILENAME)" t nil) | 8140 | \(fn FROM TO &optional FILENAME)" t nil) |
| 8115 | 8141 | ||
| 8116 | (autoload (quote ebnf-spool-directory) "ebnf2ps" "\ | 8142 | (autoload 'ebnf-spool-directory "ebnf2ps" "\ |
| 8117 | Generate and spool a PostScript syntactic chart image of DIRECTORY. | 8143 | Generate and spool a PostScript syntactic chart image of DIRECTORY. |
| 8118 | 8144 | ||
| 8119 | If DIRECTORY is nil, it's used `default-directory'. | 8145 | If DIRECTORY is nil, it's used `default-directory'. |
| @@ -8125,7 +8151,7 @@ See also `ebnf-spool-buffer'. | |||
| 8125 | 8151 | ||
| 8126 | \(fn &optional DIRECTORY)" t nil) | 8152 | \(fn &optional DIRECTORY)" t nil) |
| 8127 | 8153 | ||
| 8128 | (autoload (quote ebnf-spool-file) "ebnf2ps" "\ | 8154 | (autoload 'ebnf-spool-file "ebnf2ps" "\ |
| 8129 | Generate and spool a PostScript syntactic chart image of the file FILE. | 8155 | Generate and spool a PostScript syntactic chart image of the file FILE. |
| 8130 | 8156 | ||
| 8131 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't | 8157 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
| @@ -8135,7 +8161,7 @@ See also `ebnf-spool-buffer'. | |||
| 8135 | 8161 | ||
| 8136 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) | 8162 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) |
| 8137 | 8163 | ||
| 8138 | (autoload (quote ebnf-spool-buffer) "ebnf2ps" "\ | 8164 | (autoload 'ebnf-spool-buffer "ebnf2ps" "\ |
| 8139 | Generate and spool a PostScript syntactic chart image of the buffer. | 8165 | Generate and spool a PostScript syntactic chart image of the buffer. |
| 8140 | Like `ebnf-print-buffer' except that the PostScript image is saved in a | 8166 | Like `ebnf-print-buffer' except that the PostScript image is saved in a |
| 8141 | local buffer to be sent to the printer later. | 8167 | local buffer to be sent to the printer later. |
| @@ -8144,7 +8170,7 @@ Use the command `ebnf-despool' to send the spooled images to the printer. | |||
| 8144 | 8170 | ||
| 8145 | \(fn)" t nil) | 8171 | \(fn)" t nil) |
| 8146 | 8172 | ||
| 8147 | (autoload (quote ebnf-spool-region) "ebnf2ps" "\ | 8173 | (autoload 'ebnf-spool-region "ebnf2ps" "\ |
| 8148 | Generate a PostScript syntactic chart image of the region and spool locally. | 8174 | Generate a PostScript syntactic chart image of the region and spool locally. |
| 8149 | Like `ebnf-spool-buffer', but spools just the current region. | 8175 | Like `ebnf-spool-buffer', but spools just the current region. |
| 8150 | 8176 | ||
| @@ -8152,7 +8178,7 @@ Use the command `ebnf-despool' to send the spooled images to the printer. | |||
| 8152 | 8178 | ||
| 8153 | \(fn FROM TO)" t nil) | 8179 | \(fn FROM TO)" t nil) |
| 8154 | 8180 | ||
| 8155 | (autoload (quote ebnf-eps-directory) "ebnf2ps" "\ | 8181 | (autoload 'ebnf-eps-directory "ebnf2ps" "\ |
| 8156 | Generate EPS files from EBNF files in DIRECTORY. | 8182 | Generate EPS files from EBNF files in DIRECTORY. |
| 8157 | 8183 | ||
| 8158 | If DIRECTORY is nil, it's used `default-directory'. | 8184 | If DIRECTORY is nil, it's used `default-directory'. |
| @@ -8164,7 +8190,7 @@ See also `ebnf-eps-buffer'. | |||
| 8164 | 8190 | ||
| 8165 | \(fn &optional DIRECTORY)" t nil) | 8191 | \(fn &optional DIRECTORY)" t nil) |
| 8166 | 8192 | ||
| 8167 | (autoload (quote ebnf-eps-file) "ebnf2ps" "\ | 8193 | (autoload 'ebnf-eps-file "ebnf2ps" "\ |
| 8168 | Generate an EPS file from EBNF file FILE. | 8194 | Generate an EPS file from EBNF file FILE. |
| 8169 | 8195 | ||
| 8170 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't | 8196 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
| @@ -8174,7 +8200,7 @@ See also `ebnf-eps-buffer'. | |||
| 8174 | 8200 | ||
| 8175 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) | 8201 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) |
| 8176 | 8202 | ||
| 8177 | (autoload (quote ebnf-eps-buffer) "ebnf2ps" "\ | 8203 | (autoload 'ebnf-eps-buffer "ebnf2ps" "\ |
| 8178 | Generate a PostScript syntactic chart image of the buffer in an EPS file. | 8204 | Generate a PostScript syntactic chart image of the buffer in an EPS file. |
| 8179 | 8205 | ||
| 8180 | Generate an EPS file for each production in the buffer. | 8206 | Generate an EPS file for each production in the buffer. |
| @@ -8196,7 +8222,7 @@ WARNING: This function does *NOT* ask any confirmation to override existing | |||
| 8196 | 8222 | ||
| 8197 | \(fn)" t nil) | 8223 | \(fn)" t nil) |
| 8198 | 8224 | ||
| 8199 | (autoload (quote ebnf-eps-region) "ebnf2ps" "\ | 8225 | (autoload 'ebnf-eps-region "ebnf2ps" "\ |
| 8200 | Generate a PostScript syntactic chart image of the region in an EPS file. | 8226 | Generate a PostScript syntactic chart image of the region in an EPS file. |
| 8201 | 8227 | ||
| 8202 | Generate an EPS file for each production in the region. | 8228 | Generate an EPS file for each production in the region. |
| @@ -8218,9 +8244,9 @@ WARNING: This function does *NOT* ask any confirmation to override existing | |||
| 8218 | 8244 | ||
| 8219 | \(fn FROM TO)" t nil) | 8245 | \(fn FROM TO)" t nil) |
| 8220 | 8246 | ||
| 8221 | (defalias (quote ebnf-despool) (quote ps-despool)) | 8247 | (defalias 'ebnf-despool 'ps-despool) |
| 8222 | 8248 | ||
| 8223 | (autoload (quote ebnf-syntax-directory) "ebnf2ps" "\ | 8249 | (autoload 'ebnf-syntax-directory "ebnf2ps" "\ |
| 8224 | Do a syntactic analysis of the files in DIRECTORY. | 8250 | Do a syntactic analysis of the files in DIRECTORY. |
| 8225 | 8251 | ||
| 8226 | If DIRECTORY is nil, use `default-directory'. | 8252 | If DIRECTORY is nil, use `default-directory'. |
| @@ -8232,7 +8258,7 @@ See also `ebnf-syntax-buffer'. | |||
| 8232 | 8258 | ||
| 8233 | \(fn &optional DIRECTORY)" t nil) | 8259 | \(fn &optional DIRECTORY)" t nil) |
| 8234 | 8260 | ||
| 8235 | (autoload (quote ebnf-syntax-file) "ebnf2ps" "\ | 8261 | (autoload 'ebnf-syntax-file "ebnf2ps" "\ |
| 8236 | Do a syntactic analysis of the named FILE. | 8262 | Do a syntactic analysis of the named FILE. |
| 8237 | 8263 | ||
| 8238 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't | 8264 | If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
| @@ -8242,50 +8268,50 @@ See also `ebnf-syntax-buffer'. | |||
| 8242 | 8268 | ||
| 8243 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) | 8269 | \(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil) |
| 8244 | 8270 | ||
| 8245 | (autoload (quote ebnf-syntax-buffer) "ebnf2ps" "\ | 8271 | (autoload 'ebnf-syntax-buffer "ebnf2ps" "\ |
| 8246 | Do a syntactic analysis of the current buffer. | 8272 | Do a syntactic analysis of the current buffer. |
| 8247 | 8273 | ||
| 8248 | \(fn)" t nil) | 8274 | \(fn)" t nil) |
| 8249 | 8275 | ||
| 8250 | (autoload (quote ebnf-syntax-region) "ebnf2ps" "\ | 8276 | (autoload 'ebnf-syntax-region "ebnf2ps" "\ |
| 8251 | Do a syntactic analysis of a region. | 8277 | Do a syntactic analysis of a region. |
| 8252 | 8278 | ||
| 8253 | \(fn FROM TO)" t nil) | 8279 | \(fn FROM TO)" t nil) |
| 8254 | 8280 | ||
| 8255 | (autoload (quote ebnf-setup) "ebnf2ps" "\ | 8281 | (autoload 'ebnf-setup "ebnf2ps" "\ |
| 8256 | Return the current ebnf2ps setup. | 8282 | Return the current ebnf2ps setup. |
| 8257 | 8283 | ||
| 8258 | \(fn)" nil nil) | 8284 | \(fn)" nil nil) |
| 8259 | 8285 | ||
| 8260 | (autoload (quote ebnf-find-style) "ebnf2ps" "\ | 8286 | (autoload 'ebnf-find-style "ebnf2ps" "\ |
| 8261 | Return style definition if NAME is already defined; otherwise, return nil. | 8287 | Return style definition if NAME is already defined; otherwise, return nil. |
| 8262 | 8288 | ||
| 8263 | See `ebnf-style-database' documentation. | 8289 | See `ebnf-style-database' documentation. |
| 8264 | 8290 | ||
| 8265 | \(fn NAME)" t nil) | 8291 | \(fn NAME)" t nil) |
| 8266 | 8292 | ||
| 8267 | (autoload (quote ebnf-insert-style) "ebnf2ps" "\ | 8293 | (autoload 'ebnf-insert-style "ebnf2ps" "\ |
| 8268 | Insert a new style NAME with inheritance INHERITS and values VALUES. | 8294 | Insert a new style NAME with inheritance INHERITS and values VALUES. |
| 8269 | 8295 | ||
| 8270 | See `ebnf-style-database' documentation. | 8296 | See `ebnf-style-database' documentation. |
| 8271 | 8297 | ||
| 8272 | \(fn NAME INHERITS &rest VALUES)" t nil) | 8298 | \(fn NAME INHERITS &rest VALUES)" t nil) |
| 8273 | 8299 | ||
| 8274 | (autoload (quote ebnf-delete-style) "ebnf2ps" "\ | 8300 | (autoload 'ebnf-delete-style "ebnf2ps" "\ |
| 8275 | Delete style NAME. | 8301 | Delete style NAME. |
| 8276 | 8302 | ||
| 8277 | See `ebnf-style-database' documentation. | 8303 | See `ebnf-style-database' documentation. |
| 8278 | 8304 | ||
| 8279 | \(fn NAME)" t nil) | 8305 | \(fn NAME)" t nil) |
| 8280 | 8306 | ||
| 8281 | (autoload (quote ebnf-merge-style) "ebnf2ps" "\ | 8307 | (autoload 'ebnf-merge-style "ebnf2ps" "\ |
| 8282 | Merge values of style NAME with style VALUES. | 8308 | Merge values of style NAME with style VALUES. |
| 8283 | 8309 | ||
| 8284 | See `ebnf-style-database' documentation. | 8310 | See `ebnf-style-database' documentation. |
| 8285 | 8311 | ||
| 8286 | \(fn NAME &rest VALUES)" t nil) | 8312 | \(fn NAME &rest VALUES)" t nil) |
| 8287 | 8313 | ||
| 8288 | (autoload (quote ebnf-apply-style) "ebnf2ps" "\ | 8314 | (autoload 'ebnf-apply-style "ebnf2ps" "\ |
| 8289 | Set STYLE as the current style. | 8315 | Set STYLE as the current style. |
| 8290 | 8316 | ||
| 8291 | Returns the old style symbol. | 8317 | Returns the old style symbol. |
| @@ -8294,7 +8320,7 @@ See `ebnf-style-database' documentation. | |||
| 8294 | 8320 | ||
| 8295 | \(fn STYLE)" t nil) | 8321 | \(fn STYLE)" t nil) |
| 8296 | 8322 | ||
| 8297 | (autoload (quote ebnf-reset-style) "ebnf2ps" "\ | 8323 | (autoload 'ebnf-reset-style "ebnf2ps" "\ |
| 8298 | Reset current style. | 8324 | Reset current style. |
| 8299 | 8325 | ||
| 8300 | Returns the old style symbol. | 8326 | Returns the old style symbol. |
| @@ -8303,7 +8329,7 @@ See `ebnf-style-database' documentation. | |||
| 8303 | 8329 | ||
| 8304 | \(fn &optional STYLE)" t nil) | 8330 | \(fn &optional STYLE)" t nil) |
| 8305 | 8331 | ||
| 8306 | (autoload (quote ebnf-push-style) "ebnf2ps" "\ | 8332 | (autoload 'ebnf-push-style "ebnf2ps" "\ |
| 8307 | Push the current style onto a stack and set STYLE as the current style. | 8333 | Push the current style onto a stack and set STYLE as the current style. |
| 8308 | 8334 | ||
| 8309 | Returns the old style symbol. | 8335 | Returns the old style symbol. |
| @@ -8314,7 +8340,7 @@ See `ebnf-style-database' documentation. | |||
| 8314 | 8340 | ||
| 8315 | \(fn &optional STYLE)" t nil) | 8341 | \(fn &optional STYLE)" t nil) |
| 8316 | 8342 | ||
| 8317 | (autoload (quote ebnf-pop-style) "ebnf2ps" "\ | 8343 | (autoload 'ebnf-pop-style "ebnf2ps" "\ |
| 8318 | Pop a style from the stack of pushed styles and set it as the current style. | 8344 | Pop a style from the stack of pushed styles and set it as the current style. |
| 8319 | 8345 | ||
| 8320 | Returns the old style symbol. | 8346 | Returns the old style symbol. |
| @@ -8337,11 +8363,11 @@ See `ebnf-style-database' documentation. | |||
| 8337 | ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition | 8363 | ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition |
| 8338 | ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration | 8364 | ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration |
| 8339 | ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree | 8365 | ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree |
| 8340 | ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (18104 | 8366 | ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (18197 |
| 8341 | ;;;;;; 24765)) | 8367 | ;;;;;; 21675)) |
| 8342 | ;;; Generated autoloads from progmodes/ebrowse.el | 8368 | ;;; Generated autoloads from progmodes/ebrowse.el |
| 8343 | 8369 | ||
| 8344 | (autoload (quote ebrowse-tree-mode) "ebrowse" "\ | 8370 | (autoload 'ebrowse-tree-mode "ebrowse" "\ |
| 8345 | Major mode for Ebrowse class tree buffers. | 8371 | Major mode for Ebrowse class tree buffers. |
| 8346 | Each line corresponds to a class in a class tree. | 8372 | Each line corresponds to a class in a class tree. |
| 8347 | Letters do not insert themselves, they are commands. | 8373 | Letters do not insert themselves, they are commands. |
| @@ -8353,69 +8379,69 @@ Tree mode key bindings: | |||
| 8353 | 8379 | ||
| 8354 | \(fn)" t nil) | 8380 | \(fn)" t nil) |
| 8355 | 8381 | ||
| 8356 | (autoload (quote ebrowse-electric-choose-tree) "ebrowse" "\ | 8382 | (autoload 'ebrowse-electric-choose-tree "ebrowse" "\ |
| 8357 | Return a buffer containing a tree or nil if no tree found or canceled. | 8383 | Return a buffer containing a tree or nil if no tree found or canceled. |
| 8358 | 8384 | ||
| 8359 | \(fn)" t nil) | 8385 | \(fn)" t nil) |
| 8360 | 8386 | ||
| 8361 | (autoload (quote ebrowse-member-mode) "ebrowse" "\ | 8387 | (autoload 'ebrowse-member-mode "ebrowse" "\ |
| 8362 | Major mode for Ebrowse member buffers. | 8388 | Major mode for Ebrowse member buffers. |
| 8363 | 8389 | ||
| 8364 | \\{ebrowse-member-mode-map} | 8390 | \\{ebrowse-member-mode-map} |
| 8365 | 8391 | ||
| 8366 | \(fn)" nil nil) | 8392 | \(fn)" nil nil) |
| 8367 | 8393 | ||
| 8368 | (autoload (quote ebrowse-tags-view-declaration) "ebrowse" "\ | 8394 | (autoload 'ebrowse-tags-view-declaration "ebrowse" "\ |
| 8369 | View declaration of member at point. | 8395 | View declaration of member at point. |
| 8370 | 8396 | ||
| 8371 | \(fn)" t nil) | 8397 | \(fn)" t nil) |
| 8372 | 8398 | ||
| 8373 | (autoload (quote ebrowse-tags-find-declaration) "ebrowse" "\ | 8399 | (autoload 'ebrowse-tags-find-declaration "ebrowse" "\ |
| 8374 | Find declaration of member at point. | 8400 | Find declaration of member at point. |
| 8375 | 8401 | ||
| 8376 | \(fn)" t nil) | 8402 | \(fn)" t nil) |
| 8377 | 8403 | ||
| 8378 | (autoload (quote ebrowse-tags-view-definition) "ebrowse" "\ | 8404 | (autoload 'ebrowse-tags-view-definition "ebrowse" "\ |
| 8379 | View definition of member at point. | 8405 | View definition of member at point. |
| 8380 | 8406 | ||
| 8381 | \(fn)" t nil) | 8407 | \(fn)" t nil) |
| 8382 | 8408 | ||
| 8383 | (autoload (quote ebrowse-tags-find-definition) "ebrowse" "\ | 8409 | (autoload 'ebrowse-tags-find-definition "ebrowse" "\ |
| 8384 | Find definition of member at point. | 8410 | Find definition of member at point. |
| 8385 | 8411 | ||
| 8386 | \(fn)" t nil) | 8412 | \(fn)" t nil) |
| 8387 | 8413 | ||
| 8388 | (autoload (quote ebrowse-tags-find-declaration-other-window) "ebrowse" "\ | 8414 | (autoload 'ebrowse-tags-find-declaration-other-window "ebrowse" "\ |
| 8389 | Find declaration of member at point in other window. | 8415 | Find declaration of member at point in other window. |
| 8390 | 8416 | ||
| 8391 | \(fn)" t nil) | 8417 | \(fn)" t nil) |
| 8392 | 8418 | ||
| 8393 | (autoload (quote ebrowse-tags-view-definition-other-window) "ebrowse" "\ | 8419 | (autoload 'ebrowse-tags-view-definition-other-window "ebrowse" "\ |
| 8394 | View definition of member at point in other window. | 8420 | View definition of member at point in other window. |
| 8395 | 8421 | ||
| 8396 | \(fn)" t nil) | 8422 | \(fn)" t nil) |
| 8397 | 8423 | ||
| 8398 | (autoload (quote ebrowse-tags-find-definition-other-window) "ebrowse" "\ | 8424 | (autoload 'ebrowse-tags-find-definition-other-window "ebrowse" "\ |
| 8399 | Find definition of member at point in other window. | 8425 | Find definition of member at point in other window. |
| 8400 | 8426 | ||
| 8401 | \(fn)" t nil) | 8427 | \(fn)" t nil) |
| 8402 | 8428 | ||
| 8403 | (autoload (quote ebrowse-tags-find-declaration-other-frame) "ebrowse" "\ | 8429 | (autoload 'ebrowse-tags-find-declaration-other-frame "ebrowse" "\ |
| 8404 | Find definition of member at point in other frame. | 8430 | Find definition of member at point in other frame. |
| 8405 | 8431 | ||
| 8406 | \(fn)" t nil) | 8432 | \(fn)" t nil) |
| 8407 | 8433 | ||
| 8408 | (autoload (quote ebrowse-tags-view-definition-other-frame) "ebrowse" "\ | 8434 | (autoload 'ebrowse-tags-view-definition-other-frame "ebrowse" "\ |
| 8409 | View definition of member at point in other frame. | 8435 | View definition of member at point in other frame. |
| 8410 | 8436 | ||
| 8411 | \(fn)" t nil) | 8437 | \(fn)" t nil) |
| 8412 | 8438 | ||
| 8413 | (autoload (quote ebrowse-tags-find-definition-other-frame) "ebrowse" "\ | 8439 | (autoload 'ebrowse-tags-find-definition-other-frame "ebrowse" "\ |
| 8414 | Find definition of member at point in other frame. | 8440 | Find definition of member at point in other frame. |
| 8415 | 8441 | ||
| 8416 | \(fn)" t nil) | 8442 | \(fn)" t nil) |
| 8417 | 8443 | ||
| 8418 | (autoload (quote ebrowse-tags-complete-symbol) "ebrowse" "\ | 8444 | (autoload 'ebrowse-tags-complete-symbol "ebrowse" "\ |
| 8419 | Perform completion on the C++ symbol preceding point. | 8445 | Perform completion on the C++ symbol preceding point. |
| 8420 | A second call of this function without changing point inserts the next match. | 8446 | A second call of this function without changing point inserts the next match. |
| 8421 | A call with prefix PREFIX reads the symbol to insert from the minibuffer with | 8447 | A call with prefix PREFIX reads the symbol to insert from the minibuffer with |
| @@ -8423,27 +8449,27 @@ completion. | |||
| 8423 | 8449 | ||
| 8424 | \(fn PREFIX)" t nil) | 8450 | \(fn PREFIX)" t nil) |
| 8425 | 8451 | ||
| 8426 | (autoload (quote ebrowse-tags-loop-continue) "ebrowse" "\ | 8452 | (autoload 'ebrowse-tags-loop-continue "ebrowse" "\ |
| 8427 | Repeat last operation on files in tree. | 8453 | Repeat last operation on files in tree. |
| 8428 | FIRST-TIME non-nil means this is not a repetition, but the first time. | 8454 | FIRST-TIME non-nil means this is not a repetition, but the first time. |
| 8429 | TREE-BUFFER if indirectly specifies which files to loop over. | 8455 | TREE-BUFFER if indirectly specifies which files to loop over. |
| 8430 | 8456 | ||
| 8431 | \(fn &optional FIRST-TIME TREE-BUFFER)" t nil) | 8457 | \(fn &optional FIRST-TIME TREE-BUFFER)" t nil) |
| 8432 | 8458 | ||
| 8433 | (autoload (quote ebrowse-tags-search) "ebrowse" "\ | 8459 | (autoload 'ebrowse-tags-search "ebrowse" "\ |
| 8434 | Search for REGEXP in all files in a tree. | 8460 | Search for REGEXP in all files in a tree. |
| 8435 | If marked classes exist, process marked classes, only. | 8461 | If marked classes exist, process marked classes, only. |
| 8436 | If regular expression is nil, repeat last search. | 8462 | If regular expression is nil, repeat last search. |
| 8437 | 8463 | ||
| 8438 | \(fn REGEXP)" t nil) | 8464 | \(fn REGEXP)" t nil) |
| 8439 | 8465 | ||
| 8440 | (autoload (quote ebrowse-tags-query-replace) "ebrowse" "\ | 8466 | (autoload 'ebrowse-tags-query-replace "ebrowse" "\ |
| 8441 | Query replace FROM with TO in all files of a class tree. | 8467 | Query replace FROM with TO in all files of a class tree. |
| 8442 | With prefix arg, process files of marked classes only. | 8468 | With prefix arg, process files of marked classes only. |
| 8443 | 8469 | ||
| 8444 | \(fn FROM TO)" t nil) | 8470 | \(fn FROM TO)" t nil) |
| 8445 | 8471 | ||
| 8446 | (autoload (quote ebrowse-tags-search-member-use) "ebrowse" "\ | 8472 | (autoload 'ebrowse-tags-search-member-use "ebrowse" "\ |
| 8447 | Search for call sites of a member. | 8473 | Search for call sites of a member. |
| 8448 | If FIX-NAME is specified, search uses of that member. | 8474 | If FIX-NAME is specified, search uses of that member. |
| 8449 | Otherwise, read a member name from the minibuffer. | 8475 | Otherwise, read a member name from the minibuffer. |
| @@ -8452,36 +8478,36 @@ looks like a function call to the member. | |||
| 8452 | 8478 | ||
| 8453 | \(fn &optional FIX-NAME)" t nil) | 8479 | \(fn &optional FIX-NAME)" t nil) |
| 8454 | 8480 | ||
| 8455 | (autoload (quote ebrowse-back-in-position-stack) "ebrowse" "\ | 8481 | (autoload 'ebrowse-back-in-position-stack "ebrowse" "\ |
| 8456 | Move backward in the position stack. | 8482 | Move backward in the position stack. |
| 8457 | Prefix arg ARG says how much. | 8483 | Prefix arg ARG says how much. |
| 8458 | 8484 | ||
| 8459 | \(fn ARG)" t nil) | 8485 | \(fn ARG)" t nil) |
| 8460 | 8486 | ||
| 8461 | (autoload (quote ebrowse-forward-in-position-stack) "ebrowse" "\ | 8487 | (autoload 'ebrowse-forward-in-position-stack "ebrowse" "\ |
| 8462 | Move forward in the position stack. | 8488 | Move forward in the position stack. |
| 8463 | Prefix arg ARG says how much. | 8489 | Prefix arg ARG says how much. |
| 8464 | 8490 | ||
| 8465 | \(fn ARG)" t nil) | 8491 | \(fn ARG)" t nil) |
| 8466 | 8492 | ||
| 8467 | (autoload (quote ebrowse-electric-position-menu) "ebrowse" "\ | 8493 | (autoload 'ebrowse-electric-position-menu "ebrowse" "\ |
| 8468 | List positions in the position stack in an electric buffer. | 8494 | List positions in the position stack in an electric buffer. |
| 8469 | 8495 | ||
| 8470 | \(fn)" t nil) | 8496 | \(fn)" t nil) |
| 8471 | 8497 | ||
| 8472 | (autoload (quote ebrowse-save-tree) "ebrowse" "\ | 8498 | (autoload 'ebrowse-save-tree "ebrowse" "\ |
| 8473 | Save current tree in same file it was loaded from. | 8499 | Save current tree in same file it was loaded from. |
| 8474 | 8500 | ||
| 8475 | \(fn)" t nil) | 8501 | \(fn)" t nil) |
| 8476 | 8502 | ||
| 8477 | (autoload (quote ebrowse-save-tree-as) "ebrowse" "\ | 8503 | (autoload 'ebrowse-save-tree-as "ebrowse" "\ |
| 8478 | Write the current tree data structure to a file. | 8504 | Write the current tree data structure to a file. |
| 8479 | Read the file name from the minibuffer if interactive. | 8505 | Read the file name from the minibuffer if interactive. |
| 8480 | Otherwise, FILE-NAME specifies the file to save the tree in. | 8506 | Otherwise, FILE-NAME specifies the file to save the tree in. |
| 8481 | 8507 | ||
| 8482 | \(fn &optional FILE-NAME)" t nil) | 8508 | \(fn &optional FILE-NAME)" t nil) |
| 8483 | 8509 | ||
| 8484 | (autoload (quote ebrowse-statistics) "ebrowse" "\ | 8510 | (autoload 'ebrowse-statistics "ebrowse" "\ |
| 8485 | Display statistics for a class tree. | 8511 | Display statistics for a class tree. |
| 8486 | 8512 | ||
| 8487 | \(fn)" t nil) | 8513 | \(fn)" t nil) |
| @@ -8489,10 +8515,10 @@ Display statistics for a class tree. | |||
| 8489 | ;;;*** | 8515 | ;;;*** |
| 8490 | 8516 | ||
| 8491 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" | 8517 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" |
| 8492 | ;;;;;; (18104 24735)) | 8518 | ;;;;;; (18133 2196)) |
| 8493 | ;;; Generated autoloads from ebuff-menu.el | 8519 | ;;; Generated autoloads from ebuff-menu.el |
| 8494 | 8520 | ||
| 8495 | (autoload (quote electric-buffer-list) "ebuff-menu" "\ | 8521 | (autoload 'electric-buffer-list "ebuff-menu" "\ |
| 8496 | Pop up a buffer describing the set of Emacs buffers. | 8522 | Pop up a buffer describing the set of Emacs buffers. |
| 8497 | Vaguely like ITS lunar select buffer; combining typeoutoid buffer | 8523 | Vaguely like ITS lunar select buffer; combining typeoutoid buffer |
| 8498 | listing with menuoid buffer selection. | 8524 | listing with menuoid buffer selection. |
| @@ -8514,10 +8540,10 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 8514 | ;;;*** | 8540 | ;;;*** |
| 8515 | 8541 | ||
| 8516 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" | 8542 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" |
| 8517 | ;;;;;; "echistory.el" (18104 24735)) | 8543 | ;;;;;; "echistory.el" (18133 2196)) |
| 8518 | ;;; Generated autoloads from echistory.el | 8544 | ;;; Generated autoloads from echistory.el |
| 8519 | 8545 | ||
| 8520 | (autoload (quote Electric-command-history-redo-expression) "echistory" "\ | 8546 | (autoload 'Electric-command-history-redo-expression "echistory" "\ |
| 8521 | Edit current history line in minibuffer and execute result. | 8547 | Edit current history line in minibuffer and execute result. |
| 8522 | With prefix arg NOCONFIRM, execute current line as-is without editing. | 8548 | With prefix arg NOCONFIRM, execute current line as-is without editing. |
| 8523 | 8549 | ||
| @@ -8525,9 +8551,20 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 8525 | 8551 | ||
| 8526 | ;;;*** | 8552 | ;;;*** |
| 8527 | 8553 | ||
| 8554 | ;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el" | ||
| 8555 | ;;;;;; (18212 21473)) | ||
| 8556 | ;;; Generated autoloads from gnus/ecomplete.el | ||
| 8557 | |||
| 8558 | (autoload 'ecomplete-setup "ecomplete" "\ | ||
| 8559 | Not documented | ||
| 8560 | |||
| 8561 | \(fn)" nil nil) | ||
| 8562 | |||
| 8563 | ;;;*** | ||
| 8564 | |||
| 8528 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form | 8565 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form |
| 8529 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" | 8566 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" |
| 8530 | ;;;;;; "emacs-lisp/edebug.el" (18104 24747)) | 8567 | ;;;;;; "emacs-lisp/edebug.el" (18197 21672)) |
| 8531 | ;;; Generated autoloads from emacs-lisp/edebug.el | 8568 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 8532 | 8569 | ||
| 8533 | (defvar edebug-all-defs nil "\ | 8570 | (defvar edebug-all-defs nil "\ |
| @@ -8541,25 +8578,25 @@ variable. You may wish to make it local to each buffer with | |||
| 8541 | \(make-local-variable 'edebug-all-defs) in your | 8578 | \(make-local-variable 'edebug-all-defs) in your |
| 8542 | `emacs-lisp-mode-hook'.") | 8579 | `emacs-lisp-mode-hook'.") |
| 8543 | 8580 | ||
| 8544 | (custom-autoload (quote edebug-all-defs) "edebug" t) | 8581 | (custom-autoload 'edebug-all-defs "edebug" t) |
| 8545 | 8582 | ||
| 8546 | (defvar edebug-all-forms nil "\ | 8583 | (defvar edebug-all-forms nil "\ |
| 8547 | *Non-nil evaluation of all forms will instrument for Edebug. | 8584 | *Non-nil evaluation of all forms will instrument for Edebug. |
| 8548 | This doesn't apply to loading or evaluations in the minibuffer. | 8585 | This doesn't apply to loading or evaluations in the minibuffer. |
| 8549 | Use the command `edebug-all-forms' to toggle the value of this option.") | 8586 | Use the command `edebug-all-forms' to toggle the value of this option.") |
| 8550 | 8587 | ||
| 8551 | (custom-autoload (quote edebug-all-forms) "edebug" t) | 8588 | (custom-autoload 'edebug-all-forms "edebug" t) |
| 8552 | 8589 | ||
| 8553 | (autoload (quote edebug-basic-spec) "edebug" "\ | 8590 | (autoload 'edebug-basic-spec "edebug" "\ |
| 8554 | Return t if SPEC uses only extant spec symbols. | 8591 | Return t if SPEC uses only extant spec symbols. |
| 8555 | An extant spec symbol is a symbol that is not a function and has a | 8592 | An extant spec symbol is a symbol that is not a function and has a |
| 8556 | `edebug-form-spec' property. | 8593 | `edebug-form-spec' property. |
| 8557 | 8594 | ||
| 8558 | \(fn SPEC)" nil nil) | 8595 | \(fn SPEC)" nil nil) |
| 8559 | 8596 | ||
| 8560 | (defalias (quote edebug-defun) (quote edebug-eval-top-level-form)) | 8597 | (defalias 'edebug-defun 'edebug-eval-top-level-form) |
| 8561 | 8598 | ||
| 8562 | (autoload (quote edebug-eval-top-level-form) "edebug" "\ | 8599 | (autoload 'edebug-eval-top-level-form "edebug" "\ |
| 8563 | Evaluate the top level form point is in, stepping through with Edebug. | 8600 | Evaluate the top level form point is in, stepping through with Edebug. |
| 8564 | This is like `eval-defun' except that it steps the code for Edebug | 8601 | This is like `eval-defun' except that it steps the code for Edebug |
| 8565 | before evaluating it. It displays the value in the echo area | 8602 | before evaluating it. It displays the value in the echo area |
| @@ -8579,12 +8616,12 @@ already is one.) | |||
| 8579 | 8616 | ||
| 8580 | \(fn)" t nil) | 8617 | \(fn)" t nil) |
| 8581 | 8618 | ||
| 8582 | (autoload (quote edebug-all-defs) "edebug" "\ | 8619 | (autoload 'edebug-all-defs "edebug" "\ |
| 8583 | Toggle edebugging of all definitions. | 8620 | Toggle edebugging of all definitions. |
| 8584 | 8621 | ||
| 8585 | \(fn)" t nil) | 8622 | \(fn)" t nil) |
| 8586 | 8623 | ||
| 8587 | (autoload (quote edebug-all-forms) "edebug" "\ | 8624 | (autoload 'edebug-all-forms "edebug" "\ |
| 8588 | Toggle edebugging of all forms. | 8625 | Toggle edebugging of all forms. |
| 8589 | 8626 | ||
| 8590 | \(fn)" t nil) | 8627 | \(fn)" t nil) |
| @@ -8600,81 +8637,81 @@ Toggle edebugging of all forms. | |||
| 8600 | ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor | 8637 | ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor |
| 8601 | ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions | 8638 | ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions |
| 8602 | ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup | 8639 | ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup |
| 8603 | ;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (18104 24735)) | 8640 | ;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (18120 34749)) |
| 8604 | ;;; Generated autoloads from ediff.el | 8641 | ;;; Generated autoloads from ediff.el |
| 8605 | 8642 | ||
| 8606 | (autoload (quote ediff-files) "ediff" "\ | 8643 | (autoload 'ediff-files "ediff" "\ |
| 8607 | Run Ediff on a pair of files, FILE-A and FILE-B. | 8644 | Run Ediff on a pair of files, FILE-A and FILE-B. |
| 8608 | 8645 | ||
| 8609 | \(fn FILE-A FILE-B &optional STARTUP-HOOKS)" t nil) | 8646 | \(fn FILE-A FILE-B &optional STARTUP-HOOKS)" t nil) |
| 8610 | 8647 | ||
| 8611 | (autoload (quote ediff-files3) "ediff" "\ | 8648 | (autoload 'ediff-files3 "ediff" "\ |
| 8612 | Run Ediff on three files, FILE-A, FILE-B, and FILE-C. | 8649 | Run Ediff on three files, FILE-A, FILE-B, and FILE-C. |
| 8613 | 8650 | ||
| 8614 | \(fn FILE-A FILE-B FILE-C &optional STARTUP-HOOKS)" t nil) | 8651 | \(fn FILE-A FILE-B FILE-C &optional STARTUP-HOOKS)" t nil) |
| 8615 | 8652 | ||
| 8616 | (defalias (quote ediff3) (quote ediff-files3)) | 8653 | (defalias 'ediff3 'ediff-files3) |
| 8617 | 8654 | ||
| 8618 | (defalias (quote ediff) (quote ediff-files)) | 8655 | (defalias 'ediff 'ediff-files) |
| 8619 | 8656 | ||
| 8620 | (autoload (quote ediff-backup) "ediff" "\ | 8657 | (autoload 'ediff-backup "ediff" "\ |
| 8621 | Run Ediff on FILE and its backup file. | 8658 | Run Ediff on FILE and its backup file. |
| 8622 | Uses the latest backup, if there are several numerical backups. | 8659 | Uses the latest backup, if there are several numerical backups. |
| 8623 | If this file is a backup, `ediff' it with its original. | 8660 | If this file is a backup, `ediff' it with its original. |
| 8624 | 8661 | ||
| 8625 | \(fn FILE)" t nil) | 8662 | \(fn FILE)" t nil) |
| 8626 | 8663 | ||
| 8627 | (autoload (quote ediff-buffers) "ediff" "\ | 8664 | (autoload 'ediff-buffers "ediff" "\ |
| 8628 | Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B. | 8665 | Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B. |
| 8629 | 8666 | ||
| 8630 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME)" t nil) | 8667 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME)" t nil) |
| 8631 | 8668 | ||
| 8632 | (defalias (quote ebuffers) (quote ediff-buffers)) | 8669 | (defalias 'ebuffers 'ediff-buffers) |
| 8633 | 8670 | ||
| 8634 | (autoload (quote ediff-buffers3) "ediff" "\ | 8671 | (autoload 'ediff-buffers3 "ediff" "\ |
| 8635 | Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C. | 8672 | Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C. |
| 8636 | 8673 | ||
| 8637 | \(fn BUFFER-A BUFFER-B BUFFER-C &optional STARTUP-HOOKS JOB-NAME)" t nil) | 8674 | \(fn BUFFER-A BUFFER-B BUFFER-C &optional STARTUP-HOOKS JOB-NAME)" t nil) |
| 8638 | 8675 | ||
| 8639 | (defalias (quote ebuffers3) (quote ediff-buffers3)) | 8676 | (defalias 'ebuffers3 'ediff-buffers3) |
| 8640 | 8677 | ||
| 8641 | (autoload (quote ediff-directories) "ediff" "\ | 8678 | (autoload 'ediff-directories "ediff" "\ |
| 8642 | Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have | 8679 | Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have |
| 8643 | the same name in both. The third argument, REGEXP, is nil or a regular | 8680 | the same name in both. The third argument, REGEXP, is nil or a regular |
| 8644 | expression; only file names that match the regexp are considered. | 8681 | expression; only file names that match the regexp are considered. |
| 8645 | 8682 | ||
| 8646 | \(fn DIR1 DIR2 REGEXP)" t nil) | 8683 | \(fn DIR1 DIR2 REGEXP)" t nil) |
| 8647 | 8684 | ||
| 8648 | (defalias (quote edirs) (quote ediff-directories)) | 8685 | (defalias 'edirs 'ediff-directories) |
| 8649 | 8686 | ||
| 8650 | (autoload (quote ediff-directory-revisions) "ediff" "\ | 8687 | (autoload 'ediff-directory-revisions "ediff" "\ |
| 8651 | Run Ediff on a directory, DIR1, comparing its files with their revisions. | 8688 | Run Ediff on a directory, DIR1, comparing its files with their revisions. |
| 8652 | The second argument, REGEXP, is a regular expression that filters the file | 8689 | The second argument, REGEXP, is a regular expression that filters the file |
| 8653 | names. Only the files that are under revision control are taken into account. | 8690 | names. Only the files that are under revision control are taken into account. |
| 8654 | 8691 | ||
| 8655 | \(fn DIR1 REGEXP)" t nil) | 8692 | \(fn DIR1 REGEXP)" t nil) |
| 8656 | 8693 | ||
| 8657 | (defalias (quote edir-revisions) (quote ediff-directory-revisions)) | 8694 | (defalias 'edir-revisions 'ediff-directory-revisions) |
| 8658 | 8695 | ||
| 8659 | (autoload (quote ediff-directories3) "ediff" "\ | 8696 | (autoload 'ediff-directories3 "ediff" "\ |
| 8660 | Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that | 8697 | Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that |
| 8661 | have the same name in all three. The last argument, REGEXP, is nil or a | 8698 | have the same name in all three. The last argument, REGEXP, is nil or a |
| 8662 | regular expression; only file names that match the regexp are considered. | 8699 | regular expression; only file names that match the regexp are considered. |
| 8663 | 8700 | ||
| 8664 | \(fn DIR1 DIR2 DIR3 REGEXP)" t nil) | 8701 | \(fn DIR1 DIR2 DIR3 REGEXP)" t nil) |
| 8665 | 8702 | ||
| 8666 | (defalias (quote edirs3) (quote ediff-directories3)) | 8703 | (defalias 'edirs3 'ediff-directories3) |
| 8667 | 8704 | ||
| 8668 | (autoload (quote ediff-merge-directories) "ediff" "\ | 8705 | (autoload 'ediff-merge-directories "ediff" "\ |
| 8669 | Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have | 8706 | Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have |
| 8670 | the same name in both. The third argument, REGEXP, is nil or a regular | 8707 | the same name in both. The third argument, REGEXP, is nil or a regular |
| 8671 | expression; only file names that match the regexp are considered. | 8708 | expression; only file names that match the regexp are considered. |
| 8672 | 8709 | ||
| 8673 | \(fn DIR1 DIR2 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) | 8710 | \(fn DIR1 DIR2 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) |
| 8674 | 8711 | ||
| 8675 | (defalias (quote edirs-merge) (quote ediff-merge-directories)) | 8712 | (defalias 'edirs-merge 'ediff-merge-directories) |
| 8676 | 8713 | ||
| 8677 | (autoload (quote ediff-merge-directories-with-ancestor) "ediff" "\ | 8714 | (autoload 'ediff-merge-directories-with-ancestor "ediff" "\ |
| 8678 | Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. | 8715 | Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. |
| 8679 | Ediff merges files that have identical names in DIR1, DIR2. If a pair of files | 8716 | Ediff merges files that have identical names in DIR1, DIR2. If a pair of files |
| 8680 | in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge | 8717 | in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge |
| @@ -8683,27 +8720,27 @@ only file names that match the regexp are considered. | |||
| 8683 | 8720 | ||
| 8684 | \(fn DIR1 DIR2 ANCESTOR-DIR REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) | 8721 | \(fn DIR1 DIR2 ANCESTOR-DIR REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) |
| 8685 | 8722 | ||
| 8686 | (autoload (quote ediff-merge-directory-revisions) "ediff" "\ | 8723 | (autoload 'ediff-merge-directory-revisions "ediff" "\ |
| 8687 | Run Ediff on a directory, DIR1, merging its files with their revisions. | 8724 | Run Ediff on a directory, DIR1, merging its files with their revisions. |
| 8688 | The second argument, REGEXP, is a regular expression that filters the file | 8725 | The second argument, REGEXP, is a regular expression that filters the file |
| 8689 | names. Only the files that are under revision control are taken into account. | 8726 | names. Only the files that are under revision control are taken into account. |
| 8690 | 8727 | ||
| 8691 | \(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) | 8728 | \(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) |
| 8692 | 8729 | ||
| 8693 | (defalias (quote edir-merge-revisions) (quote ediff-merge-directory-revisions)) | 8730 | (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions) |
| 8694 | 8731 | ||
| 8695 | (autoload (quote ediff-merge-directory-revisions-with-ancestor) "ediff" "\ | 8732 | (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\ |
| 8696 | Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors. | 8733 | Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors. |
| 8697 | The second argument, REGEXP, is a regular expression that filters the file | 8734 | The second argument, REGEXP, is a regular expression that filters the file |
| 8698 | names. Only the files that are under revision control are taken into account. | 8735 | names. Only the files that are under revision control are taken into account. |
| 8699 | 8736 | ||
| 8700 | \(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) | 8737 | \(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil) |
| 8701 | 8738 | ||
| 8702 | (defalias (quote edir-merge-revisions-with-ancestor) (quote ediff-merge-directory-revisions-with-ancestor)) | 8739 | (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor) |
| 8703 | 8740 | ||
| 8704 | (defalias (quote edirs-merge-with-ancestor) (quote ediff-merge-directories-with-ancestor)) | 8741 | (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor) |
| 8705 | 8742 | ||
| 8706 | (autoload (quote ediff-windows-wordwise) "ediff" "\ | 8743 | (autoload 'ediff-windows-wordwise "ediff" "\ |
| 8707 | Compare WIND-A and WIND-B, which are selected by clicking, wordwise. | 8744 | Compare WIND-A and WIND-B, which are selected by clicking, wordwise. |
| 8708 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as | 8745 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as |
| 8709 | follows: | 8746 | follows: |
| @@ -8712,7 +8749,7 @@ If WIND-B is nil, use window next to WIND-A. | |||
| 8712 | 8749 | ||
| 8713 | \(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil) | 8750 | \(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil) |
| 8714 | 8751 | ||
| 8715 | (autoload (quote ediff-windows-linewise) "ediff" "\ | 8752 | (autoload 'ediff-windows-linewise "ediff" "\ |
| 8716 | Compare WIND-A and WIND-B, which are selected by clicking, linewise. | 8753 | Compare WIND-A and WIND-B, which are selected by clicking, linewise. |
| 8717 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as | 8754 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as |
| 8718 | follows: | 8755 | follows: |
| @@ -8721,7 +8758,7 @@ If WIND-B is nil, use window next to WIND-A. | |||
| 8721 | 8758 | ||
| 8722 | \(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil) | 8759 | \(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil) |
| 8723 | 8760 | ||
| 8724 | (autoload (quote ediff-regions-wordwise) "ediff" "\ | 8761 | (autoload 'ediff-regions-wordwise "ediff" "\ |
| 8725 | Run Ediff on a pair of regions in specified buffers. | 8762 | Run Ediff on a pair of regions in specified buffers. |
| 8726 | Regions (i.e., point and mark) can be set in advance or marked interactively. | 8763 | Regions (i.e., point and mark) can be set in advance or marked interactively. |
| 8727 | This function is effective only for relatively small regions, up to 200 | 8764 | This function is effective only for relatively small regions, up to 200 |
| @@ -8729,7 +8766,7 @@ lines. For large regions, use `ediff-regions-linewise'. | |||
| 8729 | 8766 | ||
| 8730 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil) | 8767 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil) |
| 8731 | 8768 | ||
| 8732 | (autoload (quote ediff-regions-linewise) "ediff" "\ | 8769 | (autoload 'ediff-regions-linewise "ediff" "\ |
| 8733 | Run Ediff on a pair of regions in specified buffers. | 8770 | Run Ediff on a pair of regions in specified buffers. |
| 8734 | Regions (i.e., point and mark) can be set in advance or marked interactively. | 8771 | Regions (i.e., point and mark) can be set in advance or marked interactively. |
| 8735 | Each region is enlarged to contain full lines. | 8772 | Each region is enlarged to contain full lines. |
| @@ -8738,52 +8775,52 @@ lines. For small regions, use `ediff-regions-wordwise'. | |||
| 8738 | 8775 | ||
| 8739 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil) | 8776 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil) |
| 8740 | 8777 | ||
| 8741 | (defalias (quote ediff-merge) (quote ediff-merge-files)) | 8778 | (defalias 'ediff-merge 'ediff-merge-files) |
| 8742 | 8779 | ||
| 8743 | (autoload (quote ediff-merge-files) "ediff" "\ | 8780 | (autoload 'ediff-merge-files "ediff" "\ |
| 8744 | Merge two files without ancestor. | 8781 | Merge two files without ancestor. |
| 8745 | 8782 | ||
| 8746 | \(fn FILE-A FILE-B &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) | 8783 | \(fn FILE-A FILE-B &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) |
| 8747 | 8784 | ||
| 8748 | (autoload (quote ediff-merge-files-with-ancestor) "ediff" "\ | 8785 | (autoload 'ediff-merge-files-with-ancestor "ediff" "\ |
| 8749 | Merge two files with ancestor. | 8786 | Merge two files with ancestor. |
| 8750 | 8787 | ||
| 8751 | \(fn FILE-A FILE-B FILE-ANCESTOR &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) | 8788 | \(fn FILE-A FILE-B FILE-ANCESTOR &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) |
| 8752 | 8789 | ||
| 8753 | (defalias (quote ediff-merge-with-ancestor) (quote ediff-merge-files-with-ancestor)) | 8790 | (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor) |
| 8754 | 8791 | ||
| 8755 | (autoload (quote ediff-merge-buffers) "ediff" "\ | 8792 | (autoload 'ediff-merge-buffers "ediff" "\ |
| 8756 | Merge buffers without ancestor. | 8793 | Merge buffers without ancestor. |
| 8757 | 8794 | ||
| 8758 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil) | 8795 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil) |
| 8759 | 8796 | ||
| 8760 | (autoload (quote ediff-merge-buffers-with-ancestor) "ediff" "\ | 8797 | (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\ |
| 8761 | Merge buffers with ancestor. | 8798 | Merge buffers with ancestor. |
| 8762 | 8799 | ||
| 8763 | \(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil) | 8800 | \(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil) |
| 8764 | 8801 | ||
| 8765 | (autoload (quote ediff-merge-revisions) "ediff" "\ | 8802 | (autoload 'ediff-merge-revisions "ediff" "\ |
| 8766 | Run Ediff by merging two revisions of a file. | 8803 | Run Ediff by merging two revisions of a file. |
| 8767 | The file is the optional FILE argument or the file visited by the current | 8804 | The file is the optional FILE argument or the file visited by the current |
| 8768 | buffer. | 8805 | buffer. |
| 8769 | 8806 | ||
| 8770 | \(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) | 8807 | \(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) |
| 8771 | 8808 | ||
| 8772 | (autoload (quote ediff-merge-revisions-with-ancestor) "ediff" "\ | 8809 | (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\ |
| 8773 | Run Ediff by merging two revisions of a file with a common ancestor. | 8810 | Run Ediff by merging two revisions of a file with a common ancestor. |
| 8774 | The file is the optional FILE argument or the file visited by the current | 8811 | The file is the optional FILE argument or the file visited by the current |
| 8775 | buffer. | 8812 | buffer. |
| 8776 | 8813 | ||
| 8777 | \(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) | 8814 | \(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil) |
| 8778 | 8815 | ||
| 8779 | (autoload (quote run-ediff-from-cvs-buffer) "ediff" "\ | 8816 | (autoload 'run-ediff-from-cvs-buffer "ediff" "\ |
| 8780 | Run Ediff-merge on appropriate revisions of the selected file. | 8817 | Run Ediff-merge on appropriate revisions of the selected file. |
| 8781 | First run after `M-x cvs-update'. Then place the cursor on a line describing a | 8818 | First run after `M-x cvs-update'. Then place the cursor on a line describing a |
| 8782 | file and then run `run-ediff-from-cvs-buffer'. | 8819 | file and then run `run-ediff-from-cvs-buffer'. |
| 8783 | 8820 | ||
| 8784 | \(fn POS)" t nil) | 8821 | \(fn POS)" t nil) |
| 8785 | 8822 | ||
| 8786 | (autoload (quote ediff-patch-file) "ediff" "\ | 8823 | (autoload 'ediff-patch-file "ediff" "\ |
| 8787 | Run Ediff by patching SOURCE-FILENAME. | 8824 | Run Ediff by patching SOURCE-FILENAME. |
| 8788 | If optional PATCH-BUF is given, use the patch in that buffer | 8825 | If optional PATCH-BUF is given, use the patch in that buffer |
| 8789 | and don't ask the user. | 8826 | and don't ask the user. |
| @@ -8792,7 +8829,7 @@ buffer. If odd -- assume it is in a file. | |||
| 8792 | 8829 | ||
| 8793 | \(fn &optional ARG PATCH-BUF)" t nil) | 8830 | \(fn &optional ARG PATCH-BUF)" t nil) |
| 8794 | 8831 | ||
| 8795 | (autoload (quote ediff-patch-buffer) "ediff" "\ | 8832 | (autoload 'ediff-patch-buffer "ediff" "\ |
| 8796 | Run Ediff by patching the buffer specified at prompt. | 8833 | Run Ediff by patching the buffer specified at prompt. |
| 8797 | Without the optional prefix ARG, asks if the patch is in some buffer and | 8834 | Without the optional prefix ARG, asks if the patch is in some buffer and |
| 8798 | prompts for the buffer or a file, depending on the answer. | 8835 | prompts for the buffer or a file, depending on the answer. |
| @@ -8803,11 +8840,11 @@ patch. If not given, the user is prompted according to the prefix argument. | |||
| 8803 | 8840 | ||
| 8804 | \(fn &optional ARG PATCH-BUF)" t nil) | 8841 | \(fn &optional ARG PATCH-BUF)" t nil) |
| 8805 | 8842 | ||
| 8806 | (defalias (quote epatch) (quote ediff-patch-file)) | 8843 | (defalias 'epatch 'ediff-patch-file) |
| 8807 | 8844 | ||
| 8808 | (defalias (quote epatch-buffer) (quote ediff-patch-buffer)) | 8845 | (defalias 'epatch-buffer 'ediff-patch-buffer) |
| 8809 | 8846 | ||
| 8810 | (autoload (quote ediff-revision) "ediff" "\ | 8847 | (autoload 'ediff-revision "ediff" "\ |
| 8811 | Run Ediff by comparing versions of a file. | 8848 | Run Ediff by comparing versions of a file. |
| 8812 | The file is an optional FILE argument or the file entered at the prompt. | 8849 | The file is an optional FILE argument or the file entered at the prompt. |
| 8813 | Default: the file visited by the current buffer. | 8850 | Default: the file visited by the current buffer. |
| @@ -8815,15 +8852,15 @@ Uses `vc.el' or `rcs.el' depending on `ediff-version-control-package'. | |||
| 8815 | 8852 | ||
| 8816 | \(fn &optional FILE STARTUP-HOOKS)" t nil) | 8853 | \(fn &optional FILE STARTUP-HOOKS)" t nil) |
| 8817 | 8854 | ||
| 8818 | (defalias (quote erevision) (quote ediff-revision)) | 8855 | (defalias 'erevision 'ediff-revision) |
| 8819 | 8856 | ||
| 8820 | (autoload (quote ediff-version) "ediff" "\ | 8857 | (autoload 'ediff-version "ediff" "\ |
| 8821 | Return string describing the version of Ediff. | 8858 | Return string describing the version of Ediff. |
| 8822 | When called interactively, displays the version. | 8859 | When called interactively, displays the version. |
| 8823 | 8860 | ||
| 8824 | \(fn)" t nil) | 8861 | \(fn)" t nil) |
| 8825 | 8862 | ||
| 8826 | (autoload (quote ediff-documentation) "ediff" "\ | 8863 | (autoload 'ediff-documentation "ediff" "\ |
| 8827 | Display Ediff's manual. | 8864 | Display Ediff's manual. |
| 8828 | With optional NODE, goes to that node. | 8865 | With optional NODE, goes to that node. |
| 8829 | 8866 | ||
| @@ -8832,53 +8869,53 @@ With optional NODE, goes to that node. | |||
| 8832 | ;;;*** | 8869 | ;;;*** |
| 8833 | 8870 | ||
| 8834 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" | 8871 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" |
| 8835 | ;;;;;; (18104 24735)) | 8872 | ;;;;;; (18202 3993)) |
| 8836 | ;;; Generated autoloads from ediff-help.el | 8873 | ;;; Generated autoloads from ediff-help.el |
| 8837 | 8874 | ||
| 8838 | (autoload (quote ediff-customize) "ediff-help" "\ | 8875 | (autoload 'ediff-customize "ediff-help" "\ |
| 8839 | Not documented | 8876 | Not documented |
| 8840 | 8877 | ||
| 8841 | \(fn)" t nil) | 8878 | \(fn)" t nil) |
| 8842 | 8879 | ||
| 8843 | ;;;*** | 8880 | ;;;*** |
| 8844 | 8881 | ||
| 8845 | ;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (18104 24735)) | 8882 | ;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (18203 37786)) |
| 8846 | ;;; Generated autoloads from ediff-hook.el | 8883 | ;;; Generated autoloads from ediff-hook.el |
| 8847 | 8884 | ||
| 8848 | (defvar ediff-window-setup-function) | 8885 | (defvar ediff-window-setup-function) |
| 8849 | (defmacro ediff-cond-compile-for-xemacs-or-emacs (xemacs-form emacs-form) (if (string-match "XEmacs" emacs-version) xemacs-form emacs-form)) | 8886 | (defmacro ediff-cond-compile-for-xemacs-or-emacs (xemacs-form emacs-form) (if (featurep 'xemacs) xemacs-form emacs-form)) |
| 8850 | 8887 | ||
| 8851 | (ediff-cond-compile-for-xemacs-or-emacs (defun ediff-xemacs-init-menus nil (if (featurep (quote menubar)) (progn (add-submenu (quote ("Tools")) ediff-menu "OO-Browser...") (add-submenu (quote ("Tools")) ediff-merge-menu "OO-Browser...") (add-submenu (quote ("Tools")) epatch-menu "OO-Browser...") (add-submenu (quote ("Tools")) ediff-misc-menu "OO-Browser...") (add-menu-button (quote ("Tools")) "-------" "OO-Browser...")))) nil) | 8888 | (ediff-cond-compile-for-xemacs-or-emacs (defun ediff-xemacs-init-menus nil (if (featurep 'menubar) (progn (add-submenu '("Tools") ediff-menu "OO-Browser...") (add-submenu '("Tools") ediff-merge-menu "OO-Browser...") (add-submenu '("Tools") epatch-menu "OO-Browser...") (add-submenu '("Tools") ediff-misc-menu "OO-Browser...") (add-menu-button '("Tools") "-------" "OO-Browser...")))) nil) |
| 8852 | 8889 | ||
| 8853 | (ediff-cond-compile-for-xemacs-or-emacs (progn (defvar ediff-menu (quote ("Compare" ["Two Files..." ediff-files t] ["Two Buffers..." ediff-buffers t] ["Three Files..." ediff-files3 t] ["Three Buffers..." ediff-buffers3 t] "---" ["Two Directories..." ediff-directories t] ["Three Directories..." ediff-directories3 t] "---" ["File with Revision..." ediff-revision t] ["Directory Revisions..." ediff-directory-revisions t] "---" ["Windows Word-by-word..." ediff-windows-wordwise t] ["Windows Line-by-line..." ediff-windows-linewise t] "---" ["Regions Word-by-word..." ediff-regions-wordwise t] ["Regions Line-by-line..." ediff-regions-linewise t]))) (defvar ediff-merge-menu (quote ("Merge" ["Files..." ediff-merge-files t] ["Files with Ancestor..." ediff-merge-files-with-ancestor t] ["Buffers..." ediff-merge-buffers t] ["Buffers with Ancestor..." ediff-merge-buffers-with-ancestor t] "---" ["Directories..." ediff-merge-directories t] ["Directories with Ancestor..." ediff-merge-directories-with-ancestor t] "---" ["Revisions..." ediff-merge-revisions t] ["Revisions with Ancestor..." ediff-merge-revisions-with-ancestor t] ["Directory Revisions..." ediff-merge-directory-revisions t] ["Directory Revisions with Ancestor..." ediff-merge-directory-revisions-with-ancestor t]))) (defvar epatch-menu (quote ("Apply Patch" ["To a file..." ediff-patch-file t] ["To a buffer..." ediff-patch-buffer t]))) (defvar ediff-misc-menu (quote ("Ediff Miscellanea" ["Ediff Manual" ediff-documentation t] ["Customize Ediff" ediff-customize t] ["List Ediff Sessions" ediff-show-registry t] ["Use separate frame for Ediff control buffer" ediff-toggle-multiframe :style toggle :selected (if (and (featurep (quote ediff-util)) (boundp (quote ediff-window-setup-function))) (eq ediff-window-setup-function (quote ediff-setup-windows-multiframe)))] ["Use a toolbar with Ediff control buffer" ediff-toggle-use-toolbar :style toggle :selected (if (featurep (quote ediff-tbar)) (ediff-use-toolbar-p))]))) (if (and (featurep (quote menubar)) (not (featurep (quote infodock))) (not (featurep (quote ediff-hook)))) (ediff-xemacs-init-menus))) (if (featurep (quote menu-bar)) (progn (defvar menu-bar-ediff-misc-menu (make-sparse-keymap "Ediff Miscellanea")) (fset (quote menu-bar-ediff-misc-menu) (symbol-value (quote menu-bar-ediff-misc-menu))) (defvar menu-bar-epatch-menu (make-sparse-keymap "Apply Patch")) (fset (quote menu-bar-epatch-menu) (symbol-value (quote menu-bar-epatch-menu))) (defvar menu-bar-ediff-merge-menu (make-sparse-keymap "Merge")) (fset (quote menu-bar-ediff-merge-menu) (symbol-value (quote menu-bar-ediff-merge-menu))) (defvar menu-bar-ediff-menu (make-sparse-keymap "Compare")) (fset (quote menu-bar-ediff-menu) (symbol-value (quote menu-bar-ediff-menu))) (define-key menu-bar-ediff-menu [window] (quote ("This Window and Next Window" . compare-windows))) (define-key menu-bar-ediff-menu [ediff-windows-linewise] (quote ("Windows Line-by-line..." . ediff-windows-linewise))) (define-key menu-bar-ediff-menu [ediff-windows-wordwise] (quote ("Windows Word-by-word..." . ediff-windows-wordwise))) (define-key menu-bar-ediff-menu [separator-ediff-windows] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-regions-linewise] (quote ("Regions Line-by-line..." . ediff-regions-linewise))) (define-key menu-bar-ediff-menu [ediff-regions-wordwise] (quote ("Regions Word-by-word..." . ediff-regions-wordwise))) (define-key menu-bar-ediff-menu [separator-ediff-regions] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-dir-revision] (quote ("Directory Revisions..." . ediff-directory-revisions))) (define-key menu-bar-ediff-menu [ediff-revision] (quote ("File with Revision..." . ediff-revision))) (define-key menu-bar-ediff-menu [separator-ediff-directories] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-directories3] (quote ("Three Directories..." . ediff-directories3))) (define-key menu-bar-ediff-menu [ediff-directories] (quote ("Two Directories..." . ediff-directories))) (define-key menu-bar-ediff-menu [separator-ediff-files] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-buffers3] (quote ("Three Buffers..." . ediff-buffers3))) (define-key menu-bar-ediff-menu [ediff-files3] (quote ("Three Files..." . ediff-files3))) (define-key menu-bar-ediff-menu [ediff-buffers] (quote ("Two Buffers..." . ediff-buffers))) (define-key menu-bar-ediff-menu [ediff-files] (quote ("Two Files..." . ediff-files))) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions-with-ancestor] (quote ("Directory Revisions with Ancestor..." . ediff-merge-directory-revisions-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions] (quote ("Directory Revisions..." . ediff-merge-directory-revisions))) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions-with-ancestor] (quote ("Revisions with Ancestor..." . ediff-merge-revisions-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions] (quote ("Revisions..." . ediff-merge-revisions))) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge] (quote ("--"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories-with-ancestor] (quote ("Directories with Ancestor..." . ediff-merge-directories-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories] (quote ("Directories..." . ediff-merge-directories))) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge-dirs] (quote ("--"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers-with-ancestor] (quote ("Buffers with Ancestor..." . ediff-merge-buffers-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers] (quote ("Buffers..." . ediff-merge-buffers))) (define-key menu-bar-ediff-merge-menu [ediff-merge-files-with-ancestor] (quote ("Files with Ancestor..." . ediff-merge-files-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-files] (quote ("Files..." . ediff-merge-files))) (define-key menu-bar-epatch-menu [ediff-patch-buffer] (quote ("To a Buffer..." . ediff-patch-buffer))) (define-key menu-bar-epatch-menu [ediff-patch-file] (quote ("To a File..." . ediff-patch-file))) (define-key menu-bar-ediff-misc-menu [emultiframe] (quote ("Toggle use of separate control buffer frame" . ediff-toggle-multiframe))) (define-key menu-bar-ediff-misc-menu [eregistry] (quote ("List Ediff Sessions" . ediff-show-registry))) (define-key menu-bar-ediff-misc-menu [ediff-cust] (quote ("Customize Ediff" . ediff-customize))) (define-key menu-bar-ediff-misc-menu [ediff-doc] (quote ("Ediff Manual" . ediff-documentation)))))) | 8890 | (ediff-cond-compile-for-xemacs-or-emacs (progn (defvar ediff-menu '("Compare" ["Two Files..." ediff-files t] ["Two Buffers..." ediff-buffers t] ["Three Files..." ediff-files3 t] ["Three Buffers..." ediff-buffers3 t] "---" ["Two Directories..." ediff-directories t] ["Three Directories..." ediff-directories3 t] "---" ["File with Revision..." ediff-revision t] ["Directory Revisions..." ediff-directory-revisions t] "---" ["Windows Word-by-word..." ediff-windows-wordwise t] ["Windows Line-by-line..." ediff-windows-linewise t] "---" ["Regions Word-by-word..." ediff-regions-wordwise t] ["Regions Line-by-line..." ediff-regions-linewise t])) (defvar ediff-merge-menu '("Merge" ["Files..." ediff-merge-files t] ["Files with Ancestor..." ediff-merge-files-with-ancestor t] ["Buffers..." ediff-merge-buffers t] ["Buffers with Ancestor..." ediff-merge-buffers-with-ancestor t] "---" ["Directories..." ediff-merge-directories t] ["Directories with Ancestor..." ediff-merge-directories-with-ancestor t] "---" ["Revisions..." ediff-merge-revisions t] ["Revisions with Ancestor..." ediff-merge-revisions-with-ancestor t] ["Directory Revisions..." ediff-merge-directory-revisions t] ["Directory Revisions with Ancestor..." ediff-merge-directory-revisions-with-ancestor t])) (defvar epatch-menu '("Apply Patch" ["To a file..." ediff-patch-file t] ["To a buffer..." ediff-patch-buffer t])) (defvar ediff-misc-menu '("Ediff Miscellanea" ["Ediff Manual" ediff-documentation t] ["Customize Ediff" ediff-customize t] ["List Ediff Sessions" ediff-show-registry t] ["Use separate frame for Ediff control buffer" ediff-toggle-multiframe :style toggle :selected (if (and (featurep 'ediff-util) (boundp 'ediff-window-setup-function)) (eq ediff-window-setup-function 'ediff-setup-windows-multiframe))] ["Use a toolbar with Ediff control buffer" ediff-toggle-use-toolbar :style toggle :selected (if (featurep 'ediff-tbar) (ediff-use-toolbar-p))])) (if (and (featurep 'menubar) (not (featurep 'infodock)) (not (featurep 'ediff-hook))) (ediff-xemacs-init-menus))) (if (featurep 'menu-bar) (progn (defvar menu-bar-ediff-misc-menu (make-sparse-keymap "Ediff Miscellanea")) (fset 'menu-bar-ediff-misc-menu (symbol-value 'menu-bar-ediff-misc-menu)) (defvar menu-bar-epatch-menu (make-sparse-keymap "Apply Patch")) (fset 'menu-bar-epatch-menu (symbol-value 'menu-bar-epatch-menu)) (defvar menu-bar-ediff-merge-menu (make-sparse-keymap "Merge")) (fset 'menu-bar-ediff-merge-menu (symbol-value 'menu-bar-ediff-merge-menu)) (defvar menu-bar-ediff-menu (make-sparse-keymap "Compare")) (fset 'menu-bar-ediff-menu (symbol-value 'menu-bar-ediff-menu)) (define-key menu-bar-ediff-menu [window] '("This Window and Next Window" . compare-windows)) (define-key menu-bar-ediff-menu [ediff-windows-linewise] '("Windows Line-by-line..." . ediff-windows-linewise)) (define-key menu-bar-ediff-menu [ediff-windows-wordwise] '("Windows Word-by-word..." . ediff-windows-wordwise)) (define-key menu-bar-ediff-menu [separator-ediff-windows] '("--")) (define-key menu-bar-ediff-menu [ediff-regions-linewise] '("Regions Line-by-line..." . ediff-regions-linewise)) (define-key menu-bar-ediff-menu [ediff-regions-wordwise] '("Regions Word-by-word..." . ediff-regions-wordwise)) (define-key menu-bar-ediff-menu [separator-ediff-regions] '("--")) (define-key menu-bar-ediff-menu [ediff-dir-revision] '("Directory Revisions..." . ediff-directory-revisions)) (define-key menu-bar-ediff-menu [ediff-revision] '("File with Revision..." . ediff-revision)) (define-key menu-bar-ediff-menu [separator-ediff-directories] '("--")) (define-key menu-bar-ediff-menu [ediff-directories3] '("Three Directories..." . ediff-directories3)) (define-key menu-bar-ediff-menu [ediff-directories] '("Two Directories..." . ediff-directories)) (define-key menu-bar-ediff-menu [separator-ediff-files] '("--")) (define-key menu-bar-ediff-menu [ediff-buffers3] '("Three Buffers..." . ediff-buffers3)) (define-key menu-bar-ediff-menu [ediff-files3] '("Three Files..." . ediff-files3)) (define-key menu-bar-ediff-menu [ediff-buffers] '("Two Buffers..." . ediff-buffers)) (define-key menu-bar-ediff-menu [ediff-files] '("Two Files..." . ediff-files)) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions-with-ancestor] '("Directory Revisions with Ancestor..." . ediff-merge-directory-revisions-with-ancestor)) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions] '("Directory Revisions..." . ediff-merge-directory-revisions)) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions-with-ancestor] '("Revisions with Ancestor..." . ediff-merge-revisions-with-ancestor)) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions] '("Revisions..." . ediff-merge-revisions)) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge] '("--")) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories-with-ancestor] '("Directories with Ancestor..." . ediff-merge-directories-with-ancestor)) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories] '("Directories..." . ediff-merge-directories)) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge-dirs] '("--")) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers-with-ancestor] '("Buffers with Ancestor..." . ediff-merge-buffers-with-ancestor)) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers] '("Buffers..." . ediff-merge-buffers)) (define-key menu-bar-ediff-merge-menu [ediff-merge-files-with-ancestor] '("Files with Ancestor..." . ediff-merge-files-with-ancestor)) (define-key menu-bar-ediff-merge-menu [ediff-merge-files] '("Files..." . ediff-merge-files)) (define-key menu-bar-epatch-menu [ediff-patch-buffer] '("To a Buffer..." . ediff-patch-buffer)) (define-key menu-bar-epatch-menu [ediff-patch-file] '("To a File..." . ediff-patch-file)) (define-key menu-bar-ediff-misc-menu [emultiframe] '("Toggle use of separate control buffer frame" . ediff-toggle-multiframe)) (define-key menu-bar-ediff-misc-menu [eregistry] '("List Ediff Sessions" . ediff-show-registry)) (define-key menu-bar-ediff-misc-menu [ediff-cust] '("Customize Ediff" . ediff-customize)) (define-key menu-bar-ediff-misc-menu [ediff-doc] '("Ediff Manual" . ediff-documentation))))) |
| 8854 | 8891 | ||
| 8855 | ;;;*** | 8892 | ;;;*** |
| 8856 | 8893 | ||
| 8857 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" | 8894 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" |
| 8858 | ;;;;;; (18104 24735)) | 8895 | ;;;;;; (18169 11930)) |
| 8859 | ;;; Generated autoloads from ediff-mult.el | 8896 | ;;; Generated autoloads from ediff-mult.el |
| 8860 | 8897 | ||
| 8861 | (autoload (quote ediff-show-registry) "ediff-mult" "\ | 8898 | (autoload 'ediff-show-registry "ediff-mult" "\ |
| 8862 | Display Ediff's registry. | 8899 | Display Ediff's registry. |
| 8863 | 8900 | ||
| 8864 | \(fn)" t nil) | 8901 | \(fn)" t nil) |
| 8865 | 8902 | ||
| 8866 | (defalias (quote eregistry) (quote ediff-show-registry)) | 8903 | (defalias 'eregistry 'ediff-show-registry) |
| 8867 | 8904 | ||
| 8868 | ;;;*** | 8905 | ;;;*** |
| 8869 | 8906 | ||
| 8870 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) | 8907 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) |
| 8871 | ;;;;;; "ediff-util" "ediff-util.el" (18104 24735)) | 8908 | ;;;;;; "ediff-util" "ediff-util.el" (18214 4759)) |
| 8872 | ;;; Generated autoloads from ediff-util.el | 8909 | ;;; Generated autoloads from ediff-util.el |
| 8873 | 8910 | ||
| 8874 | (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ | 8911 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ |
| 8875 | Switch from multiframe display to single-frame display and back. | 8912 | Switch from multiframe display to single-frame display and back. |
| 8876 | To change the default, set the variable `ediff-window-setup-function', | 8913 | To change the default, set the variable `ediff-window-setup-function', |
| 8877 | which see. | 8914 | which see. |
| 8878 | 8915 | ||
| 8879 | \(fn)" t nil) | 8916 | \(fn)" t nil) |
| 8880 | 8917 | ||
| 8881 | (autoload (quote ediff-toggle-use-toolbar) "ediff-util" "\ | 8918 | (autoload 'ediff-toggle-use-toolbar "ediff-util" "\ |
| 8882 | Enable or disable Ediff toolbar. | 8919 | Enable or disable Ediff toolbar. |
| 8883 | Works only in versions of Emacs that support toolbars. | 8920 | Works only in versions of Emacs that support toolbars. |
| 8884 | To change the default, set the variable `ediff-use-toolbar-p', which see. | 8921 | To change the default, set the variable `ediff-use-toolbar-p', which see. |
| @@ -8889,14 +8926,14 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. | |||
| 8889 | 8926 | ||
| 8890 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro | 8927 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro |
| 8891 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" | 8928 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" |
| 8892 | ;;;;;; (18104 24735)) | 8929 | ;;;;;; (18133 2196)) |
| 8893 | ;;; Generated autoloads from edmacro.el | 8930 | ;;; Generated autoloads from edmacro.el |
| 8894 | 8931 | ||
| 8895 | (defvar edmacro-eight-bits nil "\ | 8932 | (defvar edmacro-eight-bits nil "\ |
| 8896 | *Non-nil if edit-kbd-macro should leave 8-bit characters intact. | 8933 | *Non-nil if edit-kbd-macro should leave 8-bit characters intact. |
| 8897 | Default nil means to write characters above \\177 in octal notation.") | 8934 | Default nil means to write characters above \\177 in octal notation.") |
| 8898 | 8935 | ||
| 8899 | (autoload (quote edit-kbd-macro) "edmacro" "\ | 8936 | (autoload 'edit-kbd-macro "edmacro" "\ |
| 8900 | Edit a keyboard macro. | 8937 | Edit a keyboard macro. |
| 8901 | At the prompt, type any key sequence which is bound to a keyboard macro. | 8938 | At the prompt, type any key sequence which is bound to a keyboard macro. |
| 8902 | Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit | 8939 | Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit |
| @@ -8906,17 +8943,17 @@ With a prefix argument, format the macro in a more concise way. | |||
| 8906 | 8943 | ||
| 8907 | \(fn KEYS &optional PREFIX FINISH-HOOK STORE-HOOK)" t nil) | 8944 | \(fn KEYS &optional PREFIX FINISH-HOOK STORE-HOOK)" t nil) |
| 8908 | 8945 | ||
| 8909 | (autoload (quote edit-last-kbd-macro) "edmacro" "\ | 8946 | (autoload 'edit-last-kbd-macro "edmacro" "\ |
| 8910 | Edit the most recently defined keyboard macro. | 8947 | Edit the most recently defined keyboard macro. |
| 8911 | 8948 | ||
| 8912 | \(fn &optional PREFIX)" t nil) | 8949 | \(fn &optional PREFIX)" t nil) |
| 8913 | 8950 | ||
| 8914 | (autoload (quote edit-named-kbd-macro) "edmacro" "\ | 8951 | (autoload 'edit-named-kbd-macro "edmacro" "\ |
| 8915 | Edit a keyboard macro which has been given a name by `name-last-kbd-macro'. | 8952 | Edit a keyboard macro which has been given a name by `name-last-kbd-macro'. |
| 8916 | 8953 | ||
| 8917 | \(fn &optional PREFIX)" t nil) | 8954 | \(fn &optional PREFIX)" t nil) |
| 8918 | 8955 | ||
| 8919 | (autoload (quote read-kbd-macro) "edmacro" "\ | 8956 | (autoload 'read-kbd-macro "edmacro" "\ |
| 8920 | Read the region as a keyboard macro definition. | 8957 | Read the region as a keyboard macro definition. |
| 8921 | The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\". | 8958 | The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\". |
| 8922 | See documentation for `edmacro-mode' for details. | 8959 | See documentation for `edmacro-mode' for details. |
| @@ -8930,7 +8967,7 @@ Second argument NEED-VECTOR means to return an event vector always. | |||
| 8930 | 8967 | ||
| 8931 | \(fn START &optional END)" t nil) | 8968 | \(fn START &optional END)" t nil) |
| 8932 | 8969 | ||
| 8933 | (autoload (quote format-kbd-macro) "edmacro" "\ | 8970 | (autoload 'format-kbd-macro "edmacro" "\ |
| 8934 | Return the keyboard macro MACRO as a human-readable string. | 8971 | Return the keyboard macro MACRO as a human-readable string. |
| 8935 | This string is suitable for passing to `read-kbd-macro'. | 8972 | This string is suitable for passing to `read-kbd-macro'. |
| 8936 | Second argument VERBOSE means to put one command per line with comments. | 8973 | Second argument VERBOSE means to put one command per line with comments. |
| @@ -8942,17 +8979,17 @@ or nil, use a compact 80-column format. | |||
| 8942 | ;;;*** | 8979 | ;;;*** |
| 8943 | 8980 | ||
| 8944 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" | 8981 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" |
| 8945 | ;;;;;; "emulation/edt.el" (18104 24748)) | 8982 | ;;;;;; "emulation/edt.el" (18212 54459)) |
| 8946 | ;;; Generated autoloads from emulation/edt.el | 8983 | ;;; Generated autoloads from emulation/edt.el |
| 8947 | 8984 | ||
| 8948 | (autoload (quote edt-set-scroll-margins) "edt" "\ | 8985 | (autoload 'edt-set-scroll-margins "edt" "\ |
| 8949 | Set scroll margins. | 8986 | Set scroll margins. |
| 8950 | Argument TOP is the top margin in number of lines or percent of window. | 8987 | Argument TOP is the top margin in number of lines or percent of window. |
| 8951 | Argument BOTTOM is the bottom margin in number of lines or percent of window. | 8988 | Argument BOTTOM is the bottom margin in number of lines or percent of window. |
| 8952 | 8989 | ||
| 8953 | \(fn TOP BOTTOM)" t nil) | 8990 | \(fn TOP BOTTOM)" t nil) |
| 8954 | 8991 | ||
| 8955 | (autoload (quote edt-emulation-on) "edt" "\ | 8992 | (autoload 'edt-emulation-on "edt" "\ |
| 8956 | Turn on EDT Emulation. | 8993 | Turn on EDT Emulation. |
| 8957 | 8994 | ||
| 8958 | \(fn)" t nil) | 8995 | \(fn)" t nil) |
| @@ -8960,10 +8997,10 @@ Turn on EDT Emulation. | |||
| 8960 | ;;;*** | 8997 | ;;;*** |
| 8961 | 8998 | ||
| 8962 | ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" | 8999 | ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" |
| 8963 | ;;;;;; (18104 24735)) | 9000 | ;;;;;; (18088 55083)) |
| 8964 | ;;; Generated autoloads from ehelp.el | 9001 | ;;; Generated autoloads from ehelp.el |
| 8965 | 9002 | ||
| 8966 | (autoload (quote with-electric-help) "ehelp" "\ | 9003 | (autoload 'with-electric-help "ehelp" "\ |
| 8967 | Pop up an \"electric\" help buffer. | 9004 | Pop up an \"electric\" help buffer. |
| 8968 | THUNK is a function of no arguments which is called to initialize the | 9005 | THUNK is a function of no arguments which is called to initialize the |
| 8969 | contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be | 9006 | contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be |
| @@ -8989,7 +9026,7 @@ BUFFER is put into `default-major-mode' (or `fundamental-mode'). | |||
| 8989 | 9026 | ||
| 8990 | \(fn THUNK &optional BUFFER NOERASE MINHEIGHT)" nil nil) | 9027 | \(fn THUNK &optional BUFFER NOERASE MINHEIGHT)" nil nil) |
| 8991 | 9028 | ||
| 8992 | (autoload (quote electric-helpify) "ehelp" "\ | 9029 | (autoload 'electric-helpify "ehelp" "\ |
| 8993 | Not documented | 9030 | Not documented |
| 8994 | 9031 | ||
| 8995 | \(fn FUN &optional NAME)" nil nil) | 9032 | \(fn FUN &optional NAME)" nil nil) |
| @@ -8997,15 +9034,15 @@ Not documented | |||
| 8997 | ;;;*** | 9034 | ;;;*** |
| 8998 | 9035 | ||
| 8999 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) | 9036 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) |
| 9000 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (18104 24748)) | 9037 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (18173 8195)) |
| 9001 | ;;; Generated autoloads from emacs-lisp/eldoc.el | 9038 | ;;; Generated autoloads from emacs-lisp/eldoc.el |
| 9002 | 9039 | ||
| 9003 | (defvar eldoc-minor-mode-string " ElDoc" "\ | 9040 | (defvar eldoc-minor-mode-string " ElDoc" "\ |
| 9004 | *String to display in mode line when Eldoc Mode is enabled; nil for none.") | 9041 | *String to display in mode line when Eldoc Mode is enabled; nil for none.") |
| 9005 | 9042 | ||
| 9006 | (custom-autoload (quote eldoc-minor-mode-string) "eldoc" t) | 9043 | (custom-autoload 'eldoc-minor-mode-string "eldoc" t) |
| 9007 | 9044 | ||
| 9008 | (autoload (quote eldoc-mode) "eldoc" "\ | 9045 | (autoload 'eldoc-mode "eldoc" "\ |
| 9009 | Toggle ElDoc mode on or off. | 9046 | Toggle ElDoc mode on or off. |
| 9010 | In ElDoc mode, the echo area displays information about a | 9047 | In ElDoc mode, the echo area displays information about a |
| 9011 | function or variable in the text where point is. If point is | 9048 | function or variable in the text where point is. If point is |
| @@ -9017,7 +9054,7 @@ With prefix ARG, turn ElDoc mode on if and only if ARG is positive. | |||
| 9017 | 9054 | ||
| 9018 | \(fn &optional ARG)" t nil) | 9055 | \(fn &optional ARG)" t nil) |
| 9019 | 9056 | ||
| 9020 | (autoload (quote turn-on-eldoc-mode) "eldoc" "\ | 9057 | (autoload 'turn-on-eldoc-mode "eldoc" "\ |
| 9021 | Unequivocally turn on ElDoc mode (see command `eldoc-mode'). | 9058 | Unequivocally turn on ElDoc mode (see command `eldoc-mode'). |
| 9022 | 9059 | ||
| 9023 | \(fn)" t nil) | 9060 | \(fn)" t nil) |
| @@ -9035,11 +9072,11 @@ Emacs Lisp mode) that support Eldoc.") | |||
| 9035 | 9072 | ||
| 9036 | ;;;*** | 9073 | ;;;*** |
| 9037 | 9074 | ||
| 9038 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (18104 | 9075 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (18088 |
| 9039 | ;;;;;; 24735)) | 9076 | ;;;;;; 55083)) |
| 9040 | ;;; Generated autoloads from elide-head.el | 9077 | ;;; Generated autoloads from elide-head.el |
| 9041 | 9078 | ||
| 9042 | (autoload (quote elide-head) "elide-head" "\ | 9079 | (autoload 'elide-head "elide-head" "\ |
| 9043 | Hide header material in buffer according to `elide-head-headers-to-hide'. | 9080 | Hide header material in buffer according to `elide-head-headers-to-hide'. |
| 9044 | 9081 | ||
| 9045 | The header is made invisible with an overlay. With a prefix arg, show | 9082 | The header is made invisible with an overlay. With a prefix arg, show |
| @@ -9052,10 +9089,10 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. | |||
| 9052 | ;;;*** | 9089 | ;;;*** |
| 9053 | 9090 | ||
| 9054 | ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" | 9091 | ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" |
| 9055 | ;;;;;; (18104 24748)) | 9092 | ;;;;;; (18173 8195)) |
| 9056 | ;;; Generated autoloads from emacs-lisp/elint.el | 9093 | ;;; Generated autoloads from emacs-lisp/elint.el |
| 9057 | 9094 | ||
| 9058 | (autoload (quote elint-initialize) "elint" "\ | 9095 | (autoload 'elint-initialize "elint" "\ |
| 9059 | Initialize elint. | 9096 | Initialize elint. |
| 9060 | 9097 | ||
| 9061 | \(fn)" t nil) | 9098 | \(fn)" t nil) |
| @@ -9063,23 +9100,23 @@ Initialize elint. | |||
| 9063 | ;;;*** | 9100 | ;;;*** |
| 9064 | 9101 | ||
| 9065 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list | 9102 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list |
| 9066 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (18104 | 9103 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (18173 |
| 9067 | ;;;;;; 24748)) | 9104 | ;;;;;; 8195)) |
| 9068 | ;;; Generated autoloads from emacs-lisp/elp.el | 9105 | ;;; Generated autoloads from emacs-lisp/elp.el |
| 9069 | 9106 | ||
| 9070 | (autoload (quote elp-instrument-function) "elp" "\ | 9107 | (autoload 'elp-instrument-function "elp" "\ |
| 9071 | Instrument FUNSYM for profiling. | 9108 | Instrument FUNSYM for profiling. |
| 9072 | FUNSYM must be a symbol of a defined function. | 9109 | FUNSYM must be a symbol of a defined function. |
| 9073 | 9110 | ||
| 9074 | \(fn FUNSYM)" t nil) | 9111 | \(fn FUNSYM)" t nil) |
| 9075 | 9112 | ||
| 9076 | (autoload (quote elp-instrument-list) "elp" "\ | 9113 | (autoload 'elp-instrument-list "elp" "\ |
| 9077 | Instrument for profiling, all functions in `elp-function-list'. | 9114 | Instrument for profiling, all functions in `elp-function-list'. |
| 9078 | Use optional LIST if provided instead. | 9115 | Use optional LIST if provided instead. |
| 9079 | 9116 | ||
| 9080 | \(fn &optional LIST)" t nil) | 9117 | \(fn &optional LIST)" t nil) |
| 9081 | 9118 | ||
| 9082 | (autoload (quote elp-instrument-package) "elp" "\ | 9119 | (autoload 'elp-instrument-package "elp" "\ |
| 9083 | Instrument for profiling, all functions which start with PREFIX. | 9120 | Instrument for profiling, all functions which start with PREFIX. |
| 9084 | For example, to instrument all ELP functions, do the following: | 9121 | For example, to instrument all ELP functions, do the following: |
| 9085 | 9122 | ||
| @@ -9087,7 +9124,7 @@ For example, to instrument all ELP functions, do the following: | |||
| 9087 | 9124 | ||
| 9088 | \(fn PREFIX)" t nil) | 9125 | \(fn PREFIX)" t nil) |
| 9089 | 9126 | ||
| 9090 | (autoload (quote elp-results) "elp" "\ | 9127 | (autoload 'elp-results "elp" "\ |
| 9091 | Display current profiling results. | 9128 | Display current profiling results. |
| 9092 | If `elp-reset-after-results' is non-nil, then current profiling | 9129 | If `elp-reset-after-results' is non-nil, then current profiling |
| 9093 | information for all instrumented functions are reset after results are | 9130 | information for all instrumented functions are reset after results are |
| @@ -9098,10 +9135,10 @@ displayed. | |||
| 9098 | ;;;*** | 9135 | ;;;*** |
| 9099 | 9136 | ||
| 9100 | ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" | 9137 | ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" |
| 9101 | ;;;;;; (18104 24758)) | 9138 | ;;;;;; (18173 8195)) |
| 9102 | ;;; Generated autoloads from mail/emacsbug.el | 9139 | ;;; Generated autoloads from mail/emacsbug.el |
| 9103 | 9140 | ||
| 9104 | (autoload (quote report-emacs-bug) "emacsbug" "\ | 9141 | (autoload 'report-emacs-bug "emacsbug" "\ |
| 9105 | Report a bug in GNU Emacs. | 9142 | Report a bug in GNU Emacs. |
| 9106 | Prompts for bug subject. Leaves you in a mail buffer. | 9143 | Prompts for bug subject. Leaves you in a mail buffer. |
| 9107 | 9144 | ||
| @@ -9113,7 +9150,7 @@ Prompts for bug subject. Leaves you in a mail buffer. | |||
| 9113 | ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote | 9150 | ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote |
| 9114 | ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor | 9151 | ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor |
| 9115 | ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" | 9152 | ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" |
| 9116 | ;;;;;; "emerge.el" (17994 6715)) | 9153 | ;;;;;; "emerge.el" (18200 51264)) |
| 9117 | ;;; Generated autoloads from emerge.el | 9154 | ;;; Generated autoloads from emerge.el |
| 9118 | 9155 | ||
| 9119 | (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) | 9156 | (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) |
| @@ -9133,57 +9170,57 @@ Prompts for bug subject. Leaves you in a mail buffer. | |||
| 9133 | (define-key menu-bar-emerge-menu [emerge-buffers] | 9170 | (define-key menu-bar-emerge-menu [emerge-buffers] |
| 9134 | '("Buffers..." . emerge-buffers)) | 9171 | '("Buffers..." . emerge-buffers)) |
| 9135 | 9172 | ||
| 9136 | (autoload (quote emerge-files) "emerge" "\ | 9173 | (autoload 'emerge-files "emerge" "\ |
| 9137 | Run Emerge on two files. | 9174 | Run Emerge on two files. |
| 9138 | 9175 | ||
| 9139 | \(fn ARG FILE-A FILE-B FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) | 9176 | \(fn ARG FILE-A FILE-B FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) |
| 9140 | 9177 | ||
| 9141 | (autoload (quote emerge-files-with-ancestor) "emerge" "\ | 9178 | (autoload 'emerge-files-with-ancestor "emerge" "\ |
| 9142 | Run Emerge on two files, giving another file as the ancestor. | 9179 | Run Emerge on two files, giving another file as the ancestor. |
| 9143 | 9180 | ||
| 9144 | \(fn ARG FILE-A FILE-B FILE-ANCESTOR FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) | 9181 | \(fn ARG FILE-A FILE-B FILE-ANCESTOR FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) |
| 9145 | 9182 | ||
| 9146 | (autoload (quote emerge-buffers) "emerge" "\ | 9183 | (autoload 'emerge-buffers "emerge" "\ |
| 9147 | Run Emerge on two buffers. | 9184 | Run Emerge on two buffers. |
| 9148 | 9185 | ||
| 9149 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) | 9186 | \(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) |
| 9150 | 9187 | ||
| 9151 | (autoload (quote emerge-buffers-with-ancestor) "emerge" "\ | 9188 | (autoload 'emerge-buffers-with-ancestor "emerge" "\ |
| 9152 | Run Emerge on two buffers, giving another buffer as the ancestor. | 9189 | Run Emerge on two buffers, giving another buffer as the ancestor. |
| 9153 | 9190 | ||
| 9154 | \(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) | 9191 | \(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) |
| 9155 | 9192 | ||
| 9156 | (autoload (quote emerge-files-command) "emerge" "\ | 9193 | (autoload 'emerge-files-command "emerge" "\ |
| 9157 | Not documented | 9194 | Not documented |
| 9158 | 9195 | ||
| 9159 | \(fn)" nil nil) | 9196 | \(fn)" nil nil) |
| 9160 | 9197 | ||
| 9161 | (autoload (quote emerge-files-with-ancestor-command) "emerge" "\ | 9198 | (autoload 'emerge-files-with-ancestor-command "emerge" "\ |
| 9162 | Not documented | 9199 | Not documented |
| 9163 | 9200 | ||
| 9164 | \(fn)" nil nil) | 9201 | \(fn)" nil nil) |
| 9165 | 9202 | ||
| 9166 | (autoload (quote emerge-files-remote) "emerge" "\ | 9203 | (autoload 'emerge-files-remote "emerge" "\ |
| 9167 | Not documented | 9204 | Not documented |
| 9168 | 9205 | ||
| 9169 | \(fn FILE-A FILE-B FILE-OUT)" nil nil) | 9206 | \(fn FILE-A FILE-B FILE-OUT)" nil nil) |
| 9170 | 9207 | ||
| 9171 | (autoload (quote emerge-files-with-ancestor-remote) "emerge" "\ | 9208 | (autoload 'emerge-files-with-ancestor-remote "emerge" "\ |
| 9172 | Not documented | 9209 | Not documented |
| 9173 | 9210 | ||
| 9174 | \(fn FILE-A FILE-B FILE-ANC FILE-OUT)" nil nil) | 9211 | \(fn FILE-A FILE-B FILE-ANC FILE-OUT)" nil nil) |
| 9175 | 9212 | ||
| 9176 | (autoload (quote emerge-revisions) "emerge" "\ | 9213 | (autoload 'emerge-revisions "emerge" "\ |
| 9177 | Emerge two RCS revisions of a file. | 9214 | Emerge two RCS revisions of a file. |
| 9178 | 9215 | ||
| 9179 | \(fn ARG FILE REVISION-A REVISION-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) | 9216 | \(fn ARG FILE REVISION-A REVISION-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) |
| 9180 | 9217 | ||
| 9181 | (autoload (quote emerge-revisions-with-ancestor) "emerge" "\ | 9218 | (autoload 'emerge-revisions-with-ancestor "emerge" "\ |
| 9182 | Emerge two RCS revisions of a file, with another revision as ancestor. | 9219 | Emerge two RCS revisions of a file, with another revision as ancestor. |
| 9183 | 9220 | ||
| 9184 | \(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) | 9221 | \(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) |
| 9185 | 9222 | ||
| 9186 | (autoload (quote emerge-merge-directories) "emerge" "\ | 9223 | (autoload 'emerge-merge-directories "emerge" "\ |
| 9187 | Not documented | 9224 | Not documented |
| 9188 | 9225 | ||
| 9189 | \(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil) | 9226 | \(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil) |
| @@ -9191,11 +9228,11 @@ Not documented | |||
| 9191 | ;;;*** | 9228 | ;;;*** |
| 9192 | 9229 | ||
| 9193 | ;;;### (autoloads (encoded-kbd-setup-display) "encoded-kb" "international/encoded-kb.el" | 9230 | ;;;### (autoloads (encoded-kbd-setup-display) "encoded-kb" "international/encoded-kb.el" |
| 9194 | ;;;;;; (18104 24756)) | 9231 | ;;;;;; (18200 51265)) |
| 9195 | ;;; Generated autoloads from international/encoded-kb.el | 9232 | ;;; Generated autoloads from international/encoded-kb.el |
| 9196 | 9233 | ||
| 9197 | (autoload (quote encoded-kbd-setup-display) "encoded-kb" "\ | 9234 | (autoload 'encoded-kbd-setup-display "encoded-kb" "\ |
| 9198 | Set up a `key-translation-map' for `keyboard-coding-system' on DISPLAY. | 9235 | Set up a `input-decode-map' for `keyboard-coding-system' on DISPLAY. |
| 9199 | 9236 | ||
| 9200 | DISPLAY may be a display id, a frame, or nil for the selected frame's display. | 9237 | DISPLAY may be a display id, a frame, or nil for the selected frame's display. |
| 9201 | 9238 | ||
| @@ -9203,11 +9240,27 @@ DISPLAY may be a display id, a frame, or nil for the selected frame's display. | |||
| 9203 | 9240 | ||
| 9204 | ;;;*** | 9241 | ;;;*** |
| 9205 | 9242 | ||
| 9243 | ;;;### (autoloads (encrypt-insert-file-contents encrypt-find-model) | ||
| 9244 | ;;;;;; "encrypt" "gnus/encrypt.el" (18212 21482)) | ||
| 9245 | ;;; Generated autoloads from gnus/encrypt.el | ||
| 9246 | |||
| 9247 | (autoload 'encrypt-find-model "encrypt" "\ | ||
| 9248 | Given a filename, find a encrypt-file-alist entry | ||
| 9249 | |||
| 9250 | \(fn FILENAME)" nil nil) | ||
| 9251 | |||
| 9252 | (autoload 'encrypt-insert-file-contents "encrypt" "\ | ||
| 9253 | Decrypt FILE into the current buffer. | ||
| 9254 | |||
| 9255 | \(fn FILE &optional MODEL)" t nil) | ||
| 9256 | |||
| 9257 | ;;;*** | ||
| 9258 | |||
| 9206 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) | 9259 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) |
| 9207 | ;;;;;; "enriched" "textmodes/enriched.el" (18104 24771)) | 9260 | ;;;;;; "enriched" "textmodes/enriched.el" (18088 55119)) |
| 9208 | ;;; Generated autoloads from textmodes/enriched.el | 9261 | ;;; Generated autoloads from textmodes/enriched.el |
| 9209 | 9262 | ||
| 9210 | (autoload (quote enriched-mode) "enriched" "\ | 9263 | (autoload 'enriched-mode "enriched" "\ |
| 9211 | Minor mode for editing text/enriched files. | 9264 | Minor mode for editing text/enriched files. |
| 9212 | These are files with embedded formatting information in the MIME standard | 9265 | These are files with embedded formatting information in the MIME standard |
| 9213 | text/enriched format. | 9266 | text/enriched format. |
| @@ -9222,12 +9275,12 @@ Commands: | |||
| 9222 | 9275 | ||
| 9223 | \(fn &optional ARG)" t nil) | 9276 | \(fn &optional ARG)" t nil) |
| 9224 | 9277 | ||
| 9225 | (autoload (quote enriched-encode) "enriched" "\ | 9278 | (autoload 'enriched-encode "enriched" "\ |
| 9226 | Not documented | 9279 | Not documented |
| 9227 | 9280 | ||
| 9228 | \(fn FROM TO ORIG-BUF)" nil nil) | 9281 | \(fn FROM TO ORIG-BUF)" nil nil) |
| 9229 | 9282 | ||
| 9230 | (autoload (quote enriched-decode) "enriched" "\ | 9283 | (autoload 'enriched-decode "enriched" "\ |
| 9231 | Not documented | 9284 | Not documented |
| 9232 | 9285 | ||
| 9233 | \(fn FROM TO)" nil nil) | 9286 | \(fn FROM TO)" nil nil) |
| @@ -9235,15 +9288,15 @@ Not documented | |||
| 9235 | ;;;*** | 9288 | ;;;*** |
| 9236 | 9289 | ||
| 9237 | ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" | 9290 | ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" |
| 9238 | ;;;;;; "erc/erc.el" (18104 24749)) | 9291 | ;;;;;; "erc/erc.el" (18213 13926)) |
| 9239 | ;;; Generated autoloads from erc/erc.el | 9292 | ;;; Generated autoloads from erc/erc.el |
| 9240 | 9293 | ||
| 9241 | (autoload (quote erc-select-read-args) "erc" "\ | 9294 | (autoload 'erc-select-read-args "erc" "\ |
| 9242 | Prompt the user for values of nick, server, port, and password. | 9295 | Prompt the user for values of nick, server, port, and password. |
| 9243 | 9296 | ||
| 9244 | \(fn)" nil nil) | 9297 | \(fn)" nil nil) |
| 9245 | 9298 | ||
| 9246 | (autoload (quote erc) "erc" "\ | 9299 | (autoload 'erc "erc" "\ |
| 9247 | ERC is a powerful, modular, and extensible IRC client. | 9300 | ERC is a powerful, modular, and extensible IRC client. |
| 9248 | This function is the main entry point for ERC. | 9301 | This function is the main entry point for ERC. |
| 9249 | 9302 | ||
| @@ -9266,9 +9319,9 @@ be invoked for the values of the other parameters. | |||
| 9266 | 9319 | ||
| 9267 | \(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil) | 9320 | \(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil) |
| 9268 | 9321 | ||
| 9269 | (defalias (quote erc-select) (quote erc)) | 9322 | (defalias 'erc-select 'erc) |
| 9270 | 9323 | ||
| 9271 | (autoload (quote erc-handle-irc-url) "erc" "\ | 9324 | (autoload 'erc-handle-irc-url "erc" "\ |
| 9272 | Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD. | 9325 | Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD. |
| 9273 | If ERC is already connected to HOST:PORT, simply /join CHANNEL. | 9326 | If ERC is already connected to HOST:PORT, simply /join CHANNEL. |
| 9274 | Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | 9327 | Otherwise, connect to HOST:PORT as USER and /join CHANNEL. |
| @@ -9277,36 +9330,36 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | |||
| 9277 | 9330 | ||
| 9278 | ;;;*** | 9331 | ;;;*** |
| 9279 | 9332 | ||
| 9280 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (18104 | 9333 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (18088 |
| 9281 | ;;;;;; 24749)) | 9334 | ;;;;;; 55099)) |
| 9282 | ;;; Generated autoloads from erc/erc-autoaway.el | 9335 | ;;; Generated autoloads from erc/erc-autoaway.el |
| 9283 | (autoload 'erc-autoaway-mode "erc-autoaway") | 9336 | (autoload 'erc-autoaway-mode "erc-autoaway") |
| 9284 | 9337 | ||
| 9285 | ;;;*** | 9338 | ;;;*** |
| 9286 | 9339 | ||
| 9287 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (18104 24749)) | 9340 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (18147 59472)) |
| 9288 | ;;; Generated autoloads from erc/erc-button.el | 9341 | ;;; Generated autoloads from erc/erc-button.el |
| 9289 | (autoload 'erc-button-mode "erc-button" nil t) | 9342 | (autoload 'erc-button-mode "erc-button" nil t) |
| 9290 | 9343 | ||
| 9291 | ;;;*** | 9344 | ;;;*** |
| 9292 | 9345 | ||
| 9293 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (18104 24749)) | 9346 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (18088 55099)) |
| 9294 | ;;; Generated autoloads from erc/erc-capab.el | 9347 | ;;; Generated autoloads from erc/erc-capab.el |
| 9295 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) | 9348 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) |
| 9296 | 9349 | ||
| 9297 | ;;;*** | 9350 | ;;;*** |
| 9298 | 9351 | ||
| 9299 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (18104 24749)) | 9352 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (18147 59472)) |
| 9300 | ;;; Generated autoloads from erc/erc-compat.el | 9353 | ;;; Generated autoloads from erc/erc-compat.el |
| 9301 | (autoload 'erc-define-minor-mode "erc-compat") | 9354 | (autoload 'erc-define-minor-mode "erc-compat") |
| 9302 | 9355 | ||
| 9303 | ;;;*** | 9356 | ;;;*** |
| 9304 | 9357 | ||
| 9305 | ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) | 9358 | ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) |
| 9306 | ;;;;;; "erc-dcc" "erc/erc-dcc.el" (18104 24749)) | 9359 | ;;;;;; "erc-dcc" "erc/erc-dcc.el" (18088 55099)) |
| 9307 | ;;; Generated autoloads from erc/erc-dcc.el | 9360 | ;;; Generated autoloads from erc/erc-dcc.el |
| 9308 | 9361 | ||
| 9309 | (autoload (quote erc-cmd-DCC) "erc-dcc" "\ | 9362 | (autoload 'erc-cmd-DCC "erc-dcc" "\ |
| 9310 | Parser for /dcc command. | 9363 | Parser for /dcc command. |
| 9311 | This figures out the dcc subcommand and calls the appropriate routine to | 9364 | This figures out the dcc subcommand and calls the appropriate routine to |
| 9312 | handle it. The function dispatched should be named \"erc-dcc-do-FOO-command\", | 9365 | handle it. The function dispatched should be named \"erc-dcc-do-FOO-command\", |
| @@ -9314,15 +9367,15 @@ where FOO is one of CLOSE, GET, SEND, LIST, CHAT, etc. | |||
| 9314 | 9367 | ||
| 9315 | \(fn CMD &rest ARGS)" nil nil) | 9368 | \(fn CMD &rest ARGS)" nil nil) |
| 9316 | 9369 | ||
| 9317 | (autoload (quote pcomplete/erc-mode/DCC) "erc-dcc" "\ | 9370 | (autoload 'pcomplete/erc-mode/DCC "erc-dcc" "\ |
| 9318 | Provides completion for the /DCC command. | 9371 | Provides completion for the /DCC command. |
| 9319 | 9372 | ||
| 9320 | \(fn)" nil nil) | 9373 | \(fn)" nil nil) |
| 9321 | 9374 | ||
| 9322 | (defvar erc-ctcp-query-DCC-hook (quote (erc-ctcp-query-DCC)) "\ | 9375 | (defvar erc-ctcp-query-DCC-hook '(erc-ctcp-query-DCC) "\ |
| 9323 | Hook variable for CTCP DCC queries") | 9376 | Hook variable for CTCP DCC queries") |
| 9324 | 9377 | ||
| 9325 | (autoload (quote erc-ctcp-query-DCC) "erc-dcc" "\ | 9378 | (autoload 'erc-ctcp-query-DCC "erc-dcc" "\ |
| 9326 | The function called when a CTCP DCC request is detected by the client. | 9379 | The function called when a CTCP DCC request is detected by the client. |
| 9327 | It examines the DCC subcommand, and calls the appropriate routine for | 9380 | It examines the DCC subcommand, and calls the appropriate routine for |
| 9328 | that subcommand. | 9381 | that subcommand. |
| @@ -9335,74 +9388,74 @@ that subcommand. | |||
| 9335 | ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list | 9388 | ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list |
| 9336 | ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action | 9389 | ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action |
| 9337 | ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" | 9390 | ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" |
| 9338 | ;;;;;; (18104 24749)) | 9391 | ;;;;;; (18088 55099)) |
| 9339 | ;;; Generated autoloads from erc/erc-ezbounce.el | 9392 | ;;; Generated autoloads from erc/erc-ezbounce.el |
| 9340 | 9393 | ||
| 9341 | (autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ | 9394 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ |
| 9342 | Send EZB commands to the EZBouncer verbatim. | 9395 | Send EZB commands to the EZBouncer verbatim. |
| 9343 | 9396 | ||
| 9344 | \(fn LINE &optional FORCE)" nil nil) | 9397 | \(fn LINE &optional FORCE)" nil nil) |
| 9345 | 9398 | ||
| 9346 | (autoload (quote erc-ezb-get-login) "erc-ezbounce" "\ | 9399 | (autoload 'erc-ezb-get-login "erc-ezbounce" "\ |
| 9347 | Return an appropriate EZBounce login for SERVER and PORT. | 9400 | Return an appropriate EZBounce login for SERVER and PORT. |
| 9348 | Look up entries in `erc-ezb-login-alist'. If the username or password | 9401 | Look up entries in `erc-ezb-login-alist'. If the username or password |
| 9349 | in the alist is `nil', prompt for the appropriate values. | 9402 | in the alist is `nil', prompt for the appropriate values. |
| 9350 | 9403 | ||
| 9351 | \(fn SERVER PORT)" nil nil) | 9404 | \(fn SERVER PORT)" nil nil) |
| 9352 | 9405 | ||
| 9353 | (autoload (quote erc-ezb-lookup-action) "erc-ezbounce" "\ | 9406 | (autoload 'erc-ezb-lookup-action "erc-ezbounce" "\ |
| 9354 | Not documented | 9407 | Not documented |
| 9355 | 9408 | ||
| 9356 | \(fn MESSAGE)" nil nil) | 9409 | \(fn MESSAGE)" nil nil) |
| 9357 | 9410 | ||
| 9358 | (autoload (quote erc-ezb-notice-autodetect) "erc-ezbounce" "\ | 9411 | (autoload 'erc-ezb-notice-autodetect "erc-ezbounce" "\ |
| 9359 | React on an EZBounce NOTICE request. | 9412 | React on an EZBounce NOTICE request. |
| 9360 | 9413 | ||
| 9361 | \(fn PROC PARSED)" nil nil) | 9414 | \(fn PROC PARSED)" nil nil) |
| 9362 | 9415 | ||
| 9363 | (autoload (quote erc-ezb-identify) "erc-ezbounce" "\ | 9416 | (autoload 'erc-ezb-identify "erc-ezbounce" "\ |
| 9364 | Identify to the EZBouncer server. | 9417 | Identify to the EZBouncer server. |
| 9365 | 9418 | ||
| 9366 | \(fn MESSAGE)" nil nil) | 9419 | \(fn MESSAGE)" nil nil) |
| 9367 | 9420 | ||
| 9368 | (autoload (quote erc-ezb-init-session-list) "erc-ezbounce" "\ | 9421 | (autoload 'erc-ezb-init-session-list "erc-ezbounce" "\ |
| 9369 | Reset the EZBounce session list to nil. | 9422 | Reset the EZBounce session list to nil. |
| 9370 | 9423 | ||
| 9371 | \(fn MESSAGE)" nil nil) | 9424 | \(fn MESSAGE)" nil nil) |
| 9372 | 9425 | ||
| 9373 | (autoload (quote erc-ezb-end-of-session-list) "erc-ezbounce" "\ | 9426 | (autoload 'erc-ezb-end-of-session-list "erc-ezbounce" "\ |
| 9374 | Indicate the end of the EZBounce session listing. | 9427 | Indicate the end of the EZBounce session listing. |
| 9375 | 9428 | ||
| 9376 | \(fn MESSAGE)" nil nil) | 9429 | \(fn MESSAGE)" nil nil) |
| 9377 | 9430 | ||
| 9378 | (autoload (quote erc-ezb-add-session) "erc-ezbounce" "\ | 9431 | (autoload 'erc-ezb-add-session "erc-ezbounce" "\ |
| 9379 | Add an EZBounce session to the session list. | 9432 | Add an EZBounce session to the session list. |
| 9380 | 9433 | ||
| 9381 | \(fn MESSAGE)" nil nil) | 9434 | \(fn MESSAGE)" nil nil) |
| 9382 | 9435 | ||
| 9383 | (autoload (quote erc-ezb-select) "erc-ezbounce" "\ | 9436 | (autoload 'erc-ezb-select "erc-ezbounce" "\ |
| 9384 | Select an IRC server to use by EZBounce, in ERC style. | 9437 | Select an IRC server to use by EZBounce, in ERC style. |
| 9385 | 9438 | ||
| 9386 | \(fn MESSAGE)" nil nil) | 9439 | \(fn MESSAGE)" nil nil) |
| 9387 | 9440 | ||
| 9388 | (autoload (quote erc-ezb-select-session) "erc-ezbounce" "\ | 9441 | (autoload 'erc-ezb-select-session "erc-ezbounce" "\ |
| 9389 | Select a detached EZBounce session. | 9442 | Select a detached EZBounce session. |
| 9390 | 9443 | ||
| 9391 | \(fn)" nil nil) | 9444 | \(fn)" nil nil) |
| 9392 | 9445 | ||
| 9393 | (autoload (quote erc-ezb-initialize) "erc-ezbounce" "\ | 9446 | (autoload 'erc-ezb-initialize "erc-ezbounce" "\ |
| 9394 | Add EZBouncer convenience functions to ERC. | 9447 | Add EZBouncer convenience functions to ERC. |
| 9395 | 9448 | ||
| 9396 | \(fn)" nil nil) | 9449 | \(fn)" nil nil) |
| 9397 | 9450 | ||
| 9398 | ;;;*** | 9451 | ;;;*** |
| 9399 | 9452 | ||
| 9400 | ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (18104 | 9453 | ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (18088 |
| 9401 | ;;;;;; 24749)) | 9454 | ;;;;;; 55099)) |
| 9402 | ;;; Generated autoloads from erc/erc-fill.el | 9455 | ;;; Generated autoloads from erc/erc-fill.el |
| 9403 | (autoload 'erc-fill-mode "erc-fill" nil t) | 9456 | (autoload 'erc-fill-mode "erc-fill" nil t) |
| 9404 | 9457 | ||
| 9405 | (autoload (quote erc-fill) "erc-fill" "\ | 9458 | (autoload 'erc-fill "erc-fill" "\ |
| 9406 | Fill a region using the function referenced in `erc-fill-function'. | 9459 | Fill a region using the function referenced in `erc-fill-function'. |
| 9407 | You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. | 9460 | You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. |
| 9408 | 9461 | ||
| @@ -9410,19 +9463,19 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. | |||
| 9410 | 9463 | ||
| 9411 | ;;;*** | 9464 | ;;;*** |
| 9412 | 9465 | ||
| 9413 | ;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (18104 | 9466 | ;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (18088 |
| 9414 | ;;;;;; 24749)) | 9467 | ;;;;;; 55099)) |
| 9415 | ;;; Generated autoloads from erc/erc-hecomplete.el | 9468 | ;;; Generated autoloads from erc/erc-hecomplete.el |
| 9416 | (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t) | 9469 | (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t) |
| 9417 | 9470 | ||
| 9418 | ;;;*** | 9471 | ;;;*** |
| 9419 | 9472 | ||
| 9420 | ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" | 9473 | ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" |
| 9421 | ;;;;;; "erc/erc-identd.el" (18104 24749)) | 9474 | ;;;;;; "erc/erc-identd.el" (18147 59472)) |
| 9422 | ;;; Generated autoloads from erc/erc-identd.el | 9475 | ;;; Generated autoloads from erc/erc-identd.el |
| 9423 | (autoload 'erc-identd-mode "erc-identd") | 9476 | (autoload 'erc-identd-mode "erc-identd") |
| 9424 | 9477 | ||
| 9425 | (autoload (quote erc-identd-start) "erc-identd" "\ | 9478 | (autoload 'erc-identd-start "erc-identd" "\ |
| 9426 | Start an identd server listening to port 8113. | 9479 | Start an identd server listening to port 8113. |
| 9427 | Port 113 (auth) will need to be redirected to port 8113 on your | 9480 | Port 113 (auth) will need to be redirected to port 8113 on your |
| 9428 | machine -- using iptables, or a program like redir which can be | 9481 | machine -- using iptables, or a program like redir which can be |
| @@ -9432,7 +9485,7 @@ system. | |||
| 9432 | 9485 | ||
| 9433 | \(fn &optional PORT)" t nil) | 9486 | \(fn &optional PORT)" t nil) |
| 9434 | 9487 | ||
| 9435 | (autoload (quote erc-identd-stop) "erc-identd" "\ | 9488 | (autoload 'erc-identd-stop "erc-identd" "\ |
| 9436 | Not documented | 9489 | Not documented |
| 9437 | 9490 | ||
| 9438 | \(fn &rest IGNORE)" t nil) | 9491 | \(fn &rest IGNORE)" t nil) |
| @@ -9440,28 +9493,28 @@ Not documented | |||
| 9440 | ;;;*** | 9493 | ;;;*** |
| 9441 | 9494 | ||
| 9442 | ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" | 9495 | ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" |
| 9443 | ;;;;;; (18104 24749)) | 9496 | ;;;;;; (18088 55099)) |
| 9444 | ;;; Generated autoloads from erc/erc-imenu.el | 9497 | ;;; Generated autoloads from erc/erc-imenu.el |
| 9445 | 9498 | ||
| 9446 | (autoload (quote erc-create-imenu-index) "erc-imenu" "\ | 9499 | (autoload 'erc-create-imenu-index "erc-imenu" "\ |
| 9447 | Not documented | 9500 | Not documented |
| 9448 | 9501 | ||
| 9449 | \(fn)" nil nil) | 9502 | \(fn)" nil nil) |
| 9450 | 9503 | ||
| 9451 | ;;;*** | 9504 | ;;;*** |
| 9452 | 9505 | ||
| 9453 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (18104 24749)) | 9506 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (18088 55099)) |
| 9454 | ;;; Generated autoloads from erc/erc-join.el | 9507 | ;;; Generated autoloads from erc/erc-join.el |
| 9455 | (autoload 'erc-autojoin-mode "erc-join" nil t) | 9508 | (autoload 'erc-autojoin-mode "erc-join" nil t) |
| 9456 | 9509 | ||
| 9457 | ;;;*** | 9510 | ;;;*** |
| 9458 | 9511 | ||
| 9459 | ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" | 9512 | ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" |
| 9460 | ;;;;;; "erc/erc-log.el" (18104 24749)) | 9513 | ;;;;;; "erc/erc-log.el" (18213 13926)) |
| 9461 | ;;; Generated autoloads from erc/erc-log.el | 9514 | ;;; Generated autoloads from erc/erc-log.el |
| 9462 | (autoload 'erc-log-mode "erc-log" nil t) | 9515 | (autoload 'erc-log-mode "erc-log" nil t) |
| 9463 | 9516 | ||
| 9464 | (autoload (quote erc-logging-enabled) "erc-log" "\ | 9517 | (autoload 'erc-logging-enabled "erc-log" "\ |
| 9465 | Return non-nil if logging is enabled for BUFFER. | 9518 | Return non-nil if logging is enabled for BUFFER. |
| 9466 | If BUFFER is nil, the value of `current-buffer' is used. | 9519 | If BUFFER is nil, the value of `current-buffer' is used. |
| 9467 | Logging is enabled if `erc-log-channels-directory' is non-nil, the directory | 9520 | Logging is enabled if `erc-log-channels-directory' is non-nil, the directory |
| @@ -9470,7 +9523,7 @@ is writeable (it will be created as necessary) and | |||
| 9470 | 9523 | ||
| 9471 | \(fn &optional BUFFER)" nil nil) | 9524 | \(fn &optional BUFFER)" nil nil) |
| 9472 | 9525 | ||
| 9473 | (autoload (quote erc-save-buffer-in-logs) "erc-log" "\ | 9526 | (autoload 'erc-save-buffer-in-logs "erc-log" "\ |
| 9474 | Append BUFFER contents to the log file, if logging is enabled. | 9527 | Append BUFFER contents to the log file, if logging is enabled. |
| 9475 | If BUFFER is not provided, current buffer is used. | 9528 | If BUFFER is not provided, current buffer is used. |
| 9476 | Logging is enabled if `erc-logging-enabled' returns non-nil. | 9529 | Logging is enabled if `erc-logging-enabled' returns non-nil. |
| @@ -9489,64 +9542,64 @@ You can save every individual message by putting this function on | |||
| 9489 | ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host | 9542 | ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host |
| 9490 | ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool | 9543 | ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool |
| 9491 | ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" | 9544 | ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" |
| 9492 | ;;;;;; (18104 24749)) | 9545 | ;;;;;; (18088 55100)) |
| 9493 | ;;; Generated autoloads from erc/erc-match.el | 9546 | ;;; Generated autoloads from erc/erc-match.el |
| 9494 | (autoload 'erc-match-mode "erc-match") | 9547 | (autoload 'erc-match-mode "erc-match") |
| 9495 | 9548 | ||
| 9496 | (autoload (quote erc-add-pal) "erc-match" "\ | 9549 | (autoload 'erc-add-pal "erc-match" "\ |
| 9497 | Add pal interactively to `erc-pals'. | 9550 | Add pal interactively to `erc-pals'. |
| 9498 | 9551 | ||
| 9499 | \(fn)" t nil) | 9552 | \(fn)" t nil) |
| 9500 | 9553 | ||
| 9501 | (autoload (quote erc-delete-pal) "erc-match" "\ | 9554 | (autoload 'erc-delete-pal "erc-match" "\ |
| 9502 | Delete pal interactively to `erc-pals'. | 9555 | Delete pal interactively to `erc-pals'. |
| 9503 | 9556 | ||
| 9504 | \(fn)" t nil) | 9557 | \(fn)" t nil) |
| 9505 | 9558 | ||
| 9506 | (autoload (quote erc-add-fool) "erc-match" "\ | 9559 | (autoload 'erc-add-fool "erc-match" "\ |
| 9507 | Add fool interactively to `erc-fools'. | 9560 | Add fool interactively to `erc-fools'. |
| 9508 | 9561 | ||
| 9509 | \(fn)" t nil) | 9562 | \(fn)" t nil) |
| 9510 | 9563 | ||
| 9511 | (autoload (quote erc-delete-fool) "erc-match" "\ | 9564 | (autoload 'erc-delete-fool "erc-match" "\ |
| 9512 | Delete fool interactively to `erc-fools'. | 9565 | Delete fool interactively to `erc-fools'. |
| 9513 | 9566 | ||
| 9514 | \(fn)" t nil) | 9567 | \(fn)" t nil) |
| 9515 | 9568 | ||
| 9516 | (autoload (quote erc-add-keyword) "erc-match" "\ | 9569 | (autoload 'erc-add-keyword "erc-match" "\ |
| 9517 | Add keyword interactively to `erc-keywords'. | 9570 | Add keyword interactively to `erc-keywords'. |
| 9518 | 9571 | ||
| 9519 | \(fn)" t nil) | 9572 | \(fn)" t nil) |
| 9520 | 9573 | ||
| 9521 | (autoload (quote erc-delete-keyword) "erc-match" "\ | 9574 | (autoload 'erc-delete-keyword "erc-match" "\ |
| 9522 | Delete keyword interactively to `erc-keywords'. | 9575 | Delete keyword interactively to `erc-keywords'. |
| 9523 | 9576 | ||
| 9524 | \(fn)" t nil) | 9577 | \(fn)" t nil) |
| 9525 | 9578 | ||
| 9526 | (autoload (quote erc-add-dangerous-host) "erc-match" "\ | 9579 | (autoload 'erc-add-dangerous-host "erc-match" "\ |
| 9527 | Add dangerous-host interactively to `erc-dangerous-hosts'. | 9580 | Add dangerous-host interactively to `erc-dangerous-hosts'. |
| 9528 | 9581 | ||
| 9529 | \(fn)" t nil) | 9582 | \(fn)" t nil) |
| 9530 | 9583 | ||
| 9531 | (autoload (quote erc-delete-dangerous-host) "erc-match" "\ | 9584 | (autoload 'erc-delete-dangerous-host "erc-match" "\ |
| 9532 | Delete dangerous-host interactively to `erc-dangerous-hosts'. | 9585 | Delete dangerous-host interactively to `erc-dangerous-hosts'. |
| 9533 | 9586 | ||
| 9534 | \(fn)" t nil) | 9587 | \(fn)" t nil) |
| 9535 | 9588 | ||
| 9536 | ;;;*** | 9589 | ;;;*** |
| 9537 | 9590 | ||
| 9538 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (18104 24749)) | 9591 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (18088 55100)) |
| 9539 | ;;; Generated autoloads from erc/erc-menu.el | 9592 | ;;; Generated autoloads from erc/erc-menu.el |
| 9540 | (autoload 'erc-menu-mode "erc-menu" nil t) | 9593 | (autoload 'erc-menu-mode "erc-menu" nil t) |
| 9541 | 9594 | ||
| 9542 | ;;;*** | 9595 | ;;;*** |
| 9543 | 9596 | ||
| 9544 | ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" | 9597 | ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" |
| 9545 | ;;;;;; (18104 24749)) | 9598 | ;;;;;; (18088 55100)) |
| 9546 | ;;; Generated autoloads from erc/erc-netsplit.el | 9599 | ;;; Generated autoloads from erc/erc-netsplit.el |
| 9547 | (autoload 'erc-netsplit-mode "erc-netsplit") | 9600 | (autoload 'erc-netsplit-mode "erc-netsplit") |
| 9548 | 9601 | ||
| 9549 | (autoload (quote erc-cmd-WHOLEFT) "erc-netsplit" "\ | 9602 | (autoload 'erc-cmd-WHOLEFT "erc-netsplit" "\ |
| 9550 | Show who's gone. | 9603 | Show who's gone. |
| 9551 | 9604 | ||
| 9552 | \(fn)" nil nil) | 9605 | \(fn)" nil nil) |
| @@ -9554,17 +9607,17 @@ Show who's gone. | |||
| 9554 | ;;;*** | 9607 | ;;;*** |
| 9555 | 9608 | ||
| 9556 | ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" | 9609 | ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" |
| 9557 | ;;;;;; "erc/erc-networks.el" (18104 24749)) | 9610 | ;;;;;; "erc/erc-networks.el" (18088 55100)) |
| 9558 | ;;; Generated autoloads from erc/erc-networks.el | 9611 | ;;; Generated autoloads from erc/erc-networks.el |
| 9559 | 9612 | ||
| 9560 | (autoload (quote erc-determine-network) "erc-networks" "\ | 9613 | (autoload 'erc-determine-network "erc-networks" "\ |
| 9561 | Return the name of the network or \"Unknown\" as a symbol. Use the | 9614 | Return the name of the network or \"Unknown\" as a symbol. Use the |
| 9562 | server parameter NETWORK if provided, otherwise parse the server name and | 9615 | server parameter NETWORK if provided, otherwise parse the server name and |
| 9563 | search for a match in `erc-networks-alist'. | 9616 | search for a match in `erc-networks-alist'. |
| 9564 | 9617 | ||
| 9565 | \(fn)" nil nil) | 9618 | \(fn)" nil nil) |
| 9566 | 9619 | ||
| 9567 | (autoload (quote erc-server-select) "erc-networks" "\ | 9620 | (autoload 'erc-server-select "erc-networks" "\ |
| 9568 | Interactively select a server to connect to using `erc-server-alist'. | 9621 | Interactively select a server to connect to using `erc-server-alist'. |
| 9569 | 9622 | ||
| 9570 | \(fn)" t nil) | 9623 | \(fn)" t nil) |
| @@ -9572,60 +9625,60 @@ Interactively select a server to connect to using `erc-server-alist'. | |||
| 9572 | ;;;*** | 9625 | ;;;*** |
| 9573 | 9626 | ||
| 9574 | ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" | 9627 | ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" |
| 9575 | ;;;;;; "erc/erc-notify.el" (18104 24749)) | 9628 | ;;;;;; "erc/erc-notify.el" (18088 55100)) |
| 9576 | ;;; Generated autoloads from erc/erc-notify.el | 9629 | ;;; Generated autoloads from erc/erc-notify.el |
| 9577 | (autoload 'erc-notify-mode "erc-notify" nil t) | 9630 | (autoload 'erc-notify-mode "erc-notify" nil t) |
| 9578 | 9631 | ||
| 9579 | (autoload (quote erc-cmd-NOTIFY) "erc-notify" "\ | 9632 | (autoload 'erc-cmd-NOTIFY "erc-notify" "\ |
| 9580 | Change `erc-notify-list' or list current notify-list members online. | 9633 | Change `erc-notify-list' or list current notify-list members online. |
| 9581 | Without args, list the current list of notificated people online, | 9634 | Without args, list the current list of notificated people online, |
| 9582 | with args, toggle notify status of people. | 9635 | with args, toggle notify status of people. |
| 9583 | 9636 | ||
| 9584 | \(fn &rest ARGS)" nil nil) | 9637 | \(fn &rest ARGS)" nil nil) |
| 9585 | 9638 | ||
| 9586 | (autoload (quote pcomplete/erc-mode/NOTIFY) "erc-notify" "\ | 9639 | (autoload 'pcomplete/erc-mode/NOTIFY "erc-notify" "\ |
| 9587 | Not documented | 9640 | Not documented |
| 9588 | 9641 | ||
| 9589 | \(fn)" nil nil) | 9642 | \(fn)" nil nil) |
| 9590 | 9643 | ||
| 9591 | ;;;*** | 9644 | ;;;*** |
| 9592 | 9645 | ||
| 9593 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (18104 24749)) | 9646 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (18088 55100)) |
| 9594 | ;;; Generated autoloads from erc/erc-page.el | 9647 | ;;; Generated autoloads from erc/erc-page.el |
| 9595 | (autoload 'erc-page-mode "erc-page") | 9648 | (autoload 'erc-page-mode "erc-page") |
| 9596 | 9649 | ||
| 9597 | ;;;*** | 9650 | ;;;*** |
| 9598 | 9651 | ||
| 9599 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (18104 | 9652 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (18088 |
| 9600 | ;;;;;; 24749)) | 9653 | ;;;;;; 55100)) |
| 9601 | ;;; Generated autoloads from erc/erc-pcomplete.el | 9654 | ;;; Generated autoloads from erc/erc-pcomplete.el |
| 9602 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) | 9655 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) |
| 9603 | 9656 | ||
| 9604 | ;;;*** | 9657 | ;;;*** |
| 9605 | 9658 | ||
| 9606 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (18104 24749)) | 9659 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (18088 55100)) |
| 9607 | ;;; Generated autoloads from erc/erc-replace.el | 9660 | ;;; Generated autoloads from erc/erc-replace.el |
| 9608 | (autoload 'erc-replace-mode "erc-replace") | 9661 | (autoload 'erc-replace-mode "erc-replace") |
| 9609 | 9662 | ||
| 9610 | ;;;*** | 9663 | ;;;*** |
| 9611 | 9664 | ||
| 9612 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (18104 24749)) | 9665 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (18088 55100)) |
| 9613 | ;;; Generated autoloads from erc/erc-ring.el | 9666 | ;;; Generated autoloads from erc/erc-ring.el |
| 9614 | (autoload 'erc-ring-mode "erc-ring" nil t) | 9667 | (autoload 'erc-ring-mode "erc-ring" nil t) |
| 9615 | 9668 | ||
| 9616 | ;;;*** | 9669 | ;;;*** |
| 9617 | 9670 | ||
| 9618 | ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) | 9671 | ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) |
| 9619 | ;;;;;; "erc-services" "erc/erc-services.el" (18104 24749)) | 9672 | ;;;;;; "erc-services" "erc/erc-services.el" (18088 55100)) |
| 9620 | ;;; Generated autoloads from erc/erc-services.el | 9673 | ;;; Generated autoloads from erc/erc-services.el |
| 9621 | (autoload 'erc-services-mode "erc-services" nil t) | 9674 | (autoload 'erc-services-mode "erc-services" nil t) |
| 9622 | 9675 | ||
| 9623 | (autoload (quote erc-nickserv-identify-mode) "erc-services" "\ | 9676 | (autoload 'erc-nickserv-identify-mode "erc-services" "\ |
| 9624 | Set up hooks according to which MODE the user has chosen. | 9677 | Set up hooks according to which MODE the user has chosen. |
| 9625 | 9678 | ||
| 9626 | \(fn MODE)" t nil) | 9679 | \(fn MODE)" t nil) |
| 9627 | 9680 | ||
| 9628 | (autoload (quote erc-nickserv-identify) "erc-services" "\ | 9681 | (autoload 'erc-nickserv-identify "erc-services" "\ |
| 9629 | Send an \"identify <PASSWORD>\" message to NickServ. | 9682 | Send an \"identify <PASSWORD>\" message to NickServ. |
| 9630 | When called interactively, read the password using `read-passwd'. | 9683 | When called interactively, read the password using `read-passwd'. |
| 9631 | 9684 | ||
| @@ -9633,17 +9686,17 @@ When called interactively, read the password using `read-passwd'. | |||
| 9633 | 9686 | ||
| 9634 | ;;;*** | 9687 | ;;;*** |
| 9635 | 9688 | ||
| 9636 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (18104 24749)) | 9689 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (18161 20995)) |
| 9637 | ;;; Generated autoloads from erc/erc-sound.el | 9690 | ;;; Generated autoloads from erc/erc-sound.el |
| 9638 | (autoload 'erc-sound-mode "erc-sound") | 9691 | (autoload 'erc-sound-mode "erc-sound") |
| 9639 | 9692 | ||
| 9640 | ;;;*** | 9693 | ;;;*** |
| 9641 | 9694 | ||
| 9642 | ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" | 9695 | ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" |
| 9643 | ;;;;;; (18104 24749)) | 9696 | ;;;;;; (18088 55100)) |
| 9644 | ;;; Generated autoloads from erc/erc-speedbar.el | 9697 | ;;; Generated autoloads from erc/erc-speedbar.el |
| 9645 | 9698 | ||
| 9646 | (autoload (quote erc-speedbar-browser) "erc-speedbar" "\ | 9699 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ |
| 9647 | Initialize speedbar to display an ERC browser. | 9700 | Initialize speedbar to display an ERC browser. |
| 9648 | This will add a speedbar major display mode. | 9701 | This will add a speedbar major display mode. |
| 9649 | 9702 | ||
| @@ -9651,30 +9704,30 @@ This will add a speedbar major display mode. | |||
| 9651 | 9704 | ||
| 9652 | ;;;*** | 9705 | ;;;*** |
| 9653 | 9706 | ||
| 9654 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (18104 | 9707 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (18088 |
| 9655 | ;;;;;; 24749)) | 9708 | ;;;;;; 55100)) |
| 9656 | ;;; Generated autoloads from erc/erc-spelling.el | 9709 | ;;; Generated autoloads from erc/erc-spelling.el |
| 9657 | (autoload 'erc-spelling-mode "erc-spelling" nil t) | 9710 | (autoload 'erc-spelling-mode "erc-spelling" nil t) |
| 9658 | 9711 | ||
| 9659 | ;;;*** | 9712 | ;;;*** |
| 9660 | 9713 | ||
| 9661 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (18104 24749)) | 9714 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (18214 4763)) |
| 9662 | ;;; Generated autoloads from erc/erc-stamp.el | 9715 | ;;; Generated autoloads from erc/erc-stamp.el |
| 9663 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) | 9716 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) |
| 9664 | 9717 | ||
| 9665 | ;;;*** | 9718 | ;;;*** |
| 9666 | 9719 | ||
| 9667 | ;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" | 9720 | ;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" |
| 9668 | ;;;;;; (18104 24749)) | 9721 | ;;;;;; (18213 13926)) |
| 9669 | ;;; Generated autoloads from erc/erc-track.el | 9722 | ;;; Generated autoloads from erc/erc-track.el |
| 9670 | 9723 | ||
| 9671 | (defvar erc-track-minor-mode nil "\ | 9724 | (defvar erc-track-minor-mode nil "\ |
| 9672 | Non-nil if Erc-Track minor mode is enabled. | 9725 | Non-nil if Erc-Track minor mode is enabled. |
| 9673 | See the command `erc-track-minor-mode' for a description of this minor mode.") | 9726 | See the command `erc-track-minor-mode' for a description of this minor mode.") |
| 9674 | 9727 | ||
| 9675 | (custom-autoload (quote erc-track-minor-mode) "erc-track" nil) | 9728 | (custom-autoload 'erc-track-minor-mode "erc-track" nil) |
| 9676 | 9729 | ||
| 9677 | (autoload (quote erc-track-minor-mode) "erc-track" "\ | 9730 | (autoload 'erc-track-minor-mode "erc-track" "\ |
| 9678 | Global minor mode for tracking ERC buffers and showing activity in the | 9731 | Global minor mode for tracking ERC buffers and showing activity in the |
| 9679 | mode line. | 9732 | mode line. |
| 9680 | 9733 | ||
| @@ -9688,18 +9741,18 @@ module, otherwise the keybindings will not do anything useful. | |||
| 9688 | ;;;*** | 9741 | ;;;*** |
| 9689 | 9742 | ||
| 9690 | ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) | 9743 | ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) |
| 9691 | ;;;;;; "erc-truncate" "erc/erc-truncate.el" (18104 24749)) | 9744 | ;;;;;; "erc-truncate" "erc/erc-truncate.el" (18088 55100)) |
| 9692 | ;;; Generated autoloads from erc/erc-truncate.el | 9745 | ;;; Generated autoloads from erc/erc-truncate.el |
| 9693 | (autoload 'erc-truncate-mode "erc-truncate" nil t) | 9746 | (autoload 'erc-truncate-mode "erc-truncate" nil t) |
| 9694 | 9747 | ||
| 9695 | (autoload (quote erc-truncate-buffer-to-size) "erc-truncate" "\ | 9748 | (autoload 'erc-truncate-buffer-to-size "erc-truncate" "\ |
| 9696 | Truncates the buffer to the size SIZE. | 9749 | Truncates the buffer to the size SIZE. |
| 9697 | If BUFFER is not provided, the current buffer is assumed. The deleted | 9750 | If BUFFER is not provided, the current buffer is assumed. The deleted |
| 9698 | region is logged if `erc-logging-enabled' returns non-nil. | 9751 | region is logged if `erc-logging-enabled' returns non-nil. |
| 9699 | 9752 | ||
| 9700 | \(fn SIZE &optional BUFFER)" nil nil) | 9753 | \(fn SIZE &optional BUFFER)" nil nil) |
| 9701 | 9754 | ||
| 9702 | (autoload (quote erc-truncate-buffer) "erc-truncate" "\ | 9755 | (autoload 'erc-truncate-buffer "erc-truncate" "\ |
| 9703 | Truncates the current buffer to `erc-max-buffer-size'. | 9756 | Truncates the current buffer to `erc-max-buffer-size'. |
| 9704 | Meant to be used in hooks, like `erc-insert-post-hook'. | 9757 | Meant to be used in hooks, like `erc-insert-post-hook'. |
| 9705 | 9758 | ||
| @@ -9708,21 +9761,21 @@ Meant to be used in hooks, like `erc-insert-post-hook'. | |||
| 9708 | ;;;*** | 9761 | ;;;*** |
| 9709 | 9762 | ||
| 9710 | ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" | 9763 | ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" |
| 9711 | ;;;;;; (18104 24749)) | 9764 | ;;;;;; (18088 55100)) |
| 9712 | ;;; Generated autoloads from erc/erc-xdcc.el | 9765 | ;;; Generated autoloads from erc/erc-xdcc.el |
| 9713 | 9766 | ||
| 9714 | (autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ | 9767 | (autoload 'erc-xdcc-add-file "erc-xdcc" "\ |
| 9715 | Add a file to `erc-xdcc-files'. | 9768 | Add a file to `erc-xdcc-files'. |
| 9716 | 9769 | ||
| 9717 | \(fn FILE)" t nil) | 9770 | \(fn FILE)" t nil) |
| 9718 | 9771 | ||
| 9719 | ;;;*** | 9772 | ;;;*** |
| 9720 | 9773 | ||
| 9721 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (18104 | 9774 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (18203 |
| 9722 | ;;;;;; 24749)) | 9775 | ;;;;;; 37788)) |
| 9723 | ;;; Generated autoloads from eshell/esh-mode.el | 9776 | ;;; Generated autoloads from eshell/esh-mode.el |
| 9724 | 9777 | ||
| 9725 | (autoload (quote eshell-mode) "esh-mode" "\ | 9778 | (autoload 'eshell-mode "esh-mode" "\ |
| 9726 | Emacs shell interactive mode. | 9779 | Emacs shell interactive mode. |
| 9727 | 9780 | ||
| 9728 | \\{eshell-mode-map} | 9781 | \\{eshell-mode-map} |
| @@ -9731,11 +9784,11 @@ Emacs shell interactive mode. | |||
| 9731 | 9784 | ||
| 9732 | ;;;*** | 9785 | ;;;*** |
| 9733 | 9786 | ||
| 9734 | ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (18104 | 9787 | ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (18088 |
| 9735 | ;;;;;; 24749)) | 9788 | ;;;;;; 55101)) |
| 9736 | ;;; Generated autoloads from eshell/esh-test.el | 9789 | ;;; Generated autoloads from eshell/esh-test.el |
| 9737 | 9790 | ||
| 9738 | (autoload (quote eshell-test) "esh-test" "\ | 9791 | (autoload 'eshell-test "esh-test" "\ |
| 9739 | Test Eshell to verify that it works as expected. | 9792 | Test Eshell to verify that it works as expected. |
| 9740 | 9793 | ||
| 9741 | \(fn &optional ARG)" t nil) | 9794 | \(fn &optional ARG)" t nil) |
| @@ -9743,10 +9796,10 @@ Test Eshell to verify that it works as expected. | |||
| 9743 | ;;;*** | 9796 | ;;;*** |
| 9744 | 9797 | ||
| 9745 | ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command | 9798 | ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command |
| 9746 | ;;;;;; eshell) "eshell" "eshell/eshell.el" (18104 24749)) | 9799 | ;;;;;; eshell) "eshell" "eshell/eshell.el" (18088 55101)) |
| 9747 | ;;; Generated autoloads from eshell/eshell.el | 9800 | ;;; Generated autoloads from eshell/eshell.el |
| 9748 | 9801 | ||
| 9749 | (autoload (quote eshell) "eshell" "\ | 9802 | (autoload 'eshell "eshell" "\ |
| 9750 | Create an interactive Eshell buffer. | 9803 | Create an interactive Eshell buffer. |
| 9751 | The buffer used for Eshell sessions is determined by the value of | 9804 | The buffer used for Eshell sessions is determined by the value of |
| 9752 | `eshell-buffer-name'. If there is already an Eshell session active in | 9805 | `eshell-buffer-name'. If there is already an Eshell session active in |
| @@ -9758,13 +9811,13 @@ buffer selected (or created). | |||
| 9758 | 9811 | ||
| 9759 | \(fn &optional ARG)" t nil) | 9812 | \(fn &optional ARG)" t nil) |
| 9760 | 9813 | ||
| 9761 | (autoload (quote eshell-command) "eshell" "\ | 9814 | (autoload 'eshell-command "eshell" "\ |
| 9762 | Execute the Eshell command string COMMAND. | 9815 | Execute the Eshell command string COMMAND. |
| 9763 | With prefix ARG, insert output into the current buffer at point. | 9816 | With prefix ARG, insert output into the current buffer at point. |
| 9764 | 9817 | ||
| 9765 | \(fn &optional COMMAND ARG)" t nil) | 9818 | \(fn &optional COMMAND ARG)" t nil) |
| 9766 | 9819 | ||
| 9767 | (autoload (quote eshell-command-result) "eshell" "\ | 9820 | (autoload 'eshell-command-result "eshell" "\ |
| 9768 | Execute the given Eshell COMMAND, and return the result. | 9821 | Execute the given Eshell COMMAND, and return the result. |
| 9769 | The result might be any Lisp object. | 9822 | The result might be any Lisp object. |
| 9770 | If STATUS-VAR is a symbol, it will be set to the exit status of the | 9823 | If STATUS-VAR is a symbol, it will be set to the exit status of the |
| @@ -9773,7 +9826,7 @@ corresponding to a successful execution. | |||
| 9773 | 9826 | ||
| 9774 | \(fn COMMAND &optional STATUS-VAR)" nil nil) | 9827 | \(fn COMMAND &optional STATUS-VAR)" nil nil) |
| 9775 | 9828 | ||
| 9776 | (autoload (quote eshell-report-bug) "eshell" "\ | 9829 | (autoload 'eshell-report-bug "eshell" "\ |
| 9777 | Report a bug in Eshell. | 9830 | Report a bug in Eshell. |
| 9778 | Prompts for the TOPIC. Leaves you in a mail buffer. | 9831 | Prompts for the TOPIC. Leaves you in a mail buffer. |
| 9779 | Please include any configuration details that might be involved. | 9832 | Please include any configuration details that might be involved. |
| @@ -9789,7 +9842,7 @@ Please include any configuration details that might be involved. | |||
| 9789 | ;;;;;; visit-tags-table tags-table-mode find-tag-default-function | 9842 | ;;;;;; visit-tags-table tags-table-mode find-tag-default-function |
| 9790 | ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list | 9843 | ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list |
| 9791 | ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" | 9844 | ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" |
| 9792 | ;;;;;; (18104 24765)) | 9845 | ;;;;;; (18201 33327)) |
| 9793 | ;;; Generated autoloads from progmodes/etags.el | 9846 | ;;; Generated autoloads from progmodes/etags.el |
| 9794 | 9847 | ||
| 9795 | (defvar tags-file-name nil "\ | 9848 | (defvar tags-file-name nil "\ |
| @@ -9799,12 +9852,12 @@ If you set this variable, do not also set `tags-table-list'. | |||
| 9799 | Use the `etags' program to make a tags table file.") | 9852 | Use the `etags' program to make a tags table file.") |
| 9800 | (put 'tags-file-name 'variable-interactive "fVisit tags table: ") | 9853 | (put 'tags-file-name 'variable-interactive "fVisit tags table: ") |
| 9801 | 9854 | ||
| 9802 | (defvar tags-case-fold-search (quote default) "\ | 9855 | (defvar tags-case-fold-search 'default "\ |
| 9803 | *Whether tags operations should be case-sensitive. | 9856 | *Whether tags operations should be case-sensitive. |
| 9804 | A value of t means case-insensitive, a value of nil means case-sensitive. | 9857 | A value of t means case-insensitive, a value of nil means case-sensitive. |
| 9805 | Any other value means use the setting of `case-fold-search'.") | 9858 | Any other value means use the setting of `case-fold-search'.") |
| 9806 | 9859 | ||
| 9807 | (custom-autoload (quote tags-case-fold-search) "etags" t) | 9860 | (custom-autoload 'tags-case-fold-search "etags" t) |
| 9808 | 9861 | ||
| 9809 | (defvar tags-table-list nil "\ | 9862 | (defvar tags-table-list nil "\ |
| 9810 | *List of file names of tags tables to search. | 9863 | *List of file names of tags tables to search. |
| @@ -9813,31 +9866,31 @@ To switch to a new list of tags tables, setting this variable is sufficient. | |||
| 9813 | If you set this variable, do not also set `tags-file-name'. | 9866 | If you set this variable, do not also set `tags-file-name'. |
| 9814 | Use the `etags' program to make a tags table file.") | 9867 | Use the `etags' program to make a tags table file.") |
| 9815 | 9868 | ||
| 9816 | (custom-autoload (quote tags-table-list) "etags" t) | 9869 | (custom-autoload 'tags-table-list "etags" t) |
| 9817 | 9870 | ||
| 9818 | (defvar tags-compression-info-list (quote ("" ".Z" ".bz2" ".gz" ".tgz")) "\ | 9871 | (defvar tags-compression-info-list '("" ".Z" ".bz2" ".gz" ".tgz") "\ |
| 9819 | *List of extensions tried by etags when jka-compr is used. | 9872 | *List of extensions tried by etags when jka-compr is used. |
| 9820 | An empty string means search the non-compressed file. | 9873 | An empty string means search the non-compressed file. |
| 9821 | These extensions will be tried only if jka-compr was activated | 9874 | These extensions will be tried only if jka-compr was activated |
| 9822 | \(i.e. via customize of `auto-compression-mode' or by calling the function | 9875 | \(i.e. via customize of `auto-compression-mode' or by calling the function |
| 9823 | `auto-compression-mode').") | 9876 | `auto-compression-mode').") |
| 9824 | 9877 | ||
| 9825 | (custom-autoload (quote tags-compression-info-list) "etags" t) | 9878 | (custom-autoload 'tags-compression-info-list "etags" t) |
| 9826 | 9879 | ||
| 9827 | (defvar tags-add-tables (quote ask-user) "\ | 9880 | (defvar tags-add-tables 'ask-user "\ |
| 9828 | *Control whether to add a new tags table to the current list. | 9881 | *Control whether to add a new tags table to the current list. |
| 9829 | t means do; nil means don't (always start a new list). | 9882 | t means do; nil means don't (always start a new list). |
| 9830 | Any other value means ask the user whether to add a new tags table | 9883 | Any other value means ask the user whether to add a new tags table |
| 9831 | to the current list (as opposed to starting a new list).") | 9884 | to the current list (as opposed to starting a new list).") |
| 9832 | 9885 | ||
| 9833 | (custom-autoload (quote tags-add-tables) "etags" t) | 9886 | (custom-autoload 'tags-add-tables "etags" t) |
| 9834 | 9887 | ||
| 9835 | (defvar find-tag-hook nil "\ | 9888 | (defvar find-tag-hook nil "\ |
| 9836 | *Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'. | 9889 | *Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'. |
| 9837 | The value in the buffer in which \\[find-tag] is done is used, | 9890 | The value in the buffer in which \\[find-tag] is done is used, |
| 9838 | not the value in the buffer \\[find-tag] goes to.") | 9891 | not the value in the buffer \\[find-tag] goes to.") |
| 9839 | 9892 | ||
| 9840 | (custom-autoload (quote find-tag-hook) "etags" t) | 9893 | (custom-autoload 'find-tag-hook "etags" t) |
| 9841 | 9894 | ||
| 9842 | (defvar find-tag-default-function nil "\ | 9895 | (defvar find-tag-default-function nil "\ |
| 9843 | *A function of no arguments used by \\[find-tag] to pick a default tag. | 9896 | *A function of no arguments used by \\[find-tag] to pick a default tag. |
| @@ -9845,14 +9898,14 @@ If nil, and the symbol that is the value of `major-mode' | |||
| 9845 | has a `find-tag-default-function' property (see `put'), that is used. | 9898 | has a `find-tag-default-function' property (see `put'), that is used. |
| 9846 | Otherwise, `find-tag-default' is used.") | 9899 | Otherwise, `find-tag-default' is used.") |
| 9847 | 9900 | ||
| 9848 | (custom-autoload (quote find-tag-default-function) "etags" t) | 9901 | (custom-autoload 'find-tag-default-function "etags" t) |
| 9849 | 9902 | ||
| 9850 | (autoload (quote tags-table-mode) "etags" "\ | 9903 | (autoload 'tags-table-mode "etags" "\ |
| 9851 | Major mode for tags table file buffers. | 9904 | Major mode for tags table file buffers. |
| 9852 | 9905 | ||
| 9853 | \(fn)" t nil) | 9906 | \(fn)" t nil) |
| 9854 | 9907 | ||
| 9855 | (autoload (quote visit-tags-table) "etags" "\ | 9908 | (autoload 'visit-tags-table "etags" "\ |
| 9856 | Tell tags commands to use tags table file FILE. | 9909 | Tell tags commands to use tags table file FILE. |
| 9857 | FILE should be the name of a file created with the `etags' program. | 9910 | FILE should be the name of a file created with the `etags' program. |
| 9858 | A directory name is ok too; it means file TAGS in that directory. | 9911 | A directory name is ok too; it means file TAGS in that directory. |
| @@ -9865,7 +9918,7 @@ file the tag was in. | |||
| 9865 | 9918 | ||
| 9866 | \(fn FILE &optional LOCAL)" t nil) | 9919 | \(fn FILE &optional LOCAL)" t nil) |
| 9867 | 9920 | ||
| 9868 | (autoload (quote visit-tags-table-buffer) "etags" "\ | 9921 | (autoload 'visit-tags-table-buffer "etags" "\ |
| 9869 | Select the buffer containing the current tags table. | 9922 | Select the buffer containing the current tags table. |
| 9870 | If optional arg is a string, visit that file as a tags table. | 9923 | If optional arg is a string, visit that file as a tags table. |
| 9871 | If optional arg is t, visit the next table in `tags-table-list'. | 9924 | If optional arg is t, visit the next table in `tags-table-list'. |
| @@ -9877,7 +9930,7 @@ Returns t if it visits a tags table, or nil if there are no more in the list. | |||
| 9877 | 9930 | ||
| 9878 | \(fn &optional CONT)" nil nil) | 9931 | \(fn &optional CONT)" nil nil) |
| 9879 | 9932 | ||
| 9880 | (autoload (quote tags-table-files) "etags" "\ | 9933 | (autoload 'tags-table-files "etags" "\ |
| 9881 | Return a list of files in the current tags table. | 9934 | Return a list of files in the current tags table. |
| 9882 | Assumes the tags table is the current buffer. The file names are returned | 9935 | Assumes the tags table is the current buffer. The file names are returned |
| 9883 | as they appeared in the `etags' command that created the table, usually | 9936 | as they appeared in the `etags' command that created the table, usually |
| @@ -9885,7 +9938,7 @@ without directory names. | |||
| 9885 | 9938 | ||
| 9886 | \(fn)" nil nil) | 9939 | \(fn)" nil nil) |
| 9887 | 9940 | ||
| 9888 | (autoload (quote find-tag-noselect) "etags" "\ | 9941 | (autoload 'find-tag-noselect "etags" "\ |
| 9889 | Find tag (in current tags table) whose name contains TAGNAME. | 9942 | Find tag (in current tags table) whose name contains TAGNAME. |
| 9890 | Returns the buffer containing the tag's definition and moves its point there, | 9943 | Returns the buffer containing the tag's definition and moves its point there, |
| 9891 | but does not select the buffer. | 9944 | but does not select the buffer. |
| @@ -9907,7 +9960,7 @@ See documentation of variable `tags-file-name'. | |||
| 9907 | 9960 | ||
| 9908 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 9961 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9909 | 9962 | ||
| 9910 | (autoload (quote find-tag) "etags" "\ | 9963 | (autoload 'find-tag "etags" "\ |
| 9911 | Find tag (in current tags table) whose name contains TAGNAME. | 9964 | Find tag (in current tags table) whose name contains TAGNAME. |
| 9912 | Select the buffer containing the tag's definition, and move point there. | 9965 | Select the buffer containing the tag's definition, and move point there. |
| 9913 | The default for TAGNAME is the expression in the buffer around or before point. | 9966 | The default for TAGNAME is the expression in the buffer around or before point. |
| @@ -9929,7 +9982,7 @@ See documentation of variable `tags-file-name'. | |||
| 9929 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 9982 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9930 | (define-key esc-map "." 'find-tag) | 9983 | (define-key esc-map "." 'find-tag) |
| 9931 | 9984 | ||
| 9932 | (autoload (quote find-tag-other-window) "etags" "\ | 9985 | (autoload 'find-tag-other-window "etags" "\ |
| 9933 | Find tag (in current tags table) whose name contains TAGNAME. | 9986 | Find tag (in current tags table) whose name contains TAGNAME. |
| 9934 | Select the buffer containing the tag's definition in another window, and | 9987 | Select the buffer containing the tag's definition in another window, and |
| 9935 | move point there. The default for TAGNAME is the expression in the buffer | 9988 | move point there. The default for TAGNAME is the expression in the buffer |
| @@ -9952,7 +10005,7 @@ See documentation of variable `tags-file-name'. | |||
| 9952 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 10005 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9953 | (define-key ctl-x-4-map "." 'find-tag-other-window) | 10006 | (define-key ctl-x-4-map "." 'find-tag-other-window) |
| 9954 | 10007 | ||
| 9955 | (autoload (quote find-tag-other-frame) "etags" "\ | 10008 | (autoload 'find-tag-other-frame "etags" "\ |
| 9956 | Find tag (in current tags table) whose name contains TAGNAME. | 10009 | Find tag (in current tags table) whose name contains TAGNAME. |
| 9957 | Select the buffer containing the tag's definition in another frame, and | 10010 | Select the buffer containing the tag's definition in another frame, and |
| 9958 | move point there. The default for TAGNAME is the expression in the buffer | 10011 | move point there. The default for TAGNAME is the expression in the buffer |
| @@ -9975,7 +10028,7 @@ See documentation of variable `tags-file-name'. | |||
| 9975 | \(fn TAGNAME &optional NEXT-P)" t nil) | 10028 | \(fn TAGNAME &optional NEXT-P)" t nil) |
| 9976 | (define-key ctl-x-5-map "." 'find-tag-other-frame) | 10029 | (define-key ctl-x-5-map "." 'find-tag-other-frame) |
| 9977 | 10030 | ||
| 9978 | (autoload (quote find-tag-regexp) "etags" "\ | 10031 | (autoload 'find-tag-regexp "etags" "\ |
| 9979 | Find tag (in current tags table) whose name matches REGEXP. | 10032 | Find tag (in current tags table) whose name matches REGEXP. |
| 9980 | Select the buffer containing the tag's definition and move point there. | 10033 | Select the buffer containing the tag's definition and move point there. |
| 9981 | 10034 | ||
| @@ -9997,7 +10050,7 @@ See documentation of variable `tags-file-name'. | |||
| 9997 | (define-key esc-map [?\C-.] 'find-tag-regexp) | 10050 | (define-key esc-map [?\C-.] 'find-tag-regexp) |
| 9998 | (define-key esc-map "*" 'pop-tag-mark) | 10051 | (define-key esc-map "*" 'pop-tag-mark) |
| 9999 | 10052 | ||
| 10000 | (autoload (quote pop-tag-mark) "etags" "\ | 10053 | (autoload 'pop-tag-mark "etags" "\ |
| 10001 | Pop back to where \\[find-tag] was last invoked. | 10054 | Pop back to where \\[find-tag] was last invoked. |
| 10002 | 10055 | ||
| 10003 | This is distinct from invoking \\[find-tag] with a negative argument | 10056 | This is distinct from invoking \\[find-tag] with a negative argument |
| @@ -10006,7 +10059,7 @@ where they were found. | |||
| 10006 | 10059 | ||
| 10007 | \(fn)" t nil) | 10060 | \(fn)" t nil) |
| 10008 | 10061 | ||
| 10009 | (autoload (quote next-file) "etags" "\ | 10062 | (autoload 'next-file "etags" "\ |
| 10010 | Select next file among files in current tags table. | 10063 | Select next file among files in current tags table. |
| 10011 | 10064 | ||
| 10012 | A first argument of t (prefix arg, if interactive) initializes to the | 10065 | A first argument of t (prefix arg, if interactive) initializes to the |
| @@ -10021,7 +10074,7 @@ if the file was newly read in, the value is the filename. | |||
| 10021 | 10074 | ||
| 10022 | \(fn &optional INITIALIZE NOVISIT)" t nil) | 10075 | \(fn &optional INITIALIZE NOVISIT)" t nil) |
| 10023 | 10076 | ||
| 10024 | (autoload (quote tags-loop-continue) "etags" "\ | 10077 | (autoload 'tags-loop-continue "etags" "\ |
| 10025 | Continue last \\[tags-search] or \\[tags-query-replace] command. | 10078 | Continue last \\[tags-search] or \\[tags-query-replace] command. |
| 10026 | Used noninteractively with non-nil argument to begin such a command (the | 10079 | Used noninteractively with non-nil argument to begin such a command (the |
| 10027 | argument is passed to `next-file', which see). | 10080 | argument is passed to `next-file', which see). |
| @@ -10035,7 +10088,7 @@ nil, we exit; otherwise we scan the next file. | |||
| 10035 | \(fn &optional FIRST-TIME)" t nil) | 10088 | \(fn &optional FIRST-TIME)" t nil) |
| 10036 | (define-key esc-map "," 'tags-loop-continue) | 10089 | (define-key esc-map "," 'tags-loop-continue) |
| 10037 | 10090 | ||
| 10038 | (autoload (quote tags-search) "etags" "\ | 10091 | (autoload 'tags-search "etags" "\ |
| 10039 | Search through all files listed in tags table for match for REGEXP. | 10092 | Search through all files listed in tags table for match for REGEXP. |
| 10040 | Stops when a match is found. | 10093 | Stops when a match is found. |
| 10041 | To continue searching for next match, use command \\[tags-loop-continue]. | 10094 | To continue searching for next match, use command \\[tags-loop-continue]. |
| @@ -10044,7 +10097,7 @@ See documentation of variable `tags-file-name'. | |||
| 10044 | 10097 | ||
| 10045 | \(fn REGEXP &optional FILE-LIST-FORM)" t nil) | 10098 | \(fn REGEXP &optional FILE-LIST-FORM)" t nil) |
| 10046 | 10099 | ||
| 10047 | (autoload (quote tags-query-replace) "etags" "\ | 10100 | (autoload 'tags-query-replace "etags" "\ |
| 10048 | Do `query-replace-regexp' of FROM with TO on all files listed in tags table. | 10101 | Do `query-replace-regexp' of FROM with TO on all files listed in tags table. |
| 10049 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 10102 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 10050 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace | 10103 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| @@ -10054,7 +10107,7 @@ See documentation of variable `tags-file-name'. | |||
| 10054 | 10107 | ||
| 10055 | \(fn FROM TO &optional DELIMITED FILE-LIST-FORM START END)" t nil) | 10108 | \(fn FROM TO &optional DELIMITED FILE-LIST-FORM START END)" t nil) |
| 10056 | 10109 | ||
| 10057 | (autoload (quote list-tags) "etags" "\ | 10110 | (autoload 'list-tags "etags" "\ |
| 10058 | Display list of tags in file FILE. | 10111 | Display list of tags in file FILE. |
| 10059 | This searches only the first table in the list, and no included tables. | 10112 | This searches only the first table in the list, and no included tables. |
| 10060 | FILE should be as it appeared in the `etags' command, usually without a | 10113 | FILE should be as it appeared in the `etags' command, usually without a |
| @@ -10062,19 +10115,19 @@ directory specification. | |||
| 10062 | 10115 | ||
| 10063 | \(fn FILE &optional NEXT-MATCH)" t nil) | 10116 | \(fn FILE &optional NEXT-MATCH)" t nil) |
| 10064 | 10117 | ||
| 10065 | (autoload (quote tags-apropos) "etags" "\ | 10118 | (autoload 'tags-apropos "etags" "\ |
| 10066 | Display list of all tags in tags table REGEXP matches. | 10119 | Display list of all tags in tags table REGEXP matches. |
| 10067 | 10120 | ||
| 10068 | \(fn REGEXP)" t nil) | 10121 | \(fn REGEXP)" t nil) |
| 10069 | 10122 | ||
| 10070 | (autoload (quote select-tags-table) "etags" "\ | 10123 | (autoload 'select-tags-table "etags" "\ |
| 10071 | Select a tags table file from a menu of those you have already used. | 10124 | Select a tags table file from a menu of those you have already used. |
| 10072 | The list of tags tables to select from is stored in `tags-table-set-list'; | 10125 | The list of tags tables to select from is stored in `tags-table-set-list'; |
| 10073 | see the doc of that variable if you want to add names to the list. | 10126 | see the doc of that variable if you want to add names to the list. |
| 10074 | 10127 | ||
| 10075 | \(fn)" t nil) | 10128 | \(fn)" t nil) |
| 10076 | 10129 | ||
| 10077 | (autoload (quote complete-tag) "etags" "\ | 10130 | (autoload 'complete-tag "etags" "\ |
| 10078 | Perform tags completion on the text around point. | 10131 | Perform tags completion on the text around point. |
| 10079 | Completes to the set of names listed in the current tags table. | 10132 | Completes to the set of names listed in the current tags table. |
| 10080 | The string to complete is chosen in the same way as the default | 10133 | The string to complete is chosen in the same way as the default |
| @@ -10091,15 +10144,15 @@ for \\[find-tag] (which see). | |||
| 10091 | ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker | 10144 | ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker |
| 10092 | ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker | 10145 | ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker |
| 10093 | ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) | 10146 | ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) |
| 10094 | ;;;;;; "ethio-util" "language/ethio-util.el" (18104 24757)) | 10147 | ;;;;;; "ethio-util" "language/ethio-util.el" (18173 8195)) |
| 10095 | ;;; Generated autoloads from language/ethio-util.el | 10148 | ;;; Generated autoloads from language/ethio-util.el |
| 10096 | 10149 | ||
| 10097 | (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ | 10150 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ |
| 10098 | Not documented | 10151 | Not documented |
| 10099 | 10152 | ||
| 10100 | \(fn)" nil nil) | 10153 | \(fn)" nil nil) |
| 10101 | 10154 | ||
| 10102 | (autoload (quote ethio-sera-to-fidel-region) "ethio-util" "\ | 10155 | (autoload 'ethio-sera-to-fidel-region "ethio-util" "\ |
| 10103 | Convert the characters in region from SERA to FIDEL. | 10156 | Convert the characters in region from SERA to FIDEL. |
| 10104 | The variable `ethio-primary-language' specifies the primary language | 10157 | The variable `ethio-primary-language' specifies the primary language |
| 10105 | and `ethio-secondary-language' specifies the secondary. | 10158 | and `ethio-secondary-language' specifies the secondary. |
| @@ -10117,7 +10170,7 @@ See also the descriptions of the variables | |||
| 10117 | 10170 | ||
| 10118 | \(fn BEG END &optional SECONDARY FORCE)" t nil) | 10171 | \(fn BEG END &optional SECONDARY FORCE)" t nil) |
| 10119 | 10172 | ||
| 10120 | (autoload (quote ethio-sera-to-fidel-buffer) "ethio-util" "\ | 10173 | (autoload 'ethio-sera-to-fidel-buffer "ethio-util" "\ |
| 10121 | Convert the current buffer from SERA to FIDEL. | 10174 | Convert the current buffer from SERA to FIDEL. |
| 10122 | 10175 | ||
| 10123 | The variable `ethio-primary-language' specifies the primary | 10176 | The variable `ethio-primary-language' specifies the primary |
| @@ -10136,13 +10189,13 @@ See also the descriptions of the variables | |||
| 10136 | 10189 | ||
| 10137 | \(fn &optional SECONDARY FORCE)" t nil) | 10190 | \(fn &optional SECONDARY FORCE)" t nil) |
| 10138 | 10191 | ||
| 10139 | (autoload (quote ethio-sera-to-fidel-mail-or-marker) "ethio-util" "\ | 10192 | (autoload 'ethio-sera-to-fidel-mail-or-marker "ethio-util" "\ |
| 10140 | Execute `ethio-sera-to-fidel-mail' or `ethio-sera-to-fidel-marker' depending on the current major mode. | 10193 | Execute `ethio-sera-to-fidel-mail' or `ethio-sera-to-fidel-marker' depending on the current major mode. |
| 10141 | If in rmail-mode or in mail-mode, execute the former; otherwise latter. | 10194 | If in rmail-mode or in mail-mode, execute the former; otherwise latter. |
| 10142 | 10195 | ||
| 10143 | \(fn &optional ARG)" t nil) | 10196 | \(fn &optional ARG)" t nil) |
| 10144 | 10197 | ||
| 10145 | (autoload (quote ethio-sera-to-fidel-mail) "ethio-util" "\ | 10198 | (autoload 'ethio-sera-to-fidel-mail "ethio-util" "\ |
| 10146 | Convert SERA to FIDEL to read/write mail and news. | 10199 | Convert SERA to FIDEL to read/write mail and news. |
| 10147 | 10200 | ||
| 10148 | If the buffer contains the markers \"<sera>\" and \"</sera>\", | 10201 | If the buffer contains the markers \"<sera>\" and \"</sera>\", |
| @@ -10153,14 +10206,14 @@ and the body into FIDEL using `ethio-sera-to-fidel-region'. | |||
| 10153 | 10206 | ||
| 10154 | \(fn &optional ARG)" t nil) | 10207 | \(fn &optional ARG)" t nil) |
| 10155 | 10208 | ||
| 10156 | (autoload (quote ethio-sera-to-fidel-marker) "ethio-util" "\ | 10209 | (autoload 'ethio-sera-to-fidel-marker "ethio-util" "\ |
| 10157 | Convert the regions surrounded by \"<sera>\" and \"</sera>\" from SERA to FIDEL. | 10210 | Convert the regions surrounded by \"<sera>\" and \"</sera>\" from SERA to FIDEL. |
| 10158 | Assume that each region begins with `ethio-primary-language'. | 10211 | Assume that each region begins with `ethio-primary-language'. |
| 10159 | The markers \"<sera>\" and \"</sera>\" themselves are not deleted. | 10212 | The markers \"<sera>\" and \"</sera>\" themselves are not deleted. |
| 10160 | 10213 | ||
| 10161 | \(fn &optional FORCE)" t nil) | 10214 | \(fn &optional FORCE)" t nil) |
| 10162 | 10215 | ||
| 10163 | (autoload (quote ethio-fidel-to-sera-region) "ethio-util" "\ | 10216 | (autoload 'ethio-fidel-to-sera-region "ethio-util" "\ |
| 10164 | Replace all the FIDEL characters in the region to the SERA format. | 10217 | Replace all the FIDEL characters in the region to the SERA format. |
| 10165 | The variable `ethio-primary-language' specifies the primary | 10218 | The variable `ethio-primary-language' specifies the primary |
| 10166 | language and `ethio-secondary-language' specifies the secondary. | 10219 | language and `ethio-secondary-language' specifies the secondary. |
| @@ -10178,7 +10231,7 @@ See also the descriptions of the variables | |||
| 10178 | 10231 | ||
| 10179 | \(fn BEGIN END &optional SECONDARY FORCE)" t nil) | 10232 | \(fn BEGIN END &optional SECONDARY FORCE)" t nil) |
| 10180 | 10233 | ||
| 10181 | (autoload (quote ethio-fidel-to-sera-buffer) "ethio-util" "\ | 10234 | (autoload 'ethio-fidel-to-sera-buffer "ethio-util" "\ |
| 10182 | Replace all the FIDEL characters in the current buffer to the SERA format. | 10235 | Replace all the FIDEL characters in the current buffer to the SERA format. |
| 10183 | The variable `ethio-primary-language' specifies the primary | 10236 | The variable `ethio-primary-language' specifies the primary |
| 10184 | language and `ethio-secondary-language' specifies the secondary. | 10237 | language and `ethio-secondary-language' specifies the secondary. |
| @@ -10196,13 +10249,13 @@ See also the descriptions of the variables | |||
| 10196 | 10249 | ||
| 10197 | \(fn &optional SECONDARY FORCE)" t nil) | 10250 | \(fn &optional SECONDARY FORCE)" t nil) |
| 10198 | 10251 | ||
| 10199 | (autoload (quote ethio-fidel-to-sera-mail-or-marker) "ethio-util" "\ | 10252 | (autoload 'ethio-fidel-to-sera-mail-or-marker "ethio-util" "\ |
| 10200 | Execute `ethio-fidel-to-sera-mail' or `ethio-fidel-to-sera-marker' depending on the current major mode. | 10253 | Execute `ethio-fidel-to-sera-mail' or `ethio-fidel-to-sera-marker' depending on the current major mode. |
| 10201 | If in rmail-mode or in mail-mode, execute the former; otherwise latter. | 10254 | If in rmail-mode or in mail-mode, execute the former; otherwise latter. |
| 10202 | 10255 | ||
| 10203 | \(fn &optional ARG)" t nil) | 10256 | \(fn &optional ARG)" t nil) |
| 10204 | 10257 | ||
| 10205 | (autoload (quote ethio-fidel-to-sera-mail) "ethio-util" "\ | 10258 | (autoload 'ethio-fidel-to-sera-mail "ethio-util" "\ |
| 10206 | Convert FIDEL to SERA to read/write mail and news. | 10259 | Convert FIDEL to SERA to read/write mail and news. |
| 10207 | 10260 | ||
| 10208 | If the body contains at least one Ethiopic character, | 10261 | If the body contains at least one Ethiopic character, |
| @@ -10214,18 +10267,18 @@ The very same procedure applies to the subject field, too. | |||
| 10214 | 10267 | ||
| 10215 | \(fn)" t nil) | 10268 | \(fn)" t nil) |
| 10216 | 10269 | ||
| 10217 | (autoload (quote ethio-fidel-to-sera-marker) "ethio-util" "\ | 10270 | (autoload 'ethio-fidel-to-sera-marker "ethio-util" "\ |
| 10218 | Convert the regions surrounded by \"<sera>\" and \"</sera>\" from FIDEL to SERA. | 10271 | Convert the regions surrounded by \"<sera>\" and \"</sera>\" from FIDEL to SERA. |
| 10219 | The markers \"<sera>\" and \"</sera>\" themselves are not deleted. | 10272 | The markers \"<sera>\" and \"</sera>\" themselves are not deleted. |
| 10220 | 10273 | ||
| 10221 | \(fn &optional FORCE)" t nil) | 10274 | \(fn &optional FORCE)" t nil) |
| 10222 | 10275 | ||
| 10223 | (autoload (quote ethio-modify-vowel) "ethio-util" "\ | 10276 | (autoload 'ethio-modify-vowel "ethio-util" "\ |
| 10224 | Modify the vowel of the FIDEL that is under the cursor. | 10277 | Modify the vowel of the FIDEL that is under the cursor. |
| 10225 | 10278 | ||
| 10226 | \(fn)" t nil) | 10279 | \(fn)" t nil) |
| 10227 | 10280 | ||
| 10228 | (autoload (quote ethio-replace-space) "ethio-util" "\ | 10281 | (autoload 'ethio-replace-space "ethio-util" "\ |
| 10229 | Replace ASCII spaces with Ethiopic word separators in the region. | 10282 | Replace ASCII spaces with Ethiopic word separators in the region. |
| 10230 | 10283 | ||
| 10231 | In the specified region, replace word separators surrounded by two | 10284 | In the specified region, replace word separators surrounded by two |
| @@ -10240,23 +10293,23 @@ The second and third parameters BEGIN and END specify the region. | |||
| 10240 | 10293 | ||
| 10241 | \(fn CH BEGIN END)" t nil) | 10294 | \(fn CH BEGIN END)" t nil) |
| 10242 | 10295 | ||
| 10243 | (autoload (quote ethio-input-special-character) "ethio-util" "\ | 10296 | (autoload 'ethio-input-special-character "ethio-util" "\ |
| 10244 | Allow the user to input special characters. | 10297 | Allow the user to input special characters. |
| 10245 | 10298 | ||
| 10246 | \(fn ARG)" t nil) | 10299 | \(fn ARG)" t nil) |
| 10247 | 10300 | ||
| 10248 | (autoload (quote ethio-fidel-to-tex-buffer) "ethio-util" "\ | 10301 | (autoload 'ethio-fidel-to-tex-buffer "ethio-util" "\ |
| 10249 | Convert each fidel characters in the current buffer into a fidel-tex command. | 10302 | Convert each fidel characters in the current buffer into a fidel-tex command. |
| 10250 | Each command is always surrounded by braces. | 10303 | Each command is always surrounded by braces. |
| 10251 | 10304 | ||
| 10252 | \(fn)" t nil) | 10305 | \(fn)" t nil) |
| 10253 | 10306 | ||
| 10254 | (autoload (quote ethio-tex-to-fidel-buffer) "ethio-util" "\ | 10307 | (autoload 'ethio-tex-to-fidel-buffer "ethio-util" "\ |
| 10255 | Convert fidel-tex commands in the current buffer into fidel chars. | 10308 | Convert fidel-tex commands in the current buffer into fidel chars. |
| 10256 | 10309 | ||
| 10257 | \(fn)" t nil) | 10310 | \(fn)" t nil) |
| 10258 | 10311 | ||
| 10259 | (autoload (quote ethio-fidel-to-java-buffer) "ethio-util" "\ | 10312 | (autoload 'ethio-fidel-to-java-buffer "ethio-util" "\ |
| 10260 | Convert Ethiopic characters into the Java escape sequences. | 10313 | Convert Ethiopic characters into the Java escape sequences. |
| 10261 | 10314 | ||
| 10262 | Each escape sequence is of the form \\uXXXX, where XXXX is the | 10315 | Each escape sequence is of the form \\uXXXX, where XXXX is the |
| @@ -10267,17 +10320,17 @@ Otherwise, [0-9A-F]. | |||
| 10267 | 10320 | ||
| 10268 | \(fn)" nil nil) | 10321 | \(fn)" nil nil) |
| 10269 | 10322 | ||
| 10270 | (autoload (quote ethio-java-to-fidel-buffer) "ethio-util" "\ | 10323 | (autoload 'ethio-java-to-fidel-buffer "ethio-util" "\ |
| 10271 | Convert the Java escape sequences into corresponding Ethiopic characters. | 10324 | Convert the Java escape sequences into corresponding Ethiopic characters. |
| 10272 | 10325 | ||
| 10273 | \(fn)" nil nil) | 10326 | \(fn)" nil nil) |
| 10274 | 10327 | ||
| 10275 | (autoload (quote ethio-find-file) "ethio-util" "\ | 10328 | (autoload 'ethio-find-file "ethio-util" "\ |
| 10276 | Transcribe file content into Ethiopic depending on filename suffix. | 10329 | Transcribe file content into Ethiopic depending on filename suffix. |
| 10277 | 10330 | ||
| 10278 | \(fn)" nil nil) | 10331 | \(fn)" nil nil) |
| 10279 | 10332 | ||
| 10280 | (autoload (quote ethio-write-file) "ethio-util" "\ | 10333 | (autoload 'ethio-write-file "ethio-util" "\ |
| 10281 | Transcribe Ethiopic characters in ASCII depending on the file extension. | 10334 | Transcribe Ethiopic characters in ASCII depending on the file extension. |
| 10282 | 10335 | ||
| 10283 | \(fn)" nil nil) | 10336 | \(fn)" nil nil) |
| @@ -10286,29 +10339,29 @@ Transcribe Ethiopic characters in ASCII depending on the file extension. | |||
| 10286 | 10339 | ||
| 10287 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline | 10340 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline |
| 10288 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" | 10341 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" |
| 10289 | ;;;;;; (18104 24759)) | 10342 | ;;;;;; (18203 37788)) |
| 10290 | ;;; Generated autoloads from net/eudc.el | 10343 | ;;; Generated autoloads from net/eudc.el |
| 10291 | 10344 | ||
| 10292 | (autoload (quote eudc-set-server) "eudc" "\ | 10345 | (autoload 'eudc-set-server "eudc" "\ |
| 10293 | Set the directory server to SERVER using PROTOCOL. | 10346 | Set the directory server to SERVER using PROTOCOL. |
| 10294 | Unless NO-SAVE is non-nil, the server is saved as the default | 10347 | Unless NO-SAVE is non-nil, the server is saved as the default |
| 10295 | server for future sessions. | 10348 | server for future sessions. |
| 10296 | 10349 | ||
| 10297 | \(fn SERVER PROTOCOL &optional NO-SAVE)" t nil) | 10350 | \(fn SERVER PROTOCOL &optional NO-SAVE)" t nil) |
| 10298 | 10351 | ||
| 10299 | (autoload (quote eudc-get-email) "eudc" "\ | 10352 | (autoload 'eudc-get-email "eudc" "\ |
| 10300 | Get the email field of NAME from the directory server. | 10353 | Get the email field of NAME from the directory server. |
| 10301 | If ERROR is non-nil, report an error if there is none. | 10354 | If ERROR is non-nil, report an error if there is none. |
| 10302 | 10355 | ||
| 10303 | \(fn NAME &optional ERROR)" t nil) | 10356 | \(fn NAME &optional ERROR)" t nil) |
| 10304 | 10357 | ||
| 10305 | (autoload (quote eudc-get-phone) "eudc" "\ | 10358 | (autoload 'eudc-get-phone "eudc" "\ |
| 10306 | Get the phone field of NAME from the directory server. | 10359 | Get the phone field of NAME from the directory server. |
| 10307 | If ERROR is non-nil, report an error if there is none. | 10360 | If ERROR is non-nil, report an error if there is none. |
| 10308 | 10361 | ||
| 10309 | \(fn NAME &optional ERROR)" t nil) | 10362 | \(fn NAME &optional ERROR)" t nil) |
| 10310 | 10363 | ||
| 10311 | (autoload (quote eudc-expand-inline) "eudc" "\ | 10364 | (autoload 'eudc-expand-inline "eudc" "\ |
| 10312 | Query the directory server, and expand the query string before point. | 10365 | Query the directory server, and expand the query string before point. |
| 10313 | The query string consists of the buffer substring from the point back to | 10366 | The query string consists of the buffer substring from the point back to |
| 10314 | the preceding comma, colon or beginning of line. | 10367 | the preceding comma, colon or beginning of line. |
| @@ -10323,54 +10376,54 @@ see `eudc-inline-expansion-servers' | |||
| 10323 | 10376 | ||
| 10324 | \(fn &optional REPLACE)" t nil) | 10377 | \(fn &optional REPLACE)" t nil) |
| 10325 | 10378 | ||
| 10326 | (autoload (quote eudc-query-form) "eudc" "\ | 10379 | (autoload 'eudc-query-form "eudc" "\ |
| 10327 | Display a form to query the directory server. | 10380 | Display a form to query the directory server. |
| 10328 | If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first | 10381 | If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first |
| 10329 | queries the server for the existing fields and displays a corresponding form. | 10382 | queries the server for the existing fields and displays a corresponding form. |
| 10330 | 10383 | ||
| 10331 | \(fn &optional GET-FIELDS-FROM-SERVER)" t nil) | 10384 | \(fn &optional GET-FIELDS-FROM-SERVER)" t nil) |
| 10332 | 10385 | ||
| 10333 | (autoload (quote eudc-load-eudc) "eudc" "\ | 10386 | (autoload 'eudc-load-eudc "eudc" "\ |
| 10334 | Load the Emacs Unified Directory Client. | 10387 | Load the Emacs Unified Directory Client. |
| 10335 | This does nothing except loading eudc by autoload side-effect. | 10388 | This does nothing except loading eudc by autoload side-effect. |
| 10336 | 10389 | ||
| 10337 | \(fn)" t nil) | 10390 | \(fn)" t nil) |
| 10338 | 10391 | ||
| 10339 | (cond ((not (string-match "XEmacs" emacs-version)) (defvar eudc-tools-menu (make-sparse-keymap "Directory Search")) (fset (quote eudc-tools-menu) (symbol-value (quote eudc-tools-menu))) (define-key eudc-tools-menu [phone] (quote ("Get Phone" . eudc-get-phone))) (define-key eudc-tools-menu [email] (quote ("Get Email" . eudc-get-email))) (define-key eudc-tools-menu [separator-eudc-email] (quote ("--"))) (define-key eudc-tools-menu [expand-inline] (quote ("Expand Inline Query" . eudc-expand-inline))) (define-key eudc-tools-menu [query] (quote ("Query with Form" . eudc-query-form))) (define-key eudc-tools-menu [separator-eudc-query] (quote ("--"))) (define-key eudc-tools-menu [new] (quote ("New Server" . eudc-set-server))) (define-key eudc-tools-menu [load] (quote ("Load Hotlist of Servers" . eudc-load-eudc)))) (t (let ((menu (quote ("Directory Search" ["Load Hotlist of Servers" eudc-load-eudc t] ["New Server" eudc-set-server t] ["---" nil nil] ["Query with Form" eudc-query-form t] ["Expand Inline Query" eudc-expand-inline t] ["---" nil nil] ["Get Email" eudc-get-email t] ["Get Phone" eudc-get-phone t])))) (if (not (featurep (quote eudc-autoloads))) (if eudc-xemacs-p (if (and (featurep (quote menubar)) (not (featurep (quote infodock)))) (add-submenu (quote ("Tools")) menu)) (require (quote easymenu)) (cond ((fboundp (quote easy-menu-add-item)) (easy-menu-add-item nil (quote ("tools")) (easy-menu-create-menu (car menu) (cdr menu)))) ((fboundp (quote easy-menu-create-keymaps)) (define-key global-map [menu-bar tools eudc] (cons "Directory Search" (easy-menu-create-keymaps "Directory Search" (cdr menu))))))))))) | 10392 | (cond ((not (featurep 'xemacs)) (defvar eudc-tools-menu (make-sparse-keymap "Directory Search")) (fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu)) (define-key eudc-tools-menu [phone] '("Get Phone" . eudc-get-phone)) (define-key eudc-tools-menu [email] '("Get Email" . eudc-get-email)) (define-key eudc-tools-menu [separator-eudc-email] '("--")) (define-key eudc-tools-menu [expand-inline] '("Expand Inline Query" . eudc-expand-inline)) (define-key eudc-tools-menu [query] '("Query with Form" . eudc-query-form)) (define-key eudc-tools-menu [separator-eudc-query] '("--")) (define-key eudc-tools-menu [new] '("New Server" . eudc-set-server)) (define-key eudc-tools-menu [load] '("Load Hotlist of Servers" . eudc-load-eudc))) (t (let ((menu '("Directory Search" ["Load Hotlist of Servers" eudc-load-eudc t] ["New Server" eudc-set-server t] ["---" nil nil] ["Query with Form" eudc-query-form t] ["Expand Inline Query" eudc-expand-inline t] ["---" nil nil] ["Get Email" eudc-get-email t] ["Get Phone" eudc-get-phone t]))) (if (not (featurep 'eudc-autoloads)) (if (featurep 'xemacs) (if (and (featurep 'menubar) (not (featurep 'infodock))) (add-submenu '("Tools") menu)) (require 'easymenu) (cond ((fboundp 'easy-menu-add-item) (easy-menu-add-item nil '("tools") (easy-menu-create-menu (car menu) (cdr menu)))) ((fboundp 'easy-menu-create-keymaps) (define-key global-map [menu-bar tools eudc] (cons "Directory Search" (easy-menu-create-keymaps "Directory Search" (cdr menu))))))))))) |
| 10340 | 10393 | ||
| 10341 | ;;;*** | 10394 | ;;;*** |
| 10342 | 10395 | ||
| 10343 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline | 10396 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline |
| 10344 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) | 10397 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) |
| 10345 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (18104 24759)) | 10398 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (18203 37788)) |
| 10346 | ;;; Generated autoloads from net/eudc-bob.el | 10399 | ;;; Generated autoloads from net/eudc-bob.el |
| 10347 | 10400 | ||
| 10348 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ | 10401 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ |
| 10349 | Display a button for unidentified binary DATA. | 10402 | Display a button for unidentified binary DATA. |
| 10350 | 10403 | ||
| 10351 | \(fn DATA)" nil nil) | 10404 | \(fn DATA)" nil nil) |
| 10352 | 10405 | ||
| 10353 | (autoload (quote eudc-display-url) "eudc-bob" "\ | 10406 | (autoload 'eudc-display-url "eudc-bob" "\ |
| 10354 | Display URL and make it clickable. | 10407 | Display URL and make it clickable. |
| 10355 | 10408 | ||
| 10356 | \(fn URL)" nil nil) | 10409 | \(fn URL)" nil nil) |
| 10357 | 10410 | ||
| 10358 | (autoload (quote eudc-display-mail) "eudc-bob" "\ | 10411 | (autoload 'eudc-display-mail "eudc-bob" "\ |
| 10359 | Display e-mail address and make it clickable. | 10412 | Display e-mail address and make it clickable. |
| 10360 | 10413 | ||
| 10361 | \(fn MAIL)" nil nil) | 10414 | \(fn MAIL)" nil nil) |
| 10362 | 10415 | ||
| 10363 | (autoload (quote eudc-display-sound) "eudc-bob" "\ | 10416 | (autoload 'eudc-display-sound "eudc-bob" "\ |
| 10364 | Display a button to play the sound DATA. | 10417 | Display a button to play the sound DATA. |
| 10365 | 10418 | ||
| 10366 | \(fn DATA)" nil nil) | 10419 | \(fn DATA)" nil nil) |
| 10367 | 10420 | ||
| 10368 | (autoload (quote eudc-display-jpeg-inline) "eudc-bob" "\ | 10421 | (autoload 'eudc-display-jpeg-inline "eudc-bob" "\ |
| 10369 | Display the JPEG DATA inline at point if possible. | 10422 | Display the JPEG DATA inline at point if possible. |
| 10370 | 10423 | ||
| 10371 | \(fn DATA)" nil nil) | 10424 | \(fn DATA)" nil nil) |
| 10372 | 10425 | ||
| 10373 | (autoload (quote eudc-display-jpeg-as-button) "eudc-bob" "\ | 10426 | (autoload 'eudc-display-jpeg-as-button "eudc-bob" "\ |
| 10374 | Display a button for the JPEG DATA. | 10427 | Display a button for the JPEG DATA. |
| 10375 | 10428 | ||
| 10376 | \(fn DATA)" nil nil) | 10429 | \(fn DATA)" nil nil) |
| @@ -10378,16 +10431,16 @@ Display a button for the JPEG DATA. | |||
| 10378 | ;;;*** | 10431 | ;;;*** |
| 10379 | 10432 | ||
| 10380 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) | 10433 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) |
| 10381 | ;;;;;; "eudc-export" "net/eudc-export.el" (18104 24759)) | 10434 | ;;;;;; "eudc-export" "net/eudc-export.el" (18088 55111)) |
| 10382 | ;;; Generated autoloads from net/eudc-export.el | 10435 | ;;; Generated autoloads from net/eudc-export.el |
| 10383 | 10436 | ||
| 10384 | (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ | 10437 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ |
| 10385 | Insert record at point into the BBDB database. | 10438 | Insert record at point into the BBDB database. |
| 10386 | This function can only be called from a directory query result buffer. | 10439 | This function can only be called from a directory query result buffer. |
| 10387 | 10440 | ||
| 10388 | \(fn)" t nil) | 10441 | \(fn)" t nil) |
| 10389 | 10442 | ||
| 10390 | (autoload (quote eudc-try-bbdb-insert) "eudc-export" "\ | 10443 | (autoload 'eudc-try-bbdb-insert "eudc-export" "\ |
| 10391 | Call `eudc-insert-record-at-point-into-bbdb' if on a record. | 10444 | Call `eudc-insert-record-at-point-into-bbdb' if on a record. |
| 10392 | 10445 | ||
| 10393 | \(fn)" t nil) | 10446 | \(fn)" t nil) |
| @@ -10395,21 +10448,21 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. | |||
| 10395 | ;;;*** | 10448 | ;;;*** |
| 10396 | 10449 | ||
| 10397 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" | 10450 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" |
| 10398 | ;;;;;; (18104 24759)) | 10451 | ;;;;;; (18203 37788)) |
| 10399 | ;;; Generated autoloads from net/eudc-hotlist.el | 10452 | ;;; Generated autoloads from net/eudc-hotlist.el |
| 10400 | 10453 | ||
| 10401 | (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ | 10454 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ |
| 10402 | Edit the hotlist of directory servers in a specialized buffer. | 10455 | Edit the hotlist of directory servers in a specialized buffer. |
| 10403 | 10456 | ||
| 10404 | \(fn)" t nil) | 10457 | \(fn)" t nil) |
| 10405 | 10458 | ||
| 10406 | ;;;*** | 10459 | ;;;*** |
| 10407 | 10460 | ||
| 10408 | ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (18104 | 10461 | ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (18088 |
| 10409 | ;;;;;; 24748)) | 10462 | ;;;;;; 55095)) |
| 10410 | ;;; Generated autoloads from emacs-lisp/ewoc.el | 10463 | ;;; Generated autoloads from emacs-lisp/ewoc.el |
| 10411 | 10464 | ||
| 10412 | (autoload (quote ewoc-create) "ewoc" "\ | 10465 | (autoload 'ewoc-create "ewoc" "\ |
| 10413 | Create an empty ewoc. | 10466 | Create an empty ewoc. |
| 10414 | 10467 | ||
| 10415 | The ewoc will be inserted in the current buffer at the current position. | 10468 | The ewoc will be inserted in the current buffer at the current position. |
| @@ -10435,16 +10488,16 @@ fourth arg NOSEP non-nil inhibits this. | |||
| 10435 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p | 10488 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p |
| 10436 | ;;;;;; executable-self-display executable-set-magic executable-interpret | 10489 | ;;;;;; executable-self-display executable-set-magic executable-interpret |
| 10437 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" | 10490 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" |
| 10438 | ;;;;;; (18104 24765)) | 10491 | ;;;;;; (18088 55116)) |
| 10439 | ;;; Generated autoloads from progmodes/executable.el | 10492 | ;;; Generated autoloads from progmodes/executable.el |
| 10440 | 10493 | ||
| 10441 | (autoload (quote executable-command-find-posix-p) "executable" "\ | 10494 | (autoload 'executable-command-find-posix-p "executable" "\ |
| 10442 | Check if PROGRAM handles arguments Posix-style. | 10495 | Check if PROGRAM handles arguments Posix-style. |
| 10443 | If PROGRAM is non-nil, use that instead of \"find\". | 10496 | If PROGRAM is non-nil, use that instead of \"find\". |
| 10444 | 10497 | ||
| 10445 | \(fn &optional PROGRAM)" nil nil) | 10498 | \(fn &optional PROGRAM)" nil nil) |
| 10446 | 10499 | ||
| 10447 | (autoload (quote executable-interpret) "executable" "\ | 10500 | (autoload 'executable-interpret "executable" "\ |
| 10448 | Run script with user-specified args, and collect output in a buffer. | 10501 | Run script with user-specified args, and collect output in a buffer. |
| 10449 | While script runs asynchronously, you can use the \\[next-error] | 10502 | While script runs asynchronously, you can use the \\[next-error] |
| 10450 | command to find the next error. The buffer is also in `comint-mode' and | 10503 | command to find the next error. The buffer is also in `comint-mode' and |
| @@ -10452,7 +10505,7 @@ command to find the next error. The buffer is also in `comint-mode' and | |||
| 10452 | 10505 | ||
| 10453 | \(fn COMMAND)" t nil) | 10506 | \(fn COMMAND)" t nil) |
| 10454 | 10507 | ||
| 10455 | (autoload (quote executable-set-magic) "executable" "\ | 10508 | (autoload 'executable-set-magic "executable" "\ |
| 10456 | Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. | 10509 | Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. |
| 10457 | The variables `executable-magicless-file-regexp', `executable-prefix', | 10510 | The variables `executable-magicless-file-regexp', `executable-prefix', |
| 10458 | `executable-insert', `executable-query' and `executable-chmod' control | 10511 | `executable-insert', `executable-query' and `executable-chmod' control |
| @@ -10461,13 +10514,13 @@ executable. | |||
| 10461 | 10514 | ||
| 10462 | \(fn INTERPRETER &optional ARGUMENT NO-QUERY-FLAG INSERT-FLAG)" t nil) | 10515 | \(fn INTERPRETER &optional ARGUMENT NO-QUERY-FLAG INSERT-FLAG)" t nil) |
| 10463 | 10516 | ||
| 10464 | (autoload (quote executable-self-display) "executable" "\ | 10517 | (autoload 'executable-self-display "executable" "\ |
| 10465 | Turn a text file into a self-displaying Un*x command. | 10518 | Turn a text file into a self-displaying Un*x command. |
| 10466 | The magic number of such a command displays all lines but itself. | 10519 | The magic number of such a command displays all lines but itself. |
| 10467 | 10520 | ||
| 10468 | \(fn)" t nil) | 10521 | \(fn)" t nil) |
| 10469 | 10522 | ||
| 10470 | (autoload (quote executable-make-buffer-file-executable-if-script-p) "executable" "\ | 10523 | (autoload 'executable-make-buffer-file-executable-if-script-p "executable" "\ |
| 10471 | Make file executable according to umask if not already executable. | 10524 | Make file executable according to umask if not already executable. |
| 10472 | If file already has any execute bits set at all, do not change existing | 10525 | If file already has any execute bits set at all, do not change existing |
| 10473 | file modes. | 10526 | file modes. |
| @@ -10478,10 +10531,10 @@ file modes. | |||
| 10478 | 10531 | ||
| 10479 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot | 10532 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot |
| 10480 | ;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" | 10533 | ;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" |
| 10481 | ;;;;;; (18104 24735)) | 10534 | ;;;;;; (18088 55083)) |
| 10482 | ;;; Generated autoloads from expand.el | 10535 | ;;; Generated autoloads from expand.el |
| 10483 | 10536 | ||
| 10484 | (autoload (quote expand-add-abbrevs) "expand" "\ | 10537 | (autoload 'expand-add-abbrevs "expand" "\ |
| 10485 | Add a list of abbrev to abbrev table TABLE. | 10538 | Add a list of abbrev to abbrev table TABLE. |
| 10486 | ABBREVS is a list of abbrev definitions; each abbrev description entry | 10539 | ABBREVS is a list of abbrev definitions; each abbrev description entry |
| 10487 | has the form (ABBREV EXPANSION ARG). | 10540 | has the form (ABBREV EXPANSION ARG). |
| @@ -10505,19 +10558,19 @@ If ARG is omitted, point is placed at the end of the expanded text. | |||
| 10505 | 10558 | ||
| 10506 | \(fn TABLE ABBREVS)" nil nil) | 10559 | \(fn TABLE ABBREVS)" nil nil) |
| 10507 | 10560 | ||
| 10508 | (autoload (quote expand-abbrev-hook) "expand" "\ | 10561 | (autoload 'expand-abbrev-hook "expand" "\ |
| 10509 | Abbrev hook used to do the expansion job of expand abbrevs. | 10562 | Abbrev hook used to do the expansion job of expand abbrevs. |
| 10510 | See `expand-add-abbrevs'. Value is non-nil if expansion was done. | 10563 | See `expand-add-abbrevs'. Value is non-nil if expansion was done. |
| 10511 | 10564 | ||
| 10512 | \(fn)" nil nil) | 10565 | \(fn)" nil nil) |
| 10513 | 10566 | ||
| 10514 | (autoload (quote expand-jump-to-previous-slot) "expand" "\ | 10567 | (autoload 'expand-jump-to-previous-slot "expand" "\ |
| 10515 | Move the cursor to the previous slot in the last abbrev expansion. | 10568 | Move the cursor to the previous slot in the last abbrev expansion. |
| 10516 | This is used only in conjunction with `expand-add-abbrevs'. | 10569 | This is used only in conjunction with `expand-add-abbrevs'. |
| 10517 | 10570 | ||
| 10518 | \(fn)" t nil) | 10571 | \(fn)" t nil) |
| 10519 | 10572 | ||
| 10520 | (autoload (quote expand-jump-to-next-slot) "expand" "\ | 10573 | (autoload 'expand-jump-to-next-slot "expand" "\ |
| 10521 | Move the cursor to the next slot in the last abbrev expansion. | 10574 | Move the cursor to the next slot in the last abbrev expansion. |
| 10522 | This is used only in conjunction with `expand-add-abbrevs'. | 10575 | This is used only in conjunction with `expand-add-abbrevs'. |
| 10523 | 10576 | ||
| @@ -10527,10 +10580,10 @@ This is used only in conjunction with `expand-add-abbrevs'. | |||
| 10527 | 10580 | ||
| 10528 | ;;;*** | 10581 | ;;;*** |
| 10529 | 10582 | ||
| 10530 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (18104 24765)) | 10583 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (18212 46008)) |
| 10531 | ;;; Generated autoloads from progmodes/f90.el | 10584 | ;;; Generated autoloads from progmodes/f90.el |
| 10532 | 10585 | ||
| 10533 | (autoload (quote f90-mode) "f90" "\ | 10586 | (autoload 'f90-mode "f90" "\ |
| 10534 | Major mode for editing Fortran 90,95 code in free format. | 10587 | Major mode for editing Fortran 90,95 code in free format. |
| 10535 | For fixed format code, use `fortran-mode'. | 10588 | For fixed format code, use `fortran-mode'. |
| 10536 | 10589 | ||
| @@ -10548,9 +10601,9 @@ Variables controlling indentation style and extra features: | |||
| 10548 | `f90-do-indent' | 10601 | `f90-do-indent' |
| 10549 | Extra indentation within do blocks (default 3). | 10602 | Extra indentation within do blocks (default 3). |
| 10550 | `f90-if-indent' | 10603 | `f90-if-indent' |
| 10551 | Extra indentation within if/select case/where/forall blocks (default 3). | 10604 | Extra indentation within if/select/where/forall blocks (default 3). |
| 10552 | `f90-type-indent' | 10605 | `f90-type-indent' |
| 10553 | Extra indentation within type/interface/block-data blocks (default 3). | 10606 | Extra indentation within type/enum/interface/block-data blocks (default 3). |
| 10554 | `f90-program-indent' | 10607 | `f90-program-indent' |
| 10555 | Extra indentation within program/module/subroutine/function blocks | 10608 | Extra indentation within program/module/subroutine/function blocks |
| 10556 | (default 2). | 10609 | (default 2). |
| @@ -10594,53 +10647,53 @@ with no args, if that value is non-nil. | |||
| 10594 | ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only | 10647 | ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only |
| 10595 | ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu | 10648 | ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu |
| 10596 | ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) | 10649 | ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) |
| 10597 | ;;;;;; "facemenu" "facemenu.el" (18104 24735)) | 10650 | ;;;;;; "facemenu" "facemenu.el" (18088 55083)) |
| 10598 | ;;; Generated autoloads from facemenu.el | 10651 | ;;; Generated autoloads from facemenu.el |
| 10599 | (define-key global-map "\M-o" 'facemenu-keymap) | 10652 | (define-key global-map "\M-o" 'facemenu-keymap) |
| 10600 | (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) | 10653 | (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) |
| 10601 | 10654 | ||
| 10602 | (defvar facemenu-face-menu (let ((map (make-sparse-keymap "Face"))) (define-key map "o" (cons "Other..." (quote facemenu-set-face))) map) "\ | 10655 | (defvar facemenu-face-menu (let ((map (make-sparse-keymap "Face"))) (define-key map "o" (cons "Other..." 'facemenu-set-face)) map) "\ |
| 10603 | Menu keymap for faces.") | 10656 | Menu keymap for faces.") |
| 10604 | 10657 | ||
| 10605 | (defalias (quote facemenu-face-menu) facemenu-face-menu) | 10658 | (defalias 'facemenu-face-menu facemenu-face-menu) |
| 10606 | 10659 | ||
| 10607 | (defvar facemenu-foreground-menu (let ((map (make-sparse-keymap "Foreground Color"))) (define-key map "o" (cons "Other..." (quote facemenu-set-foreground))) map) "\ | 10660 | (defvar facemenu-foreground-menu (let ((map (make-sparse-keymap "Foreground Color"))) (define-key map "o" (cons "Other..." 'facemenu-set-foreground)) map) "\ |
| 10608 | Menu keymap for foreground colors.") | 10661 | Menu keymap for foreground colors.") |
| 10609 | 10662 | ||
| 10610 | (defalias (quote facemenu-foreground-menu) facemenu-foreground-menu) | 10663 | (defalias 'facemenu-foreground-menu facemenu-foreground-menu) |
| 10611 | 10664 | ||
| 10612 | (defvar facemenu-background-menu (let ((map (make-sparse-keymap "Background Color"))) (define-key map "o" (cons "Other..." (quote facemenu-set-background))) map) "\ | 10665 | (defvar facemenu-background-menu (let ((map (make-sparse-keymap "Background Color"))) (define-key map "o" (cons "Other..." 'facemenu-set-background)) map) "\ |
| 10613 | Menu keymap for background colors.") | 10666 | Menu keymap for background colors.") |
| 10614 | 10667 | ||
| 10615 | (defalias (quote facemenu-background-menu) facemenu-background-menu) | 10668 | (defalias 'facemenu-background-menu facemenu-background-menu) |
| 10616 | 10669 | ||
| 10617 | (defvar facemenu-special-menu (let ((map (make-sparse-keymap "Special"))) (define-key map [115] (cons (purecopy "Remove Special") (quote facemenu-remove-special))) (define-key map [116] (cons (purecopy "Intangible") (quote facemenu-set-intangible))) (define-key map [118] (cons (purecopy "Invisible") (quote facemenu-set-invisible))) (define-key map [114] (cons (purecopy "Read-Only") (quote facemenu-set-read-only))) map) "\ | 10670 | (defvar facemenu-special-menu (let ((map (make-sparse-keymap "Special"))) (define-key map [115] (cons (purecopy "Remove Special") 'facemenu-remove-special)) (define-key map [116] (cons (purecopy "Intangible") 'facemenu-set-intangible)) (define-key map [118] (cons (purecopy "Invisible") 'facemenu-set-invisible)) (define-key map [114] (cons (purecopy "Read-Only") 'facemenu-set-read-only)) map) "\ |
| 10618 | Menu keymap for non-face text-properties.") | 10671 | Menu keymap for non-face text-properties.") |
| 10619 | 10672 | ||
| 10620 | (defalias (quote facemenu-special-menu) facemenu-special-menu) | 10673 | (defalias 'facemenu-special-menu facemenu-special-menu) |
| 10621 | 10674 | ||
| 10622 | (defvar facemenu-justification-menu (let ((map (make-sparse-keymap "Justification"))) (define-key map [99] (cons (purecopy "Center") (quote set-justification-center))) (define-key map [98] (cons (purecopy "Full") (quote set-justification-full))) (define-key map [114] (cons (purecopy "Right") (quote set-justification-right))) (define-key map [108] (cons (purecopy "Left") (quote set-justification-left))) (define-key map [117] (cons (purecopy "Unfilled") (quote set-justification-none))) map) "\ | 10675 | (defvar facemenu-justification-menu (let ((map (make-sparse-keymap "Justification"))) (define-key map [99] (cons (purecopy "Center") 'set-justification-center)) (define-key map [98] (cons (purecopy "Full") 'set-justification-full)) (define-key map [114] (cons (purecopy "Right") 'set-justification-right)) (define-key map [108] (cons (purecopy "Left") 'set-justification-left)) (define-key map [117] (cons (purecopy "Unfilled") 'set-justification-none)) map) "\ |
| 10623 | Submenu for text justification commands.") | 10676 | Submenu for text justification commands.") |
| 10624 | 10677 | ||
| 10625 | (defalias (quote facemenu-justification-menu) facemenu-justification-menu) | 10678 | (defalias 'facemenu-justification-menu facemenu-justification-menu) |
| 10626 | 10679 | ||
| 10627 | (defvar facemenu-indentation-menu (let ((map (make-sparse-keymap "Indentation"))) (define-key map [decrease-right-margin] (cons (purecopy "Indent Right Less") (quote decrease-right-margin))) (define-key map [increase-right-margin] (cons (purecopy "Indent Right More") (quote increase-right-margin))) (define-key map [decrease-left-margin] (cons (purecopy "Indent Less") (quote decrease-left-margin))) (define-key map [increase-left-margin] (cons (purecopy "Indent More") (quote increase-left-margin))) map) "\ | 10680 | (defvar facemenu-indentation-menu (let ((map (make-sparse-keymap "Indentation"))) (define-key map [decrease-right-margin] (cons (purecopy "Indent Right Less") 'decrease-right-margin)) (define-key map [increase-right-margin] (cons (purecopy "Indent Right More") 'increase-right-margin)) (define-key map [decrease-left-margin] (cons (purecopy "Indent Less") 'decrease-left-margin)) (define-key map [increase-left-margin] (cons (purecopy "Indent More") 'increase-left-margin)) map) "\ |
| 10628 | Submenu for indentation commands.") | 10681 | Submenu for indentation commands.") |
| 10629 | 10682 | ||
| 10630 | (defalias (quote facemenu-indentation-menu) facemenu-indentation-menu) | 10683 | (defalias 'facemenu-indentation-menu facemenu-indentation-menu) |
| 10631 | 10684 | ||
| 10632 | (defvar facemenu-menu nil "\ | 10685 | (defvar facemenu-menu nil "\ |
| 10633 | Facemenu top-level menu keymap.") | 10686 | Facemenu top-level menu keymap.") |
| 10634 | 10687 | ||
| 10635 | (setq facemenu-menu (make-sparse-keymap "Text Properties")) | 10688 | (setq facemenu-menu (make-sparse-keymap "Text Properties")) |
| 10636 | 10689 | ||
| 10637 | (let ((map facemenu-menu)) (define-key map [dc] (cons (purecopy "Display Colors") (quote list-colors-display))) (define-key map [df] (cons (purecopy "Display Faces") (quote list-faces-display))) (define-key map [dp] (cons (purecopy "Describe Properties") (quote describe-text-properties))) (define-key map [ra] (cons (purecopy "Remove Text Properties") (quote facemenu-remove-all))) (define-key map [rm] (cons (purecopy "Remove Face Properties") (quote facemenu-remove-face-props))) (define-key map [s1] (list (purecopy "--")))) | 10690 | (let ((map facemenu-menu)) (define-key map [dc] (cons (purecopy "Display Colors") 'list-colors-display)) (define-key map [df] (cons (purecopy "Display Faces") 'list-faces-display)) (define-key map [dp] (cons (purecopy "Describe Properties") 'describe-text-properties)) (define-key map [ra] (cons (purecopy "Remove Text Properties") 'facemenu-remove-all)) (define-key map [rm] (cons (purecopy "Remove Face Properties") 'facemenu-remove-face-props)) (define-key map [s1] (list (purecopy "--")))) |
| 10638 | 10691 | ||
| 10639 | (let ((map facemenu-menu)) (define-key map [in] (cons (purecopy "Indentation") (quote facemenu-indentation-menu))) (define-key map [ju] (cons (purecopy "Justification") (quote facemenu-justification-menu))) (define-key map [s2] (list (purecopy "--"))) (define-key map [sp] (cons (purecopy "Special Properties") (quote facemenu-special-menu))) (define-key map [bg] (cons (purecopy "Background Color") (quote facemenu-background-menu))) (define-key map [fg] (cons (purecopy "Foreground Color") (quote facemenu-foreground-menu))) (define-key map [fc] (cons (purecopy "Face") (quote facemenu-face-menu)))) | 10692 | (let ((map facemenu-menu)) (define-key map [in] (cons (purecopy "Indentation") 'facemenu-indentation-menu)) (define-key map [ju] (cons (purecopy "Justification") 'facemenu-justification-menu)) (define-key map [s2] (list (purecopy "--"))) (define-key map [sp] (cons (purecopy "Special Properties") 'facemenu-special-menu)) (define-key map [bg] (cons (purecopy "Background Color") 'facemenu-background-menu)) (define-key map [fg] (cons (purecopy "Foreground Color") 'facemenu-foreground-menu)) (define-key map [fc] (cons (purecopy "Face") 'facemenu-face-menu))) |
| 10640 | 10693 | ||
| 10641 | (defalias (quote facemenu-menu) facemenu-menu) | 10694 | (defalias 'facemenu-menu facemenu-menu) |
| 10642 | 10695 | ||
| 10643 | (autoload (quote facemenu-set-face) "facemenu" "\ | 10696 | (autoload 'facemenu-set-face "facemenu" "\ |
| 10644 | Apply FACE to the region or next character typed. | 10697 | Apply FACE to the region or next character typed. |
| 10645 | 10698 | ||
| 10646 | If the region is active (normally true except in Transient | 10699 | If the region is active (normally true except in Transient |
| @@ -10662,7 +10715,7 @@ if `facemenu-listed-faces' says to do that. | |||
| 10662 | 10715 | ||
| 10663 | \(fn FACE &optional START END)" t nil) | 10716 | \(fn FACE &optional START END)" t nil) |
| 10664 | 10717 | ||
| 10665 | (autoload (quote facemenu-set-foreground) "facemenu" "\ | 10718 | (autoload 'facemenu-set-foreground "facemenu" "\ |
| 10666 | Set the foreground COLOR of the region or next character typed. | 10719 | Set the foreground COLOR of the region or next character typed. |
| 10667 | This command reads the color in the minibuffer. | 10720 | This command reads the color in the minibuffer. |
| 10668 | 10721 | ||
| @@ -10676,7 +10729,7 @@ typing a character to insert cancels the specification. | |||
| 10676 | 10729 | ||
| 10677 | \(fn COLOR &optional START END)" t nil) | 10730 | \(fn COLOR &optional START END)" t nil) |
| 10678 | 10731 | ||
| 10679 | (autoload (quote facemenu-set-background) "facemenu" "\ | 10732 | (autoload 'facemenu-set-background "facemenu" "\ |
| 10680 | Set the background COLOR of the region or next character typed. | 10733 | Set the background COLOR of the region or next character typed. |
| 10681 | This command reads the color in the minibuffer. | 10734 | This command reads the color in the minibuffer. |
| 10682 | 10735 | ||
| @@ -10690,7 +10743,7 @@ typing a character to insert cancels the specification. | |||
| 10690 | 10743 | ||
| 10691 | \(fn COLOR &optional START END)" t nil) | 10744 | \(fn COLOR &optional START END)" t nil) |
| 10692 | 10745 | ||
| 10693 | (autoload (quote facemenu-set-face-from-menu) "facemenu" "\ | 10746 | (autoload 'facemenu-set-face-from-menu "facemenu" "\ |
| 10694 | Set the FACE of the region or next character typed. | 10747 | Set the FACE of the region or next character typed. |
| 10695 | This function is designed to be called from a menu; FACE is determined | 10748 | This function is designed to be called from a menu; FACE is determined |
| 10696 | using the event type of the menu entry. If FACE is a symbol whose | 10749 | using the event type of the menu entry. If FACE is a symbol whose |
| @@ -10708,49 +10761,49 @@ to insert cancels the specification. | |||
| 10708 | 10761 | ||
| 10709 | \(fn FACE START END)" t nil) | 10762 | \(fn FACE START END)" t nil) |
| 10710 | 10763 | ||
| 10711 | (autoload (quote facemenu-set-invisible) "facemenu" "\ | 10764 | (autoload 'facemenu-set-invisible "facemenu" "\ |
| 10712 | Make the region invisible. | 10765 | Make the region invisible. |
| 10713 | This sets the `invisible' text property; it can be undone with | 10766 | This sets the `invisible' text property; it can be undone with |
| 10714 | `facemenu-remove-special'. | 10767 | `facemenu-remove-special'. |
| 10715 | 10768 | ||
| 10716 | \(fn START END)" t nil) | 10769 | \(fn START END)" t nil) |
| 10717 | 10770 | ||
| 10718 | (autoload (quote facemenu-set-intangible) "facemenu" "\ | 10771 | (autoload 'facemenu-set-intangible "facemenu" "\ |
| 10719 | Make the region intangible: disallow moving into it. | 10772 | Make the region intangible: disallow moving into it. |
| 10720 | This sets the `intangible' text property; it can be undone with | 10773 | This sets the `intangible' text property; it can be undone with |
| 10721 | `facemenu-remove-special'. | 10774 | `facemenu-remove-special'. |
| 10722 | 10775 | ||
| 10723 | \(fn START END)" t nil) | 10776 | \(fn START END)" t nil) |
| 10724 | 10777 | ||
| 10725 | (autoload (quote facemenu-set-read-only) "facemenu" "\ | 10778 | (autoload 'facemenu-set-read-only "facemenu" "\ |
| 10726 | Make the region unmodifiable. | 10779 | Make the region unmodifiable. |
| 10727 | This sets the `read-only' text property; it can be undone with | 10780 | This sets the `read-only' text property; it can be undone with |
| 10728 | `facemenu-remove-special'. | 10781 | `facemenu-remove-special'. |
| 10729 | 10782 | ||
| 10730 | \(fn START END)" t nil) | 10783 | \(fn START END)" t nil) |
| 10731 | 10784 | ||
| 10732 | (autoload (quote facemenu-remove-face-props) "facemenu" "\ | 10785 | (autoload 'facemenu-remove-face-props "facemenu" "\ |
| 10733 | Remove `face' and `mouse-face' text properties. | 10786 | Remove `face' and `mouse-face' text properties. |
| 10734 | 10787 | ||
| 10735 | \(fn START END)" t nil) | 10788 | \(fn START END)" t nil) |
| 10736 | 10789 | ||
| 10737 | (autoload (quote facemenu-remove-all) "facemenu" "\ | 10790 | (autoload 'facemenu-remove-all "facemenu" "\ |
| 10738 | Remove all text properties from the region. | 10791 | Remove all text properties from the region. |
| 10739 | 10792 | ||
| 10740 | \(fn START END)" t nil) | 10793 | \(fn START END)" t nil) |
| 10741 | 10794 | ||
| 10742 | (autoload (quote facemenu-remove-special) "facemenu" "\ | 10795 | (autoload 'facemenu-remove-special "facemenu" "\ |
| 10743 | Remove all the \"special\" text properties from the region. | 10796 | Remove all the \"special\" text properties from the region. |
| 10744 | These special properties include `invisible', `intangible' and `read-only'. | 10797 | These special properties include `invisible', `intangible' and `read-only'. |
| 10745 | 10798 | ||
| 10746 | \(fn START END)" t nil) | 10799 | \(fn START END)" t nil) |
| 10747 | 10800 | ||
| 10748 | (autoload (quote facemenu-read-color) "facemenu" "\ | 10801 | (autoload 'facemenu-read-color "facemenu" "\ |
| 10749 | Read a color using the minibuffer. | 10802 | Read a color using the minibuffer. |
| 10750 | 10803 | ||
| 10751 | \(fn &optional PROMPT)" nil nil) | 10804 | \(fn &optional PROMPT)" nil nil) |
| 10752 | 10805 | ||
| 10753 | (autoload (quote list-colors-display) "facemenu" "\ | 10806 | (autoload 'list-colors-display "facemenu" "\ |
| 10754 | Display names of defined colors, and show what they look like. | 10807 | Display names of defined colors, and show what they look like. |
| 10755 | If the optional argument LIST is non-nil, it should be a list of | 10808 | If the optional argument LIST is non-nil, it should be a list of |
| 10756 | colors to display. Otherwise, this command computes a list of | 10809 | colors to display. Otherwise, this command computes a list of |
| @@ -10761,71 +10814,31 @@ argument BUFFER-NAME is nil, it defaults to *Colors*. | |||
| 10761 | 10814 | ||
| 10762 | ;;;*** | 10815 | ;;;*** |
| 10763 | 10816 | ||
| 10764 | ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" | ||
| 10765 | ;;;;;; "obsolete/fast-lock.el" (18104 24760)) | ||
| 10766 | ;;; Generated autoloads from obsolete/fast-lock.el | ||
| 10767 | |||
| 10768 | (autoload (quote fast-lock-mode) "fast-lock" "\ | ||
| 10769 | Toggle Fast Lock mode. | ||
| 10770 | With arg, turn Fast Lock mode on if and only if arg is positive and the buffer | ||
| 10771 | is associated with a file. Enable it automatically in your `~/.emacs' by: | ||
| 10772 | |||
| 10773 | (setq font-lock-support-mode 'fast-lock-mode) | ||
| 10774 | |||
| 10775 | If Fast Lock mode is enabled, and the current buffer does not contain any text | ||
| 10776 | properties, any associated Font Lock cache is used if its timestamp matches the | ||
| 10777 | buffer's file, and its `font-lock-keywords' match those that you are using. | ||
| 10778 | |||
| 10779 | Font Lock caches may be saved: | ||
| 10780 | - When you save the file's buffer. | ||
| 10781 | - When you kill an unmodified file's buffer. | ||
| 10782 | - When you exit Emacs, for all unmodified or saved buffers. | ||
| 10783 | Depending on the value of `fast-lock-save-events'. | ||
| 10784 | See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'. | ||
| 10785 | |||
| 10786 | Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad. | ||
| 10787 | |||
| 10788 | Various methods of control are provided for the Font Lock cache. In general, | ||
| 10789 | see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'. | ||
| 10790 | For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events', | ||
| 10791 | `fast-lock-save-others' and `fast-lock-save-faces'. | ||
| 10792 | |||
| 10793 | \(fn &optional ARG)" t nil) | ||
| 10794 | |||
| 10795 | (autoload (quote turn-on-fast-lock) "fast-lock" "\ | ||
| 10796 | Unconditionally turn on Fast Lock mode. | ||
| 10797 | |||
| 10798 | \(fn)" nil nil) | ||
| 10799 | |||
| 10800 | (when (fboundp (quote add-minor-mode)) (defvar fast-lock-mode nil) (add-minor-mode (quote fast-lock-mode) nil)) | ||
| 10801 | |||
| 10802 | ;;;*** | ||
| 10803 | |||
| 10804 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue | 10817 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue |
| 10805 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts | 10818 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts |
| 10806 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17900 45314)) | 10819 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (18192 17587)) |
| 10807 | ;;; Generated autoloads from mail/feedmail.el | 10820 | ;;; Generated autoloads from mail/feedmail.el |
| 10808 | 10821 | ||
| 10809 | (autoload (quote feedmail-send-it) "feedmail" "\ | 10822 | (autoload 'feedmail-send-it "feedmail" "\ |
| 10810 | Send the current mail buffer using the Feedmail package. | 10823 | Send the current mail buffer using the Feedmail package. |
| 10811 | This is a suitable value for `send-mail-function'. It can be used | 10824 | This is a suitable value for `send-mail-function'. It can be used |
| 10812 | with various lower-level mechanisms to provide features such as queueing. | 10825 | with various lower-level mechanisms to provide features such as queueing. |
| 10813 | 10826 | ||
| 10814 | \(fn)" nil nil) | 10827 | \(fn)" nil nil) |
| 10815 | 10828 | ||
| 10816 | (autoload (quote feedmail-run-the-queue-no-prompts) "feedmail" "\ | 10829 | (autoload 'feedmail-run-the-queue-no-prompts "feedmail" "\ |
| 10817 | Like `feedmail-run-the-queue', but suppress confirmation prompts. | 10830 | Like `feedmail-run-the-queue', but suppress confirmation prompts. |
| 10818 | 10831 | ||
| 10819 | \(fn &optional ARG)" t nil) | 10832 | \(fn &optional ARG)" t nil) |
| 10820 | 10833 | ||
| 10821 | (autoload (quote feedmail-run-the-queue-global-prompt) "feedmail" "\ | 10834 | (autoload 'feedmail-run-the-queue-global-prompt "feedmail" "\ |
| 10822 | Like `feedmail-run-the-queue', but with a global confirmation prompt. | 10835 | Like `feedmail-run-the-queue', but with a global confirmation prompt. |
| 10823 | This is generally most useful if run non-interactively, since you can | 10836 | This is generally most useful if run non-interactively, since you can |
| 10824 | bail out with an appropriate answer to the global confirmation prompt. | 10837 | bail out with an appropriate answer to the global confirmation prompt. |
| 10825 | 10838 | ||
| 10826 | \(fn &optional ARG)" t nil) | 10839 | \(fn &optional ARG)" t nil) |
| 10827 | 10840 | ||
| 10828 | (autoload (quote feedmail-run-the-queue) "feedmail" "\ | 10841 | (autoload 'feedmail-run-the-queue "feedmail" "\ |
| 10829 | Visit each message in the feedmail queue directory and send it out. | 10842 | Visit each message in the feedmail queue directory and send it out. |
| 10830 | Return value is a list of three things: number of messages sent, number of | 10843 | Return value is a list of three things: number of messages sent, number of |
| 10831 | messages skipped, and number of non-message things in the queue (commonly | 10844 | messages skipped, and number of non-message things in the queue (commonly |
| @@ -10833,7 +10846,7 @@ backup file names and the like). | |||
| 10833 | 10846 | ||
| 10834 | \(fn &optional ARG)" t nil) | 10847 | \(fn &optional ARG)" t nil) |
| 10835 | 10848 | ||
| 10836 | (autoload (quote feedmail-queue-reminder) "feedmail" "\ | 10849 | (autoload 'feedmail-queue-reminder "feedmail" "\ |
| 10837 | Perform some kind of reminder activity about queued and draft messages. | 10850 | Perform some kind of reminder activity about queued and draft messages. |
| 10838 | Called with an optional symbol argument which says what kind of event | 10851 | Called with an optional symbol argument which says what kind of event |
| 10839 | is triggering the reminder activity. The default is 'on-demand, which | 10852 | is triggering the reminder activity. The default is 'on-demand, which |
| @@ -10857,10 +10870,10 @@ you can set `feedmail-queue-reminder-alist' to nil. | |||
| 10857 | ;;;*** | 10870 | ;;;*** |
| 10858 | 10871 | ||
| 10859 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu | 10872 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu |
| 10860 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (18104 24735)) | 10873 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (18169 11931)) |
| 10861 | ;;; Generated autoloads from ffap.el | 10874 | ;;; Generated autoloads from ffap.el |
| 10862 | 10875 | ||
| 10863 | (autoload (quote ffap-next) "ffap" "\ | 10876 | (autoload 'ffap-next "ffap" "\ |
| 10864 | Search buffer for next file or URL, and run ffap. | 10877 | Search buffer for next file or URL, and run ffap. |
| 10865 | Optional argument BACK says to search backwards. | 10878 | Optional argument BACK says to search backwards. |
| 10866 | Optional argument WRAP says to try wrapping around if necessary. | 10879 | Optional argument WRAP says to try wrapping around if necessary. |
| @@ -10870,7 +10883,7 @@ Actual search is done by `ffap-next-guess'. | |||
| 10870 | 10883 | ||
| 10871 | \(fn &optional BACK WRAP)" t nil) | 10884 | \(fn &optional BACK WRAP)" t nil) |
| 10872 | 10885 | ||
| 10873 | (autoload (quote find-file-at-point) "ffap" "\ | 10886 | (autoload 'find-file-at-point "ffap" "\ |
| 10874 | Find FILENAME, guessing a default from text around point. | 10887 | Find FILENAME, guessing a default from text around point. |
| 10875 | If `ffap-url-regexp' is not nil, the FILENAME may also be an URL. | 10888 | If `ffap-url-regexp' is not nil, the FILENAME may also be an URL. |
| 10876 | With a prefix, this command behaves exactly like `ffap-file-finder'. | 10889 | With a prefix, this command behaves exactly like `ffap-file-finder'. |
| @@ -10880,9 +10893,9 @@ and the functions `ffap-file-at-point' and `ffap-url-at-point'. | |||
| 10880 | 10893 | ||
| 10881 | \(fn &optional FILENAME)" t nil) | 10894 | \(fn &optional FILENAME)" t nil) |
| 10882 | 10895 | ||
| 10883 | (defalias (quote ffap) (quote find-file-at-point)) | 10896 | (defalias 'ffap 'find-file-at-point) |
| 10884 | 10897 | ||
| 10885 | (autoload (quote ffap-menu) "ffap" "\ | 10898 | (autoload 'ffap-menu "ffap" "\ |
| 10886 | Put up a menu of files and urls mentioned in this buffer. | 10899 | Put up a menu of files and urls mentioned in this buffer. |
| 10887 | Then set mark, jump to choice, and try to fetch it. The menu is | 10900 | Then set mark, jump to choice, and try to fetch it. The menu is |
| 10888 | cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'. | 10901 | cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'. |
| @@ -10891,7 +10904,7 @@ a rebuild. Searches with `ffap-menu-regexp'. | |||
| 10891 | 10904 | ||
| 10892 | \(fn &optional RESCAN)" t nil) | 10905 | \(fn &optional RESCAN)" t nil) |
| 10893 | 10906 | ||
| 10894 | (autoload (quote ffap-at-mouse) "ffap" "\ | 10907 | (autoload 'ffap-at-mouse "ffap" "\ |
| 10895 | Find file or url guessed from text around mouse click. | 10908 | Find file or url guessed from text around mouse click. |
| 10896 | Interactively, calls `ffap-at-mouse-fallback' if no guess is found. | 10909 | Interactively, calls `ffap-at-mouse-fallback' if no guess is found. |
| 10897 | Return value: | 10910 | Return value: |
| @@ -10901,12 +10914,12 @@ Return value: | |||
| 10901 | 10914 | ||
| 10902 | \(fn E)" t nil) | 10915 | \(fn E)" t nil) |
| 10903 | 10916 | ||
| 10904 | (autoload (quote dired-at-point) "ffap" "\ | 10917 | (autoload 'dired-at-point "ffap" "\ |
| 10905 | Start Dired, defaulting to file at point. See `ffap'. | 10918 | Start Dired, defaulting to file at point. See `ffap'. |
| 10906 | 10919 | ||
| 10907 | \(fn &optional FILENAME)" t nil) | 10920 | \(fn &optional FILENAME)" t nil) |
| 10908 | 10921 | ||
| 10909 | (autoload (quote ffap-bindings) "ffap" "\ | 10922 | (autoload 'ffap-bindings "ffap" "\ |
| 10910 | Evaluate the forms in variable `ffap-bindings'. | 10923 | Evaluate the forms in variable `ffap-bindings'. |
| 10911 | 10924 | ||
| 10912 | \(fn)" t nil) | 10925 | \(fn)" t nil) |
| @@ -10916,17 +10929,17 @@ Evaluate the forms in variable `ffap-bindings'. | |||
| 10916 | ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively | 10929 | ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively |
| 10917 | ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find | 10930 | ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find |
| 10918 | ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) | 10931 | ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) |
| 10919 | ;;;;;; "filecache" "filecache.el" (18104 24735)) | 10932 | ;;;;;; "filecache" "filecache.el" (18169 11931)) |
| 10920 | ;;; Generated autoloads from filecache.el | 10933 | ;;; Generated autoloads from filecache.el |
| 10921 | 10934 | ||
| 10922 | (autoload (quote file-cache-add-directory) "filecache" "\ | 10935 | (autoload 'file-cache-add-directory "filecache" "\ |
| 10923 | Add DIRECTORY to the file cache. | 10936 | Add DIRECTORY to the file cache. |
| 10924 | If the optional REGEXP argument is non-nil, only files which match it will | 10937 | If the optional REGEXP argument is non-nil, only files which match it will |
| 10925 | be added to the cache. | 10938 | be added to the cache. |
| 10926 | 10939 | ||
| 10927 | \(fn DIRECTORY &optional REGEXP)" t nil) | 10940 | \(fn DIRECTORY &optional REGEXP)" t nil) |
| 10928 | 10941 | ||
| 10929 | (autoload (quote file-cache-add-directory-list) "filecache" "\ | 10942 | (autoload 'file-cache-add-directory-list "filecache" "\ |
| 10930 | Add DIRECTORY-LIST (a list of directory names) to the file cache. | 10943 | Add DIRECTORY-LIST (a list of directory names) to the file cache. |
| 10931 | If the optional REGEXP argument is non-nil, only files which match it | 10944 | If the optional REGEXP argument is non-nil, only files which match it |
| 10932 | will be added to the cache. Note that the REGEXP is applied to the files | 10945 | will be added to the cache. Note that the REGEXP is applied to the files |
| @@ -10934,24 +10947,24 @@ in each directory, not to the directory list itself. | |||
| 10934 | 10947 | ||
| 10935 | \(fn DIRECTORY-LIST &optional REGEXP)" t nil) | 10948 | \(fn DIRECTORY-LIST &optional REGEXP)" t nil) |
| 10936 | 10949 | ||
| 10937 | (autoload (quote file-cache-add-file) "filecache" "\ | 10950 | (autoload 'file-cache-add-file "filecache" "\ |
| 10938 | Add FILE to the file cache. | 10951 | Add FILE to the file cache. |
| 10939 | 10952 | ||
| 10940 | \(fn FILE)" t nil) | 10953 | \(fn FILE)" t nil) |
| 10941 | 10954 | ||
| 10942 | (autoload (quote file-cache-add-directory-using-find) "filecache" "\ | 10955 | (autoload 'file-cache-add-directory-using-find "filecache" "\ |
| 10943 | Use the `find' command to add files to the file cache. | 10956 | Use the `find' command to add files to the file cache. |
| 10944 | Find is run in DIRECTORY. | 10957 | Find is run in DIRECTORY. |
| 10945 | 10958 | ||
| 10946 | \(fn DIRECTORY)" t nil) | 10959 | \(fn DIRECTORY)" t nil) |
| 10947 | 10960 | ||
| 10948 | (autoload (quote file-cache-add-directory-using-locate) "filecache" "\ | 10961 | (autoload 'file-cache-add-directory-using-locate "filecache" "\ |
| 10949 | Use the `locate' command to add files to the file cache. | 10962 | Use the `locate' command to add files to the file cache. |
| 10950 | STRING is passed as an argument to the locate command. | 10963 | STRING is passed as an argument to the locate command. |
| 10951 | 10964 | ||
| 10952 | \(fn STRING)" t nil) | 10965 | \(fn STRING)" t nil) |
| 10953 | 10966 | ||
| 10954 | (autoload (quote file-cache-add-directory-recursively) "filecache" "\ | 10967 | (autoload 'file-cache-add-directory-recursively "filecache" "\ |
| 10955 | Adds DIR and any subdirectories to the file-cache. | 10968 | Adds DIR and any subdirectories to the file-cache. |
| 10956 | This function does not use any external programs | 10969 | This function does not use any external programs |
| 10957 | If the optional REGEXP argument is non-nil, only files which match it | 10970 | If the optional REGEXP argument is non-nil, only files which match it |
| @@ -10960,7 +10973,7 @@ in each directory, not to the directory list itself. | |||
| 10960 | 10973 | ||
| 10961 | \(fn DIR &optional REGEXP)" t nil) | 10974 | \(fn DIR &optional REGEXP)" t nil) |
| 10962 | 10975 | ||
| 10963 | (autoload (quote file-cache-minibuffer-complete) "filecache" "\ | 10976 | (autoload 'file-cache-minibuffer-complete "filecache" "\ |
| 10964 | Complete a filename in the minibuffer using a preloaded cache. | 10977 | Complete a filename in the minibuffer using a preloaded cache. |
| 10965 | Filecache does two kinds of substitution: it completes on names in | 10978 | Filecache does two kinds of substitution: it completes on names in |
| 10966 | the cache, and, once it has found a unique name, it cycles through | 10979 | the cache, and, once it has found a unique name, it cycles through |
| @@ -10975,11 +10988,11 @@ the name is considered already unique; only the second substitution | |||
| 10975 | 10988 | ||
| 10976 | ;;;*** | 10989 | ;;;*** |
| 10977 | 10990 | ||
| 10978 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (18104 | 10991 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (18197 |
| 10979 | ;;;;;; 24735)) | 10992 | ;;;;;; 21668)) |
| 10980 | ;;; Generated autoloads from filesets.el | 10993 | ;;; Generated autoloads from filesets.el |
| 10981 | 10994 | ||
| 10982 | (autoload (quote filesets-init) "filesets" "\ | 10995 | (autoload 'filesets-init "filesets" "\ |
| 10983 | Filesets initialization. | 10996 | Filesets initialization. |
| 10984 | Set up hooks, load the cache file -- if existing -- and build the menu. | 10997 | Set up hooks, load the cache file -- if existing -- and build the menu. |
| 10985 | 10998 | ||
| @@ -10987,7 +11000,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 10987 | 11000 | ||
| 10988 | ;;;*** | 11001 | ;;;*** |
| 10989 | 11002 | ||
| 10990 | ;;;### (autoloads nil "fill" "textmodes/fill.el" (18104 24771)) | 11003 | ;;;### (autoloads nil "fill" "textmodes/fill.el" (18210 22046)) |
| 10991 | ;;; Generated autoloads from textmodes/fill.el | 11004 | ;;; Generated autoloads from textmodes/fill.el |
| 10992 | (put 'colon-double-space 'safe-local-variable 'booleanp) | 11005 | (put 'colon-double-space 'safe-local-variable 'booleanp) |
| 10993 | 11006 | ||
| @@ -10995,16 +11008,16 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 10995 | 11008 | ||
| 10996 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options | 11009 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options |
| 10997 | ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" | 11010 | ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" |
| 10998 | ;;;;;; (18104 24736)) | 11011 | ;;;;;; (18088 55084)) |
| 10999 | ;;; Generated autoloads from find-dired.el | 11012 | ;;; Generated autoloads from find-dired.el |
| 11000 | 11013 | ||
| 11001 | (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ | 11014 | (defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") '("-exec ls -ld {} \\;" . "-ld")) "\ |
| 11002 | *Description of the option to `find' to produce an `ls -l'-type listing. | 11015 | *Description of the option to `find' to produce an `ls -l'-type listing. |
| 11003 | This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION | 11016 | This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION |
| 11004 | gives the option (or options) to `find' that produce the desired output. | 11017 | gives the option (or options) to `find' that produce the desired output. |
| 11005 | LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") | 11018 | LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") |
| 11006 | 11019 | ||
| 11007 | (custom-autoload (quote find-ls-option) "find-dired" t) | 11020 | (custom-autoload 'find-ls-option "find-dired" t) |
| 11008 | 11021 | ||
| 11009 | (defvar find-ls-subdir-switches "-al" "\ | 11022 | (defvar find-ls-subdir-switches "-al" "\ |
| 11010 | `ls' switches for inserting subdirectories in `*Find*' buffers. | 11023 | `ls' switches for inserting subdirectories in `*Find*' buffers. |
| @@ -11012,16 +11025,16 @@ This should contain the \"-l\" switch. | |||
| 11012 | Use the \"-F\" or \"-b\" switches if and only if you also use | 11025 | Use the \"-F\" or \"-b\" switches if and only if you also use |
| 11013 | them for `find-ls-option'.") | 11026 | them for `find-ls-option'.") |
| 11014 | 11027 | ||
| 11015 | (custom-autoload (quote find-ls-subdir-switches) "find-dired" t) | 11028 | (custom-autoload 'find-ls-subdir-switches "find-dired" t) |
| 11016 | 11029 | ||
| 11017 | (defvar find-grep-options (if (or (eq system-type (quote berkeley-unix)) (string-match "solaris2" system-configuration) (string-match "irix" system-configuration)) "-s" "-q") "\ | 11030 | (defvar find-grep-options (if (or (eq system-type 'berkeley-unix) (string-match "solaris2" system-configuration) (string-match "irix" system-configuration)) "-s" "-q") "\ |
| 11018 | *Option to grep to be as silent as possible. | 11031 | *Option to grep to be as silent as possible. |
| 11019 | On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. | 11032 | On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
| 11020 | On other systems, the closest you can come is to use `-l'.") | 11033 | On other systems, the closest you can come is to use `-l'.") |
| 11021 | 11034 | ||
| 11022 | (custom-autoload (quote find-grep-options) "find-dired" t) | 11035 | (custom-autoload 'find-grep-options "find-dired" t) |
| 11023 | 11036 | ||
| 11024 | (autoload (quote find-dired) "find-dired" "\ | 11037 | (autoload 'find-dired "find-dired" "\ |
| 11025 | Run `find' and go into Dired mode on a buffer of the output. | 11038 | Run `find' and go into Dired mode on a buffer of the output. |
| 11026 | The command run (after changing into DIR) is | 11039 | The command run (after changing into DIR) is |
| 11027 | 11040 | ||
| @@ -11032,7 +11045,7 @@ as the final argument. | |||
| 11032 | 11045 | ||
| 11033 | \(fn DIR ARGS)" t nil) | 11046 | \(fn DIR ARGS)" t nil) |
| 11034 | 11047 | ||
| 11035 | (autoload (quote find-name-dired) "find-dired" "\ | 11048 | (autoload 'find-name-dired "find-dired" "\ |
| 11036 | Search DIR recursively for files matching the globbing pattern PATTERN, | 11049 | Search DIR recursively for files matching the globbing pattern PATTERN, |
| 11037 | and run dired on those files. | 11050 | and run dired on those files. |
| 11038 | PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | 11051 | PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. |
| @@ -11042,7 +11055,7 @@ The command run (after changing into DIR) is | |||
| 11042 | 11055 | ||
| 11043 | \(fn DIR PATTERN)" t nil) | 11056 | \(fn DIR PATTERN)" t nil) |
| 11044 | 11057 | ||
| 11045 | (autoload (quote find-grep-dired) "find-dired" "\ | 11058 | (autoload 'find-grep-dired "find-dired" "\ |
| 11046 | Find files in DIR containing a regexp REGEXP and start Dired on output. | 11059 | Find files in DIR containing a regexp REGEXP and start Dired on output. |
| 11047 | The command run (after changing into DIR) is | 11060 | The command run (after changing into DIR) is |
| 11048 | 11061 | ||
| @@ -11056,10 +11069,10 @@ Thus ARG can also contain additional grep options. | |||
| 11056 | 11069 | ||
| 11057 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file | 11070 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file |
| 11058 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" | 11071 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" |
| 11059 | ;;;;;; (18104 24736)) | 11072 | ;;;;;; (18088 55084)) |
| 11060 | ;;; Generated autoloads from find-file.el | 11073 | ;;; Generated autoloads from find-file.el |
| 11061 | 11074 | ||
| 11062 | (defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (buffer-substring (match-beginning 2) (match-end 2))))) "\ | 11075 | (defvar ff-special-constructs '(("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ |
| 11063 | *List of special constructs for `ff-treat-as-special' to recognize. | 11076 | *List of special constructs for `ff-treat-as-special' to recognize. |
| 11064 | Each element, tried in order, has the form (REGEXP . EXTRACT). | 11077 | Each element, tried in order, has the form (REGEXP . EXTRACT). |
| 11065 | If REGEXP matches the current line (from the beginning of the line), | 11078 | If REGEXP matches the current line (from the beginning of the line), |
| @@ -11067,7 +11080,7 @@ If REGEXP matches the current line (from the beginning of the line), | |||
| 11067 | If EXTRACT returns nil, keep trying. Otherwise, return the | 11080 | If EXTRACT returns nil, keep trying. Otherwise, return the |
| 11068 | filename that EXTRACT returned.") | 11081 | filename that EXTRACT returned.") |
| 11069 | 11082 | ||
| 11070 | (autoload (quote ff-get-other-file) "find-file" "\ | 11083 | (autoload 'ff-get-other-file "find-file" "\ |
| 11071 | Find the header or source file corresponding to this file. | 11084 | Find the header or source file corresponding to this file. |
| 11072 | See also the documentation for `ff-find-other-file'. | 11085 | See also the documentation for `ff-find-other-file'. |
| 11073 | 11086 | ||
| @@ -11075,9 +11088,9 @@ If optional IN-OTHER-WINDOW is non-nil, find the file in another window. | |||
| 11075 | 11088 | ||
| 11076 | \(fn &optional IN-OTHER-WINDOW)" t nil) | 11089 | \(fn &optional IN-OTHER-WINDOW)" t nil) |
| 11077 | 11090 | ||
| 11078 | (defalias (quote ff-find-related-file) (quote ff-find-other-file)) | 11091 | (defalias 'ff-find-related-file 'ff-find-other-file) |
| 11079 | 11092 | ||
| 11080 | (autoload (quote ff-find-other-file) "find-file" "\ | 11093 | (autoload 'ff-find-other-file "find-file" "\ |
| 11081 | Find the header or source file corresponding to this file. | 11094 | Find the header or source file corresponding to this file. |
| 11082 | Being on a `#include' line pulls in that file. | 11095 | Being on a `#include' line pulls in that file. |
| 11083 | 11096 | ||
| @@ -11132,12 +11145,12 @@ Variables of interest include: | |||
| 11132 | 11145 | ||
| 11133 | \(fn &optional IN-OTHER-WINDOW IGNORE-INCLUDE)" t nil) | 11146 | \(fn &optional IN-OTHER-WINDOW IGNORE-INCLUDE)" t nil) |
| 11134 | 11147 | ||
| 11135 | (autoload (quote ff-mouse-find-other-file) "find-file" "\ | 11148 | (autoload 'ff-mouse-find-other-file "find-file" "\ |
| 11136 | Visit the file you click on. | 11149 | Visit the file you click on. |
| 11137 | 11150 | ||
| 11138 | \(fn EVENT)" t nil) | 11151 | \(fn EVENT)" t nil) |
| 11139 | 11152 | ||
| 11140 | (autoload (quote ff-mouse-find-other-file-other-window) "find-file" "\ | 11153 | (autoload 'ff-mouse-find-other-file-other-window "find-file" "\ |
| 11141 | Visit the file you click on in another window. | 11154 | Visit the file you click on in another window. |
| 11142 | 11155 | ||
| 11143 | \(fn EVENT)" t nil) | 11156 | \(fn EVENT)" t nil) |
| @@ -11150,15 +11163,15 @@ Visit the file you click on in another window. | |||
| 11150 | ;;;;;; find-variable find-variable-noselect find-function-other-frame | 11163 | ;;;;;; find-variable find-variable-noselect find-function-other-frame |
| 11151 | ;;;;;; find-function-other-window find-function find-function-noselect | 11164 | ;;;;;; find-function-other-window find-function find-function-noselect |
| 11152 | ;;;;;; find-function-search-for-symbol find-library) "find-func" | 11165 | ;;;;;; find-function-search-for-symbol find-library) "find-func" |
| 11153 | ;;;;;; "emacs-lisp/find-func.el" (18104 24748)) | 11166 | ;;;;;; "emacs-lisp/find-func.el" (18200 51265)) |
| 11154 | ;;; Generated autoloads from emacs-lisp/find-func.el | 11167 | ;;; Generated autoloads from emacs-lisp/find-func.el |
| 11155 | 11168 | ||
| 11156 | (autoload (quote find-library) "find-func" "\ | 11169 | (autoload 'find-library "find-func" "\ |
| 11157 | Find the elisp source of LIBRARY. | 11170 | Find the elisp source of LIBRARY. |
| 11158 | 11171 | ||
| 11159 | \(fn LIBRARY)" t nil) | 11172 | \(fn LIBRARY)" t nil) |
| 11160 | 11173 | ||
| 11161 | (autoload (quote find-function-search-for-symbol) "find-func" "\ | 11174 | (autoload 'find-function-search-for-symbol "find-func" "\ |
| 11162 | Search for SYMBOL's definition of type TYPE in LIBRARY. | 11175 | Search for SYMBOL's definition of type TYPE in LIBRARY. |
| 11163 | Visit the library in a buffer, and return a cons cell (BUFFER . POSITION), | 11176 | Visit the library in a buffer, and return a cons cell (BUFFER . POSITION), |
| 11164 | or just (BUFFER . nil) if the definition can't be found in the file. | 11177 | or just (BUFFER . nil) if the definition can't be found in the file. |
| @@ -11170,7 +11183,7 @@ The search is done in the source for library LIBRARY. | |||
| 11170 | 11183 | ||
| 11171 | \(fn SYMBOL TYPE LIBRARY)" nil nil) | 11184 | \(fn SYMBOL TYPE LIBRARY)" nil nil) |
| 11172 | 11185 | ||
| 11173 | (autoload (quote find-function-noselect) "find-func" "\ | 11186 | (autoload 'find-function-noselect "find-func" "\ |
| 11174 | Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION. | 11187 | Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION. |
| 11175 | 11188 | ||
| 11176 | Finds the source file containing the definition of FUNCTION | 11189 | Finds the source file containing the definition of FUNCTION |
| @@ -11184,7 +11197,7 @@ in `load-path'. | |||
| 11184 | 11197 | ||
| 11185 | \(fn FUNCTION)" nil nil) | 11198 | \(fn FUNCTION)" nil nil) |
| 11186 | 11199 | ||
| 11187 | (autoload (quote find-function) "find-func" "\ | 11200 | (autoload 'find-function "find-func" "\ |
| 11188 | Find the definition of the FUNCTION near point. | 11201 | Find the definition of the FUNCTION near point. |
| 11189 | 11202 | ||
| 11190 | Finds the source file containing the definition of the function | 11203 | Finds the source file containing the definition of the function |
| @@ -11198,21 +11211,21 @@ See also `find-function-recenter-line' and `find-function-after-hook'. | |||
| 11198 | 11211 | ||
| 11199 | \(fn FUNCTION)" t nil) | 11212 | \(fn FUNCTION)" t nil) |
| 11200 | 11213 | ||
| 11201 | (autoload (quote find-function-other-window) "find-func" "\ | 11214 | (autoload 'find-function-other-window "find-func" "\ |
| 11202 | Find, in another window, the definition of FUNCTION near point. | 11215 | Find, in another window, the definition of FUNCTION near point. |
| 11203 | 11216 | ||
| 11204 | See `find-function' for more details. | 11217 | See `find-function' for more details. |
| 11205 | 11218 | ||
| 11206 | \(fn FUNCTION)" t nil) | 11219 | \(fn FUNCTION)" t nil) |
| 11207 | 11220 | ||
| 11208 | (autoload (quote find-function-other-frame) "find-func" "\ | 11221 | (autoload 'find-function-other-frame "find-func" "\ |
| 11209 | Find, in another frame, the definition of FUNCTION near point. | 11222 | Find, in another frame, the definition of FUNCTION near point. |
| 11210 | 11223 | ||
| 11211 | See `find-function' for more details. | 11224 | See `find-function' for more details. |
| 11212 | 11225 | ||
| 11213 | \(fn FUNCTION)" t nil) | 11226 | \(fn FUNCTION)" t nil) |
| 11214 | 11227 | ||
| 11215 | (autoload (quote find-variable-noselect) "find-func" "\ | 11228 | (autoload 'find-variable-noselect "find-func" "\ |
| 11216 | Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE. | 11229 | Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE. |
| 11217 | 11230 | ||
| 11218 | Finds the library containing the definition of VARIABLE in a buffer and | 11231 | Finds the library containing the definition of VARIABLE in a buffer and |
| @@ -11224,7 +11237,7 @@ The library where VARIABLE is defined is searched for in FILE or | |||
| 11224 | 11237 | ||
| 11225 | \(fn VARIABLE &optional FILE)" nil nil) | 11238 | \(fn VARIABLE &optional FILE)" nil nil) |
| 11226 | 11239 | ||
| 11227 | (autoload (quote find-variable) "find-func" "\ | 11240 | (autoload 'find-variable "find-func" "\ |
| 11228 | Find the definition of the VARIABLE at or before point. | 11241 | Find the definition of the VARIABLE at or before point. |
| 11229 | 11242 | ||
| 11230 | Finds the library containing the definition of the variable | 11243 | Finds the library containing the definition of the variable |
| @@ -11239,21 +11252,21 @@ See also `find-function-recenter-line' and `find-function-after-hook'. | |||
| 11239 | 11252 | ||
| 11240 | \(fn VARIABLE)" t nil) | 11253 | \(fn VARIABLE)" t nil) |
| 11241 | 11254 | ||
| 11242 | (autoload (quote find-variable-other-window) "find-func" "\ | 11255 | (autoload 'find-variable-other-window "find-func" "\ |
| 11243 | Find, in another window, the definition of VARIABLE near point. | 11256 | Find, in another window, the definition of VARIABLE near point. |
| 11244 | 11257 | ||
| 11245 | See `find-variable' for more details. | 11258 | See `find-variable' for more details. |
| 11246 | 11259 | ||
| 11247 | \(fn VARIABLE)" t nil) | 11260 | \(fn VARIABLE)" t nil) |
| 11248 | 11261 | ||
| 11249 | (autoload (quote find-variable-other-frame) "find-func" "\ | 11262 | (autoload 'find-variable-other-frame "find-func" "\ |
| 11250 | Find, in another frame, the definition of VARIABLE near point. | 11263 | Find, in another frame, the definition of VARIABLE near point. |
| 11251 | 11264 | ||
| 11252 | See `find-variable' for more details. | 11265 | See `find-variable' for more details. |
| 11253 | 11266 | ||
| 11254 | \(fn VARIABLE)" t nil) | 11267 | \(fn VARIABLE)" t nil) |
| 11255 | 11268 | ||
| 11256 | (autoload (quote find-definition-noselect) "find-func" "\ | 11269 | (autoload 'find-definition-noselect "find-func" "\ |
| 11257 | Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. | 11270 | Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. |
| 11258 | If the definition can't be found in the buffer, return (BUFFER). | 11271 | If the definition can't be found in the buffer, return (BUFFER). |
| 11259 | TYPE says what type of definition: nil for a function, `defvar' for a | 11272 | TYPE says what type of definition: nil for a function, `defvar' for a |
| @@ -11265,7 +11278,7 @@ The library where SYMBOL is defined is searched for in FILE or | |||
| 11265 | 11278 | ||
| 11266 | \(fn SYMBOL TYPE &optional FILE)" nil nil) | 11279 | \(fn SYMBOL TYPE &optional FILE)" nil nil) |
| 11267 | 11280 | ||
| 11268 | (autoload (quote find-face-definition) "find-func" "\ | 11281 | (autoload 'find-face-definition "find-func" "\ |
| 11269 | Find the definition of FACE. FACE defaults to the name near point. | 11282 | Find the definition of FACE. FACE defaults to the name near point. |
| 11270 | 11283 | ||
| 11271 | Finds the Emacs Lisp library containing the definition of the face | 11284 | Finds the Emacs Lisp library containing the definition of the face |
| @@ -11280,23 +11293,23 @@ See also `find-function-recenter-line' and `find-function-after-hook'. | |||
| 11280 | 11293 | ||
| 11281 | \(fn FACE)" t nil) | 11294 | \(fn FACE)" t nil) |
| 11282 | 11295 | ||
| 11283 | (autoload (quote find-function-on-key) "find-func" "\ | 11296 | (autoload 'find-function-on-key "find-func" "\ |
| 11284 | Find the function that KEY invokes. KEY is a string. | 11297 | Find the function that KEY invokes. KEY is a string. |
| 11285 | Set mark before moving, if the buffer already existed. | 11298 | Set mark before moving, if the buffer already existed. |
| 11286 | 11299 | ||
| 11287 | \(fn KEY)" t nil) | 11300 | \(fn KEY)" t nil) |
| 11288 | 11301 | ||
| 11289 | (autoload (quote find-function-at-point) "find-func" "\ | 11302 | (autoload 'find-function-at-point "find-func" "\ |
| 11290 | Find directly the function at point in the other window. | 11303 | Find directly the function at point in the other window. |
| 11291 | 11304 | ||
| 11292 | \(fn)" t nil) | 11305 | \(fn)" t nil) |
| 11293 | 11306 | ||
| 11294 | (autoload (quote find-variable-at-point) "find-func" "\ | 11307 | (autoload 'find-variable-at-point "find-func" "\ |
| 11295 | Find directly the variable at point in the other window. | 11308 | Find directly the variable at point in the other window. |
| 11296 | 11309 | ||
| 11297 | \(fn)" t nil) | 11310 | \(fn)" t nil) |
| 11298 | 11311 | ||
| 11299 | (autoload (quote find-function-setup-keys) "find-func" "\ | 11312 | (autoload 'find-function-setup-keys "find-func" "\ |
| 11300 | Define some key bindings for the find-function family of functions. | 11313 | Define some key bindings for the find-function family of functions. |
| 11301 | 11314 | ||
| 11302 | \(fn)" nil nil) | 11315 | \(fn)" nil nil) |
| @@ -11304,20 +11317,20 @@ Define some key bindings for the find-function family of functions. | |||
| 11304 | ;;;*** | 11317 | ;;;*** |
| 11305 | 11318 | ||
| 11306 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories | 11319 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories |
| 11307 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (18104 24736)) | 11320 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (18169 11931)) |
| 11308 | ;;; Generated autoloads from find-lisp.el | 11321 | ;;; Generated autoloads from find-lisp.el |
| 11309 | 11322 | ||
| 11310 | (autoload (quote find-lisp-find-dired) "find-lisp" "\ | 11323 | (autoload 'find-lisp-find-dired "find-lisp" "\ |
| 11311 | Find files in DIR, matching REGEXP. | 11324 | Find files in DIR, matching REGEXP. |
| 11312 | 11325 | ||
| 11313 | \(fn DIR REGEXP)" t nil) | 11326 | \(fn DIR REGEXP)" t nil) |
| 11314 | 11327 | ||
| 11315 | (autoload (quote find-lisp-find-dired-subdirectories) "find-lisp" "\ | 11328 | (autoload 'find-lisp-find-dired-subdirectories "find-lisp" "\ |
| 11316 | Find all subdirectories of DIR. | 11329 | Find all subdirectories of DIR. |
| 11317 | 11330 | ||
| 11318 | \(fn DIR)" t nil) | 11331 | \(fn DIR)" t nil) |
| 11319 | 11332 | ||
| 11320 | (autoload (quote find-lisp-find-dired-filter) "find-lisp" "\ | 11333 | (autoload 'find-lisp-find-dired-filter "find-lisp" "\ |
| 11321 | Change the filter on a find-lisp-find-dired buffer to REGEXP. | 11334 | Change the filter on a find-lisp-find-dired buffer to REGEXP. |
| 11322 | 11335 | ||
| 11323 | \(fn REGEXP)" t nil) | 11336 | \(fn REGEXP)" t nil) |
| @@ -11325,21 +11338,21 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP. | |||
| 11325 | ;;;*** | 11338 | ;;;*** |
| 11326 | 11339 | ||
| 11327 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) | 11340 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) |
| 11328 | ;;;;;; "finder" "finder.el" (18104 24736)) | 11341 | ;;;;;; "finder" "finder.el" (18169 11931)) |
| 11329 | ;;; Generated autoloads from finder.el | 11342 | ;;; Generated autoloads from finder.el |
| 11330 | 11343 | ||
| 11331 | (autoload (quote finder-list-keywords) "finder" "\ | 11344 | (autoload 'finder-list-keywords "finder" "\ |
| 11332 | Display descriptions of the keywords in the Finder buffer. | 11345 | Display descriptions of the keywords in the Finder buffer. |
| 11333 | 11346 | ||
| 11334 | \(fn)" t nil) | 11347 | \(fn)" t nil) |
| 11335 | 11348 | ||
| 11336 | (autoload (quote finder-commentary) "finder" "\ | 11349 | (autoload 'finder-commentary "finder" "\ |
| 11337 | Display FILE's commentary section. | 11350 | Display FILE's commentary section. |
| 11338 | FILE should be in a form suitable for passing to `locate-library'. | 11351 | FILE should be in a form suitable for passing to `locate-library'. |
| 11339 | 11352 | ||
| 11340 | \(fn FILE)" t nil) | 11353 | \(fn FILE)" t nil) |
| 11341 | 11354 | ||
| 11342 | (autoload (quote finder-by-keyword) "finder" "\ | 11355 | (autoload 'finder-by-keyword "finder" "\ |
| 11343 | Find packages matching a given keyword. | 11356 | Find packages matching a given keyword. |
| 11344 | 11357 | ||
| 11345 | \(fn)" t nil) | 11358 | \(fn)" t nil) |
| @@ -11347,17 +11360,17 @@ Find packages matching a given keyword. | |||
| 11347 | ;;;*** | 11360 | ;;;*** |
| 11348 | 11361 | ||
| 11349 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" | 11362 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" |
| 11350 | ;;;;;; "flow-ctrl.el" (18104 24736)) | 11363 | ;;;;;; "flow-ctrl.el" (18088 55084)) |
| 11351 | ;;; Generated autoloads from flow-ctrl.el | 11364 | ;;; Generated autoloads from flow-ctrl.el |
| 11352 | 11365 | ||
| 11353 | (autoload (quote enable-flow-control) "flow-ctrl" "\ | 11366 | (autoload 'enable-flow-control "flow-ctrl" "\ |
| 11354 | Toggle flow control handling. | 11367 | Toggle flow control handling. |
| 11355 | When handling is enabled, user can type C-s as C-\\, and C-q as C-^. | 11368 | When handling is enabled, user can type C-s as C-\\, and C-q as C-^. |
| 11356 | With arg, enable flow control mode if arg is positive, otherwise disable. | 11369 | With arg, enable flow control mode if arg is positive, otherwise disable. |
| 11357 | 11370 | ||
| 11358 | \(fn &optional ARGUMENT)" t nil) | 11371 | \(fn &optional ARGUMENT)" t nil) |
| 11359 | 11372 | ||
| 11360 | (autoload (quote enable-flow-control-on) "flow-ctrl" "\ | 11373 | (autoload 'enable-flow-control-on "flow-ctrl" "\ |
| 11361 | Enable flow control if using one of a specified set of terminal types. | 11374 | Enable flow control if using one of a specified set of terminal types. |
| 11362 | Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control | 11375 | Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control |
| 11363 | on VT-100 and H19 terminals. When flow control is enabled, | 11376 | on VT-100 and H19 terminals. When flow control is enabled, |
| @@ -11369,38 +11382,38 @@ to get the effect of a C-q. | |||
| 11369 | ;;;*** | 11382 | ;;;*** |
| 11370 | 11383 | ||
| 11371 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" | 11384 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" |
| 11372 | ;;;;;; (18104 24750)) | 11385 | ;;;;;; (18212 46006)) |
| 11373 | ;;; Generated autoloads from gnus/flow-fill.el | 11386 | ;;; Generated autoloads from gnus/flow-fill.el |
| 11374 | 11387 | ||
| 11375 | (autoload (quote fill-flowed-encode) "flow-fill" "\ | 11388 | (autoload 'fill-flowed-encode "flow-fill" "\ |
| 11376 | Not documented | 11389 | Not documented |
| 11377 | 11390 | ||
| 11378 | \(fn &optional BUFFER)" nil nil) | 11391 | \(fn &optional BUFFER)" nil nil) |
| 11379 | 11392 | ||
| 11380 | (autoload (quote fill-flowed) "flow-fill" "\ | 11393 | (autoload 'fill-flowed "flow-fill" "\ |
| 11381 | Not documented | 11394 | Not documented |
| 11382 | 11395 | ||
| 11383 | \(fn &optional BUFFER)" nil nil) | 11396 | \(fn &optional BUFFER DELETE-SPACE)" nil nil) |
| 11384 | 11397 | ||
| 11385 | ;;;*** | 11398 | ;;;*** |
| 11386 | 11399 | ||
| 11387 | ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) | 11400 | ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) |
| 11388 | ;;;;;; "flymake" "progmodes/flymake.el" (18104 24765)) | 11401 | ;;;;;; "flymake" "progmodes/flymake.el" (18120 34752)) |
| 11389 | ;;; Generated autoloads from progmodes/flymake.el | 11402 | ;;; Generated autoloads from progmodes/flymake.el |
| 11390 | 11403 | ||
| 11391 | (autoload (quote flymake-mode) "flymake" "\ | 11404 | (autoload 'flymake-mode "flymake" "\ |
| 11392 | Minor mode to do on-the-fly syntax checking. | 11405 | Minor mode to do on-the-fly syntax checking. |
| 11393 | When called interactively, toggles the minor mode. | 11406 | When called interactively, toggles the minor mode. |
| 11394 | With arg, turn Flymake mode on if and only if arg is positive. | 11407 | With arg, turn Flymake mode on if and only if arg is positive. |
| 11395 | 11408 | ||
| 11396 | \(fn &optional ARG)" t nil) | 11409 | \(fn &optional ARG)" t nil) |
| 11397 | 11410 | ||
| 11398 | (autoload (quote flymake-mode-on) "flymake" "\ | 11411 | (autoload 'flymake-mode-on "flymake" "\ |
| 11399 | Turn flymake mode on. | 11412 | Turn flymake mode on. |
| 11400 | 11413 | ||
| 11401 | \(fn)" nil nil) | 11414 | \(fn)" nil nil) |
| 11402 | 11415 | ||
| 11403 | (autoload (quote flymake-mode-off) "flymake" "\ | 11416 | (autoload 'flymake-mode-off "flymake" "\ |
| 11404 | Turn flymake mode off. | 11417 | Turn flymake mode off. |
| 11405 | 11418 | ||
| 11406 | \(fn)" nil nil) | 11419 | \(fn)" nil nil) |
| @@ -11409,21 +11422,22 @@ Turn flymake mode off. | |||
| 11409 | 11422 | ||
| 11410 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off | 11423 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off |
| 11411 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) | 11424 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) |
| 11412 | ;;;;;; "flyspell" "textmodes/flyspell.el" (18104 24771)) | 11425 | ;;;;;; "flyspell" "textmodes/flyspell.el" (18187 36841)) |
| 11413 | ;;; Generated autoloads from textmodes/flyspell.el | 11426 | ;;; Generated autoloads from textmodes/flyspell.el |
| 11414 | 11427 | ||
| 11415 | (autoload (quote flyspell-prog-mode) "flyspell" "\ | 11428 | (autoload 'flyspell-prog-mode "flyspell" "\ |
| 11416 | Turn on `flyspell-mode' for comments and strings. | 11429 | Turn on `flyspell-mode' for comments and strings. |
| 11417 | 11430 | ||
| 11418 | \(fn)" t nil) | 11431 | \(fn)" t nil) |
| 11419 | (defvar flyspell-mode nil) | 11432 | (defvar flyspell-mode nil) |
| 11420 | 11433 | ||
| 11421 | (autoload (quote flyspell-mode) "flyspell" "\ | 11434 | (autoload 'flyspell-mode "flyspell" "\ |
| 11422 | Minor mode performing on-the-fly spelling checking. | 11435 | Minor mode performing on-the-fly spelling checking. |
| 11423 | This spawns a single Ispell process and checks each word. | 11436 | This spawns a single Ispell process and checks each word. |
| 11424 | The default flyspell behavior is to highlight incorrect words. | 11437 | The default flyspell behavior is to highlight incorrect words. |
| 11425 | With no argument, this command toggles Flyspell mode. | 11438 | With no argument, this command toggles Flyspell mode. |
| 11426 | With a prefix argument ARG, turn Flyspell minor mode on iff ARG is positive. | 11439 | With a prefix argument ARG, turn Flyspell minor mode on if ARG is positive, |
| 11440 | otherwise turn it off. | ||
| 11427 | 11441 | ||
| 11428 | Bindings: | 11442 | Bindings: |
| 11429 | \\[ispell-word]: correct words (using Ispell). | 11443 | \\[ispell-word]: correct words (using Ispell). |
| @@ -11449,27 +11463,27 @@ in your .emacs file. | |||
| 11449 | 11463 | ||
| 11450 | \(fn &optional ARG)" t nil) | 11464 | \(fn &optional ARG)" t nil) |
| 11451 | 11465 | ||
| 11452 | (autoload (quote turn-on-flyspell) "flyspell" "\ | 11466 | (autoload 'turn-on-flyspell "flyspell" "\ |
| 11453 | Unconditionally turn on Flyspell mode. | 11467 | Unconditionally turn on Flyspell mode. |
| 11454 | 11468 | ||
| 11455 | \(fn)" nil nil) | 11469 | \(fn)" nil nil) |
| 11456 | 11470 | ||
| 11457 | (autoload (quote turn-off-flyspell) "flyspell" "\ | 11471 | (autoload 'turn-off-flyspell "flyspell" "\ |
| 11458 | Unconditionally turn off Flyspell mode. | 11472 | Unconditionally turn off Flyspell mode. |
| 11459 | 11473 | ||
| 11460 | \(fn)" nil nil) | 11474 | \(fn)" nil nil) |
| 11461 | 11475 | ||
| 11462 | (autoload (quote flyspell-mode-off) "flyspell" "\ | 11476 | (autoload 'flyspell-mode-off "flyspell" "\ |
| 11463 | Turn Flyspell mode off. | 11477 | Turn Flyspell mode off. |
| 11464 | 11478 | ||
| 11465 | \(fn)" nil nil) | 11479 | \(fn)" nil nil) |
| 11466 | 11480 | ||
| 11467 | (autoload (quote flyspell-region) "flyspell" "\ | 11481 | (autoload 'flyspell-region "flyspell" "\ |
| 11468 | Flyspell text between BEG and END. | 11482 | Flyspell text between BEG and END. |
| 11469 | 11483 | ||
| 11470 | \(fn BEG END)" t nil) | 11484 | \(fn BEG END)" t nil) |
| 11471 | 11485 | ||
| 11472 | (autoload (quote flyspell-buffer) "flyspell" "\ | 11486 | (autoload 'flyspell-buffer "flyspell" "\ |
| 11473 | Flyspell whole buffer. | 11487 | Flyspell whole buffer. |
| 11474 | 11488 | ||
| 11475 | \(fn)" t nil) | 11489 | \(fn)" t nil) |
| @@ -11478,20 +11492,20 @@ Flyspell whole buffer. | |||
| 11478 | 11492 | ||
| 11479 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode | 11493 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode |
| 11480 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" | 11494 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" |
| 11481 | ;;;;;; (18104 24736)) | 11495 | ;;;;;; (18200 51264)) |
| 11482 | ;;; Generated autoloads from follow.el | 11496 | ;;; Generated autoloads from follow.el |
| 11483 | 11497 | ||
| 11484 | (autoload (quote turn-on-follow-mode) "follow" "\ | 11498 | (autoload 'turn-on-follow-mode "follow" "\ |
| 11485 | Turn on Follow mode. Please see the function `follow-mode'. | 11499 | Turn on Follow mode. Please see the function `follow-mode'. |
| 11486 | 11500 | ||
| 11487 | \(fn)" nil nil) | 11501 | \(fn)" nil nil) |
| 11488 | 11502 | ||
| 11489 | (autoload (quote turn-off-follow-mode) "follow" "\ | 11503 | (autoload 'turn-off-follow-mode "follow" "\ |
| 11490 | Turn off Follow mode. Please see the function `follow-mode'. | 11504 | Turn off Follow mode. Please see the function `follow-mode'. |
| 11491 | 11505 | ||
| 11492 | \(fn)" nil nil) | 11506 | \(fn)" nil nil) |
| 11493 | 11507 | ||
| 11494 | (autoload (quote follow-mode) "follow" "\ | 11508 | (autoload 'follow-mode "follow" "\ |
| 11495 | Minor mode that combines windows into one tall virtual window. | 11509 | Minor mode that combines windows into one tall virtual window. |
| 11496 | 11510 | ||
| 11497 | The feeling of a \"virtual window\" has been accomplished by the use | 11511 | The feeling of a \"virtual window\" has been accomplished by the use |
| @@ -11499,7 +11513,7 @@ of two major techniques: | |||
| 11499 | 11513 | ||
| 11500 | * The windows always displays adjacent sections of the buffer. | 11514 | * The windows always displays adjacent sections of the buffer. |
| 11501 | This means that whenever one window is moved, all the | 11515 | This means that whenever one window is moved, all the |
| 11502 | others will follow. (Hence the name Follow Mode.) | 11516 | others will follow. (Hence the name Follow mode.) |
| 11503 | 11517 | ||
| 11504 | * Should the point (cursor) end up outside a window, another | 11518 | * Should the point (cursor) end up outside a window, another |
| 11505 | window displaying that point is selected, if possible. This | 11519 | window displaying that point is selected, if possible. This |
| @@ -11522,21 +11536,20 @@ If the variable `follow-intercept-processes' is non-nil, Follow mode | |||
| 11522 | will listen to the output of processes and redisplay accordingly. | 11536 | will listen to the output of processes and redisplay accordingly. |
| 11523 | \(This is the default.) | 11537 | \(This is the default.) |
| 11524 | 11538 | ||
| 11525 | When Follow mode is switched on, the hook `follow-mode-hook' | 11539 | This command runs the normal hook `follow-mode-hook'. |
| 11526 | is called. When turned off, `follow-mode-off-hook' is called. | ||
| 11527 | 11540 | ||
| 11528 | Keys specific to Follow mode: | 11541 | Keys specific to Follow mode: |
| 11529 | \\{follow-mode-map} | 11542 | \\{follow-mode-map} |
| 11530 | 11543 | ||
| 11531 | \(fn &optional ARG)" t nil) | 11544 | \(fn &optional ARG)" t nil) |
| 11532 | 11545 | ||
| 11533 | (autoload (quote follow-delete-other-windows-and-split) "follow" "\ | 11546 | (autoload 'follow-delete-other-windows-and-split "follow" "\ |
| 11534 | Create two side by side windows and enter Follow Mode. | 11547 | Create two side by side windows and enter Follow mode. |
| 11535 | 11548 | ||
| 11536 | Execute this command to display as much as possible of the text | 11549 | Execute this command to display as much as possible of the text |
| 11537 | in the selected window. All other windows, in the current | 11550 | in the selected window. All other windows, in the current |
| 11538 | frame, are deleted and the selected window is split in two | 11551 | frame, are deleted and the selected window is split in two |
| 11539 | side-by-side windows. Follow Mode is activated, hence the | 11552 | side-by-side windows. Follow mode is activated, hence the |
| 11540 | two windows always will display two successive pages. | 11553 | two windows always will display two successive pages. |
| 11541 | \(If one window is moved, the other one will follow.) | 11554 | \(If one window is moved, the other one will follow.) |
| 11542 | 11555 | ||
| @@ -11552,11 +11565,11 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: | |||
| 11552 | 11565 | ||
| 11553 | ;;;*** | 11566 | ;;;*** |
| 11554 | 11567 | ||
| 11555 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (18104 | 11568 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (18088 |
| 11556 | ;;;;;; 24758)) | 11569 | ;;;;;; 55109)) |
| 11557 | ;;; Generated autoloads from mail/footnote.el | 11570 | ;;; Generated autoloads from mail/footnote.el |
| 11558 | 11571 | ||
| 11559 | (autoload (quote footnote-mode) "footnote" "\ | 11572 | (autoload 'footnote-mode "footnote" "\ |
| 11560 | Toggle footnote minor mode. | 11573 | Toggle footnote minor mode. |
| 11561 | \\<message-mode-map> | 11574 | \\<message-mode-map> |
| 11562 | key binding | 11575 | key binding |
| @@ -11574,10 +11587,10 @@ key binding | |||
| 11574 | ;;;*** | 11587 | ;;;*** |
| 11575 | 11588 | ||
| 11576 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) | 11589 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) |
| 11577 | ;;;;;; "forms" "forms.el" (18104 24736)) | 11590 | ;;;;;; "forms" "forms.el" (18088 55084)) |
| 11578 | ;;; Generated autoloads from forms.el | 11591 | ;;; Generated autoloads from forms.el |
| 11579 | 11592 | ||
| 11580 | (autoload (quote forms-mode) "forms" "\ | 11593 | (autoload 'forms-mode "forms" "\ |
| 11581 | Major mode to visit files in a field-structured manner using a form. | 11594 | Major mode to visit files in a field-structured manner using a form. |
| 11582 | 11595 | ||
| 11583 | Commands: Equivalent keys in read-only mode: | 11596 | Commands: Equivalent keys in read-only mode: |
| @@ -11598,12 +11611,12 @@ Commands: Equivalent keys in read-only mode: | |||
| 11598 | 11611 | ||
| 11599 | \(fn &optional PRIMARY)" t nil) | 11612 | \(fn &optional PRIMARY)" t nil) |
| 11600 | 11613 | ||
| 11601 | (autoload (quote forms-find-file) "forms" "\ | 11614 | (autoload 'forms-find-file "forms" "\ |
| 11602 | Visit a file in Forms mode. | 11615 | Visit a file in Forms mode. |
| 11603 | 11616 | ||
| 11604 | \(fn FN)" t nil) | 11617 | \(fn FN)" t nil) |
| 11605 | 11618 | ||
| 11606 | (autoload (quote forms-find-file-other-window) "forms" "\ | 11619 | (autoload 'forms-find-file-other-window "forms" "\ |
| 11607 | Visit a file in Forms mode in other window. | 11620 | Visit a file in Forms mode in other window. |
| 11608 | 11621 | ||
| 11609 | \(fn FN)" t nil) | 11622 | \(fn FN)" t nil) |
| @@ -11611,10 +11624,10 @@ Visit a file in Forms mode in other window. | |||
| 11611 | ;;;*** | 11624 | ;;;*** |
| 11612 | 11625 | ||
| 11613 | ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" | 11626 | ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" |
| 11614 | ;;;;;; (18104 24766)) | 11627 | ;;;;;; (18212 46008)) |
| 11615 | ;;; Generated autoloads from progmodes/fortran.el | 11628 | ;;; Generated autoloads from progmodes/fortran.el |
| 11616 | 11629 | ||
| 11617 | (autoload (quote fortran-mode) "fortran" "\ | 11630 | (autoload 'fortran-mode "fortran" "\ |
| 11618 | Major mode for editing Fortran code in fixed format. | 11631 | Major mode for editing Fortran code in fixed format. |
| 11619 | For free format code, use `f90-mode'. | 11632 | For free format code, use `f90-mode'. |
| 11620 | 11633 | ||
| @@ -11650,7 +11663,7 @@ Variables controlling indentation style and extra features: | |||
| 11650 | `fortran-minimum-statement-indent-tab' (TAB format), | 11663 | `fortran-minimum-statement-indent-tab' (TAB format), |
| 11651 | depending on the continuation format in use. | 11664 | depending on the continuation format in use. |
| 11652 | relative indent to `fortran-comment-line-extra-indent' beyond the | 11665 | relative indent to `fortran-comment-line-extra-indent' beyond the |
| 11653 | indentation for a line of code. | 11666 | indentation for a line of code. |
| 11654 | (default 'fixed) | 11667 | (default 'fixed) |
| 11655 | `fortran-comment-indent-char' | 11668 | `fortran-comment-indent-char' |
| 11656 | Single-character string to be inserted instead of space for | 11669 | Single-character string to be inserted instead of space for |
| @@ -11689,10 +11702,10 @@ with no args, if that value is non-nil. | |||
| 11689 | ;;;*** | 11702 | ;;;*** |
| 11690 | 11703 | ||
| 11691 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region | 11704 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region |
| 11692 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (18104 24761)) | 11705 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (18088 55113)) |
| 11693 | ;;; Generated autoloads from play/fortune.el | 11706 | ;;; Generated autoloads from play/fortune.el |
| 11694 | 11707 | ||
| 11695 | (autoload (quote fortune-add-fortune) "fortune" "\ | 11708 | (autoload 'fortune-add-fortune "fortune" "\ |
| 11696 | Add STRING to a fortune file FILE. | 11709 | Add STRING to a fortune file FILE. |
| 11697 | 11710 | ||
| 11698 | Interactively, if called with a prefix argument, | 11711 | Interactively, if called with a prefix argument, |
| @@ -11700,7 +11713,7 @@ read the file name to use. Otherwise use the value of `fortune-file'. | |||
| 11700 | 11713 | ||
| 11701 | \(fn STRING FILE)" t nil) | 11714 | \(fn STRING FILE)" t nil) |
| 11702 | 11715 | ||
| 11703 | (autoload (quote fortune-from-region) "fortune" "\ | 11716 | (autoload 'fortune-from-region "fortune" "\ |
| 11704 | Append the current region to a local fortune-like data file. | 11717 | Append the current region to a local fortune-like data file. |
| 11705 | 11718 | ||
| 11706 | Interactively, if called with a prefix argument, | 11719 | Interactively, if called with a prefix argument, |
| @@ -11708,7 +11721,7 @@ read the file name to use. Otherwise use the value of `fortune-file'. | |||
| 11708 | 11721 | ||
| 11709 | \(fn BEG END FILE)" t nil) | 11722 | \(fn BEG END FILE)" t nil) |
| 11710 | 11723 | ||
| 11711 | (autoload (quote fortune-compile) "fortune" "\ | 11724 | (autoload 'fortune-compile "fortune" "\ |
| 11712 | Compile fortune file. | 11725 | Compile fortune file. |
| 11713 | 11726 | ||
| 11714 | If called with a prefix asks for the FILE to compile, otherwise uses | 11727 | If called with a prefix asks for the FILE to compile, otherwise uses |
| @@ -11716,7 +11729,7 @@ the value of `fortune-file'. This currently cannot handle directories. | |||
| 11716 | 11729 | ||
| 11717 | \(fn &optional FILE)" t nil) | 11730 | \(fn &optional FILE)" t nil) |
| 11718 | 11731 | ||
| 11719 | (autoload (quote fortune-to-signature) "fortune" "\ | 11732 | (autoload 'fortune-to-signature "fortune" "\ |
| 11720 | Create signature from output of the fortune program. | 11733 | Create signature from output of the fortune program. |
| 11721 | 11734 | ||
| 11722 | If called with a prefix asks for the FILE to choose the fortune from, | 11735 | If called with a prefix asks for the FILE to choose the fortune from, |
| @@ -11726,7 +11739,7 @@ and choose the directory as the fortune-file. | |||
| 11726 | 11739 | ||
| 11727 | \(fn &optional FILE)" t nil) | 11740 | \(fn &optional FILE)" t nil) |
| 11728 | 11741 | ||
| 11729 | (autoload (quote fortune) "fortune" "\ | 11742 | (autoload 'fortune "fortune" "\ |
| 11730 | Display a fortune cookie. | 11743 | Display a fortune cookie. |
| 11731 | 11744 | ||
| 11732 | If called with a prefix asks for the FILE to choose the fortune from, | 11745 | If called with a prefix asks for the FILE to choose the fortune from, |
| @@ -11738,14 +11751,15 @@ and choose the directory as the fortune-file. | |||
| 11738 | 11751 | ||
| 11739 | ;;;*** | 11752 | ;;;*** |
| 11740 | 11753 | ||
| 11741 | ;;;### (autoloads (gdb-enable-debug gdba) "gdb-ui" "progmodes/gdb-ui.el" | 11754 | ;;;### (autoloads (gdb-enable-debug gdb) "gdb-ui" "progmodes/gdb-ui.el" |
| 11742 | ;;;;;; (18104 24766)) | 11755 | ;;;;;; (18197 21675)) |
| 11743 | ;;; Generated autoloads from progmodes/gdb-ui.el | 11756 | ;;; Generated autoloads from progmodes/gdb-ui.el |
| 11744 | 11757 | ||
| 11745 | (autoload (quote gdba) "gdb-ui" "\ | 11758 | (autoload 'gdb "gdb-ui" "\ |
| 11746 | Run gdb on program FILE in buffer *gud-FILE*. | 11759 | Run gdb on program FILE in buffer *gud-FILE*. |
| 11747 | The directory containing FILE becomes the initial working directory | 11760 | The directory containing FILE becomes the initial working |
| 11748 | and source-file directory for your debugger. | 11761 | directory and source-file directory for your debugger. |
| 11762 | |||
| 11749 | 11763 | ||
| 11750 | If `gdb-many-windows' is nil (the default value) then gdb just | 11764 | If `gdb-many-windows' is nil (the default value) then gdb just |
| 11751 | pops up the GUD buffer unless `gdb-show-main' is t. In this case | 11765 | pops up the GUD buffer unless `gdb-show-main' is t. In this case |
| @@ -11792,18 +11806,25 @@ detailed description of this mode. | |||
| 11792 | | | D gdb-delete-breakpoint | | 11806 | | | D gdb-delete-breakpoint | |
| 11793 | +-----------------------------------+----------------------------------+ | 11807 | +-----------------------------------+----------------------------------+ |
| 11794 | 11808 | ||
| 11809 | To run GDB in text command mode, replace the GDB \"--annotate=3\" | ||
| 11810 | option with \"--fullname\" either in the minibuffer for the | ||
| 11811 | current Emacs session, or the custom variable | ||
| 11812 | `gud-gdb-command-name' for all future sessions. You need to use | ||
| 11813 | text command mode to debug multiple programs within one Emacs | ||
| 11814 | session. | ||
| 11815 | |||
| 11795 | \(fn COMMAND-LINE)" t nil) | 11816 | \(fn COMMAND-LINE)" t nil) |
| 11796 | 11817 | ||
| 11797 | (defvar gdb-enable-debug nil "\ | 11818 | (defvar gdb-enable-debug nil "\ |
| 11798 | Non-nil means record the process input and output in `gdb-debug-log'.") | 11819 | Non-nil means record the process input and output in `gdb-debug-log'.") |
| 11799 | 11820 | ||
| 11800 | (custom-autoload (quote gdb-enable-debug) "gdb-ui" t) | 11821 | (custom-autoload 'gdb-enable-debug "gdb-ui" t) |
| 11801 | 11822 | ||
| 11802 | ;;;*** | 11823 | ;;;*** |
| 11803 | 11824 | ||
| 11804 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal | 11825 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal |
| 11805 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (18104 | 11826 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (18173 |
| 11806 | ;;;;;; 24748)) | 11827 | ;;;;;; 8195)) |
| 11807 | ;;; Generated autoloads from emacs-lisp/generic.el | 11828 | ;;; Generated autoloads from emacs-lisp/generic.el |
| 11808 | 11829 | ||
| 11809 | (defvar generic-mode-list nil "\ | 11830 | (defvar generic-mode-list nil "\ |
| @@ -11811,7 +11832,7 @@ A list of mode names for `generic-mode'. | |||
| 11811 | Do not add entries to this list directly; use `define-generic-mode' | 11832 | Do not add entries to this list directly; use `define-generic-mode' |
| 11812 | instead (which see).") | 11833 | instead (which see).") |
| 11813 | 11834 | ||
| 11814 | (autoload (quote define-generic-mode) "generic" "\ | 11835 | (autoload 'define-generic-mode "generic" "\ |
| 11815 | Create a new generic mode MODE. | 11836 | Create a new generic mode MODE. |
| 11816 | 11837 | ||
| 11817 | MODE is the name of the command for the generic mode; don't quote it. | 11838 | MODE is the name of the command for the generic mode; don't quote it. |
| @@ -11847,12 +11868,12 @@ See the file generic-x.el for some examples of `define-generic-mode'. | |||
| 11847 | 11868 | ||
| 11848 | \(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST AUTO-MODE-LIST FUNCTION-LIST &optional DOCSTRING)" nil (quote macro)) | 11869 | \(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST AUTO-MODE-LIST FUNCTION-LIST &optional DOCSTRING)" nil (quote macro)) |
| 11849 | 11870 | ||
| 11850 | (autoload (quote generic-mode-internal) "generic" "\ | 11871 | (autoload 'generic-mode-internal "generic" "\ |
| 11851 | Go into the generic mode MODE. | 11872 | Go into the generic mode MODE. |
| 11852 | 11873 | ||
| 11853 | \(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST FUNCTION-LIST)" nil nil) | 11874 | \(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST FUNCTION-LIST)" nil nil) |
| 11854 | 11875 | ||
| 11855 | (autoload (quote generic-mode) "generic" "\ | 11876 | (autoload 'generic-mode "generic" "\ |
| 11856 | Enter generic mode MODE. | 11877 | Enter generic mode MODE. |
| 11857 | 11878 | ||
| 11858 | Generic modes provide basic comment and font-lock functionality | 11879 | Generic modes provide basic comment and font-lock functionality |
| @@ -11864,7 +11885,7 @@ Some generic modes are defined in `generic-x.el'. | |||
| 11864 | 11885 | ||
| 11865 | \(fn MODE)" t nil) | 11886 | \(fn MODE)" t nil) |
| 11866 | 11887 | ||
| 11867 | (autoload (quote generic-make-keywords-list) "generic" "\ | 11888 | (autoload 'generic-make-keywords-list "generic" "\ |
| 11868 | Return a `font-lock-keywords' construct that highlights KEYWORD-LIST. | 11889 | Return a `font-lock-keywords' construct that highlights KEYWORD-LIST. |
| 11869 | KEYWORD-LIST is a list of keyword strings that should be | 11890 | KEYWORD-LIST is a list of keyword strings that should be |
| 11870 | highlighted with face FACE. This function calculates a regular | 11891 | highlighted with face FACE. This function calculates a regular |
| @@ -11878,10 +11899,10 @@ regular expression that can be used as an element of | |||
| 11878 | ;;;*** | 11899 | ;;;*** |
| 11879 | 11900 | ||
| 11880 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" | 11901 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" |
| 11881 | ;;;;;; (18104 24766)) | 11902 | ;;;;;; (18088 55116)) |
| 11882 | ;;; Generated autoloads from progmodes/glasses.el | 11903 | ;;; Generated autoloads from progmodes/glasses.el |
| 11883 | 11904 | ||
| 11884 | (autoload (quote glasses-mode) "glasses" "\ | 11905 | (autoload 'glasses-mode "glasses" "\ |
| 11885 | Minor mode for making identifiers likeThis readable. | 11906 | Minor mode for making identifiers likeThis readable. |
| 11886 | When this mode is active, it tries to add virtual separators (like underscores) | 11907 | When this mode is active, it tries to add virtual separators (like underscores) |
| 11887 | at places they belong to. | 11908 | at places they belong to. |
| @@ -11891,10 +11912,17 @@ at places they belong to. | |||
| 11891 | ;;;*** | 11912 | ;;;*** |
| 11892 | 11913 | ||
| 11893 | ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error | 11914 | ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error |
| 11894 | ;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (18104 24750)) | 11915 | ;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el" |
| 11916 | ;;;;;; (18212 46006)) | ||
| 11895 | ;;; Generated autoloads from gnus/gmm-utils.el | 11917 | ;;; Generated autoloads from gnus/gmm-utils.el |
| 11896 | 11918 | ||
| 11897 | (autoload (quote gmm-message) "gmm-utils" "\ | 11919 | (autoload 'gmm-regexp-concat "gmm-utils" "\ |
| 11920 | Potentially concat a list of regexps into a single one. | ||
| 11921 | The concatenation is done with logical ORs. | ||
| 11922 | |||
| 11923 | \(fn REGEXP)" nil nil) | ||
| 11924 | |||
| 11925 | (autoload 'gmm-message "gmm-utils" "\ | ||
| 11898 | If LEVEL is lower than `gmm-verbose' print ARGS using `message'. | 11926 | If LEVEL is lower than `gmm-verbose' print ARGS using `message'. |
| 11899 | 11927 | ||
| 11900 | Guideline for numbers: | 11928 | Guideline for numbers: |
| @@ -11904,18 +11932,18 @@ inside loops. | |||
| 11904 | 11932 | ||
| 11905 | \(fn LEVEL &rest ARGS)" nil nil) | 11933 | \(fn LEVEL &rest ARGS)" nil nil) |
| 11906 | 11934 | ||
| 11907 | (autoload (quote gmm-error) "gmm-utils" "\ | 11935 | (autoload 'gmm-error "gmm-utils" "\ |
| 11908 | Beep an error if LEVEL is equal to or less than `gmm-verbose'. | 11936 | Beep an error if LEVEL is equal to or less than `gmm-verbose'. |
| 11909 | ARGS are passed to `message'. | 11937 | ARGS are passed to `message'. |
| 11910 | 11938 | ||
| 11911 | \(fn LEVEL &rest ARGS)" nil nil) | 11939 | \(fn LEVEL &rest ARGS)" nil nil) |
| 11912 | 11940 | ||
| 11913 | (autoload (quote gmm-widget-p) "gmm-utils" "\ | 11941 | (autoload 'gmm-widget-p "gmm-utils" "\ |
| 11914 | Non-nil iff SYMBOL is a widget. | 11942 | Non-nil if SYMBOL is a widget. |
| 11915 | 11943 | ||
| 11916 | \(fn SYMBOL)" nil nil) | 11944 | \(fn SYMBOL)" nil nil) |
| 11917 | 11945 | ||
| 11918 | (autoload (quote gmm-tool-bar-from-list) "gmm-utils" "\ | 11946 | (autoload 'gmm-tool-bar-from-list "gmm-utils" "\ |
| 11919 | Make a tool bar from ICON-LIST. | 11947 | Make a tool bar from ICON-LIST. |
| 11920 | 11948 | ||
| 11921 | Within each entry of ICON-LIST, the first element is a menu | 11949 | Within each entry of ICON-LIST, the first element is a menu |
| @@ -11938,17 +11966,17 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. | |||
| 11938 | ;;;*** | 11966 | ;;;*** |
| 11939 | 11967 | ||
| 11940 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server | 11968 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server |
| 11941 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (18104 24751)) | 11969 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (18212 46007)) |
| 11942 | ;;; Generated autoloads from gnus/gnus.el | 11970 | ;;; Generated autoloads from gnus/gnus.el |
| 11943 | (when (fboundp 'custom-autoload) | 11971 | (when (fboundp 'custom-autoload) |
| 11944 | (custom-autoload 'gnus-select-method "gnus")) | 11972 | (custom-autoload 'gnus-select-method "gnus")) |
| 11945 | 11973 | ||
| 11946 | (autoload (quote gnus-slave-no-server) "gnus" "\ | 11974 | (autoload 'gnus-slave-no-server "gnus" "\ |
| 11947 | Read network news as a slave, without connecting to the local server. | 11975 | Read network news as a slave, without connecting to the local server. |
| 11948 | 11976 | ||
| 11949 | \(fn &optional ARG)" t nil) | 11977 | \(fn &optional ARG)" t nil) |
| 11950 | 11978 | ||
| 11951 | (autoload (quote gnus-no-server) "gnus" "\ | 11979 | (autoload 'gnus-no-server "gnus" "\ |
| 11952 | Read network news. | 11980 | Read network news. |
| 11953 | If ARG is a positive number, Gnus will use that as the startup | 11981 | If ARG is a positive number, Gnus will use that as the startup |
| 11954 | level. If ARG is nil, Gnus will be started at level 2. If ARG is | 11982 | level. If ARG is nil, Gnus will be started at level 2. If ARG is |
| @@ -11959,12 +11987,12 @@ server. | |||
| 11959 | 11987 | ||
| 11960 | \(fn &optional ARG SLAVE)" t nil) | 11988 | \(fn &optional ARG SLAVE)" t nil) |
| 11961 | 11989 | ||
| 11962 | (autoload (quote gnus-slave) "gnus" "\ | 11990 | (autoload 'gnus-slave "gnus" "\ |
| 11963 | Read news as a slave. | 11991 | Read news as a slave. |
| 11964 | 11992 | ||
| 11965 | \(fn &optional ARG)" t nil) | 11993 | \(fn &optional ARG)" t nil) |
| 11966 | 11994 | ||
| 11967 | (autoload (quote gnus-other-frame) "gnus" "\ | 11995 | (autoload 'gnus-other-frame "gnus" "\ |
| 11968 | Pop up a frame to read news. | 11996 | Pop up a frame to read news. |
| 11969 | This will call one of the Gnus commands which is specified by the user | 11997 | This will call one of the Gnus commands which is specified by the user |
| 11970 | option `gnus-other-frame-function' (default `gnus') with the argument | 11998 | option `gnus-other-frame-function' (default `gnus') with the argument |
| @@ -11976,7 +12004,7 @@ current display is used. | |||
| 11976 | 12004 | ||
| 11977 | \(fn &optional ARG DISPLAY)" t nil) | 12005 | \(fn &optional ARG DISPLAY)" t nil) |
| 11978 | 12006 | ||
| 11979 | (autoload (quote gnus) "gnus" "\ | 12007 | (autoload 'gnus "gnus" "\ |
| 11980 | Read network news. | 12008 | Read network news. |
| 11981 | If ARG is non-nil and a positive number, Gnus will use that as the | 12009 | If ARG is non-nil and a positive number, Gnus will use that as the |
| 11982 | startup level. If ARG is non-nil and not a positive number, Gnus will | 12010 | startup level. If ARG is non-nil and not a positive number, Gnus will |
| @@ -11991,25 +12019,25 @@ prompt the user for the name of an NNTP server to use. | |||
| 11991 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group | 12019 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group |
| 11992 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize | 12020 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize |
| 11993 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" | 12021 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" |
| 11994 | ;;;;;; "gnus/gnus-agent.el" (18104 24750)) | 12022 | ;;;;;; "gnus/gnus-agent.el" (18212 46006)) |
| 11995 | ;;; Generated autoloads from gnus/gnus-agent.el | 12023 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 11996 | 12024 | ||
| 11997 | (autoload (quote gnus-unplugged) "gnus-agent" "\ | 12025 | (autoload 'gnus-unplugged "gnus-agent" "\ |
| 11998 | Start Gnus unplugged. | 12026 | Start Gnus unplugged. |
| 11999 | 12027 | ||
| 12000 | \(fn)" t nil) | 12028 | \(fn)" t nil) |
| 12001 | 12029 | ||
| 12002 | (autoload (quote gnus-plugged) "gnus-agent" "\ | 12030 | (autoload 'gnus-plugged "gnus-agent" "\ |
| 12003 | Start Gnus plugged. | 12031 | Start Gnus plugged. |
| 12004 | 12032 | ||
| 12005 | \(fn)" t nil) | 12033 | \(fn)" t nil) |
| 12006 | 12034 | ||
| 12007 | (autoload (quote gnus-slave-unplugged) "gnus-agent" "\ | 12035 | (autoload 'gnus-slave-unplugged "gnus-agent" "\ |
| 12008 | Read news as a slave unplugged. | 12036 | Read news as a slave unplugged. |
| 12009 | 12037 | ||
| 12010 | \(fn &optional ARG)" t nil) | 12038 | \(fn &optional ARG)" t nil) |
| 12011 | 12039 | ||
| 12012 | (autoload (quote gnus-agentize) "gnus-agent" "\ | 12040 | (autoload 'gnus-agentize "gnus-agent" "\ |
| 12013 | Allow Gnus to be an offline newsreader. | 12041 | Allow Gnus to be an offline newsreader. |
| 12014 | 12042 | ||
| 12015 | The gnus-agentize function is now called internally by gnus when | 12043 | The gnus-agentize function is now called internally by gnus when |
| @@ -12022,12 +12050,12 @@ minor mode in all Gnus buffers. | |||
| 12022 | 12050 | ||
| 12023 | \(fn)" t nil) | 12051 | \(fn)" t nil) |
| 12024 | 12052 | ||
| 12025 | (autoload (quote gnus-agent-possibly-save-gcc) "gnus-agent" "\ | 12053 | (autoload 'gnus-agent-possibly-save-gcc "gnus-agent" "\ |
| 12026 | Save GCC if Gnus is unplugged. | 12054 | Save GCC if Gnus is unplugged. |
| 12027 | 12055 | ||
| 12028 | \(fn)" nil nil) | 12056 | \(fn)" nil nil) |
| 12029 | 12057 | ||
| 12030 | (autoload (quote gnus-agent-rename-group) "gnus-agent" "\ | 12058 | (autoload 'gnus-agent-rename-group "gnus-agent" "\ |
| 12031 | Rename fully-qualified OLD-GROUP as NEW-GROUP. | 12059 | Rename fully-qualified OLD-GROUP as NEW-GROUP. |
| 12032 | Always updates the agent, even when disabled, as the old agent | 12060 | Always updates the agent, even when disabled, as the old agent |
| 12033 | files would corrupt gnus when the agent was next enabled. | 12061 | files would corrupt gnus when the agent was next enabled. |
| @@ -12036,7 +12064,7 @@ supported. | |||
| 12036 | 12064 | ||
| 12037 | \(fn OLD-GROUP NEW-GROUP)" nil nil) | 12065 | \(fn OLD-GROUP NEW-GROUP)" nil nil) |
| 12038 | 12066 | ||
| 12039 | (autoload (quote gnus-agent-delete-group) "gnus-agent" "\ | 12067 | (autoload 'gnus-agent-delete-group "gnus-agent" "\ |
| 12040 | Delete fully-qualified GROUP. | 12068 | Delete fully-qualified GROUP. |
| 12041 | Always updates the agent, even when disabled, as the old agent | 12069 | Always updates the agent, even when disabled, as the old agent |
| 12042 | files would corrupt gnus when the agent was next enabled. | 12070 | files would corrupt gnus when the agent was next enabled. |
| @@ -12045,35 +12073,35 @@ supported. | |||
| 12045 | 12073 | ||
| 12046 | \(fn GROUP)" nil nil) | 12074 | \(fn GROUP)" nil nil) |
| 12047 | 12075 | ||
| 12048 | (autoload (quote gnus-agent-get-undownloaded-list) "gnus-agent" "\ | 12076 | (autoload 'gnus-agent-get-undownloaded-list "gnus-agent" "\ |
| 12049 | Construct list of articles that have not been downloaded. | 12077 | Construct list of articles that have not been downloaded. |
| 12050 | 12078 | ||
| 12051 | \(fn)" nil nil) | 12079 | \(fn)" nil nil) |
| 12052 | 12080 | ||
| 12053 | (autoload (quote gnus-agent-possibly-alter-active) "gnus-agent" "\ | 12081 | (autoload 'gnus-agent-possibly-alter-active "gnus-agent" "\ |
| 12054 | Possibly expand a group's active range to include articles | 12082 | Possibly expand a group's active range to include articles |
| 12055 | downloaded into the agent. | 12083 | downloaded into the agent. |
| 12056 | 12084 | ||
| 12057 | \(fn GROUP ACTIVE &optional INFO)" nil nil) | 12085 | \(fn GROUP ACTIVE &optional INFO)" nil nil) |
| 12058 | 12086 | ||
| 12059 | (autoload (quote gnus-agent-find-parameter) "gnus-agent" "\ | 12087 | (autoload 'gnus-agent-find-parameter "gnus-agent" "\ |
| 12060 | Search for GROUPs SYMBOL in the group's parameters, the group's | 12088 | Search for GROUPs SYMBOL in the group's parameters, the group's |
| 12061 | topic parameters, the group's category, or the customizable | 12089 | topic parameters, the group's category, or the customizable |
| 12062 | variables. Returns the first non-nil value found. | 12090 | variables. Returns the first non-nil value found. |
| 12063 | 12091 | ||
| 12064 | \(fn GROUP SYMBOL)" nil nil) | 12092 | \(fn GROUP SYMBOL)" nil nil) |
| 12065 | 12093 | ||
| 12066 | (autoload (quote gnus-agent-batch-fetch) "gnus-agent" "\ | 12094 | (autoload 'gnus-agent-batch-fetch "gnus-agent" "\ |
| 12067 | Start Gnus and fetch session. | 12095 | Start Gnus and fetch session. |
| 12068 | 12096 | ||
| 12069 | \(fn)" t nil) | 12097 | \(fn)" t nil) |
| 12070 | 12098 | ||
| 12071 | (autoload (quote gnus-agent-batch) "gnus-agent" "\ | 12099 | (autoload 'gnus-agent-batch "gnus-agent" "\ |
| 12072 | Start Gnus, send queue and fetch session. | 12100 | Start Gnus, send queue and fetch session. |
| 12073 | 12101 | ||
| 12074 | \(fn)" t nil) | 12102 | \(fn)" t nil) |
| 12075 | 12103 | ||
| 12076 | (autoload (quote gnus-agent-regenerate) "gnus-agent" "\ | 12104 | (autoload 'gnus-agent-regenerate "gnus-agent" "\ |
| 12077 | Regenerate all agent covered files. | 12105 | Regenerate all agent covered files. |
| 12078 | If CLEAN, obsolete (ignore). | 12106 | If CLEAN, obsolete (ignore). |
| 12079 | 12107 | ||
| @@ -12082,10 +12110,10 @@ If CLEAN, obsolete (ignore). | |||
| 12082 | ;;;*** | 12110 | ;;;*** |
| 12083 | 12111 | ||
| 12084 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" | 12112 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" |
| 12085 | ;;;;;; (18104 24750)) | 12113 | ;;;;;; (18212 46006)) |
| 12086 | ;;; Generated autoloads from gnus/gnus-art.el | 12114 | ;;; Generated autoloads from gnus/gnus-art.el |
| 12087 | 12115 | ||
| 12088 | (autoload (quote gnus-article-prepare-display) "gnus-art" "\ | 12116 | (autoload 'gnus-article-prepare-display "gnus-art" "\ |
| 12089 | Make the current buffer look like a nice article. | 12117 | Make the current buffer look like a nice article. |
| 12090 | 12118 | ||
| 12091 | \(fn)" nil nil) | 12119 | \(fn)" nil nil) |
| @@ -12093,23 +12121,47 @@ Make the current buffer look like a nice article. | |||
| 12093 | ;;;*** | 12121 | ;;;*** |
| 12094 | 12122 | ||
| 12095 | ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" | 12123 | ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" |
| 12096 | ;;;;;; (18104 24750)) | 12124 | ;;;;;; (18088 55102)) |
| 12097 | ;;; Generated autoloads from gnus/gnus-audio.el | 12125 | ;;; Generated autoloads from gnus/gnus-audio.el |
| 12098 | 12126 | ||
| 12099 | (autoload (quote gnus-audio-play) "gnus-audio" "\ | 12127 | (autoload 'gnus-audio-play "gnus-audio" "\ |
| 12100 | Play a sound FILE through the speaker. | 12128 | Play a sound FILE through the speaker. |
| 12101 | 12129 | ||
| 12102 | \(fn FILE)" t nil) | 12130 | \(fn FILE)" t nil) |
| 12103 | 12131 | ||
| 12104 | ;;;*** | 12132 | ;;;*** |
| 12105 | 12133 | ||
| 12134 | ;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set) | ||
| 12135 | ;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (18212 21481)) | ||
| 12136 | ;;; Generated autoloads from gnus/gnus-bookmark.el | ||
| 12137 | |||
| 12138 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ | ||
| 12139 | Set a bookmark for this article. | ||
| 12140 | |||
| 12141 | \(fn)" t nil) | ||
| 12142 | |||
| 12143 | (autoload 'gnus-bookmark-jump "gnus-bookmark" "\ | ||
| 12144 | Jump to a Gnus bookmark (BMK-NAME). | ||
| 12145 | |||
| 12146 | \(fn &optional BMK-NAME)" t nil) | ||
| 12147 | |||
| 12148 | (autoload 'gnus-bookmark-bmenu-list "gnus-bookmark" "\ | ||
| 12149 | Display a list of existing Gnus bookmarks. | ||
| 12150 | The list is displayed in a buffer named `*Gnus Bookmark List*'. | ||
| 12151 | The leftmost column displays a D if the bookmark is flagged for | ||
| 12152 | deletion, or > if it is flagged for displaying. | ||
| 12153 | |||
| 12154 | \(fn)" t nil) | ||
| 12155 | |||
| 12156 | ;;;*** | ||
| 12157 | |||
| 12106 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group | 12158 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group |
| 12107 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active | 12159 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active |
| 12108 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (18104 | 12160 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (18212 |
| 12109 | ;;;;;; 24750)) | 12161 | ;;;;;; 46006)) |
| 12110 | ;;; Generated autoloads from gnus/gnus-cache.el | 12162 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 12111 | 12163 | ||
| 12112 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ | 12164 | (autoload 'gnus-jog-cache "gnus-cache" "\ |
| 12113 | Go through all groups and put the articles into the cache. | 12165 | Go through all groups and put the articles into the cache. |
| 12114 | 12166 | ||
| 12115 | Usage: | 12167 | Usage: |
| @@ -12117,17 +12169,17 @@ $ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache | |||
| 12117 | 12169 | ||
| 12118 | \(fn)" t nil) | 12170 | \(fn)" t nil) |
| 12119 | 12171 | ||
| 12120 | (autoload (quote gnus-cache-generate-active) "gnus-cache" "\ | 12172 | (autoload 'gnus-cache-generate-active "gnus-cache" "\ |
| 12121 | Generate the cache active file. | 12173 | Generate the cache active file. |
| 12122 | 12174 | ||
| 12123 | \(fn &optional DIRECTORY)" t nil) | 12175 | \(fn &optional DIRECTORY)" t nil) |
| 12124 | 12176 | ||
| 12125 | (autoload (quote gnus-cache-generate-nov-databases) "gnus-cache" "\ | 12177 | (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ |
| 12126 | Generate NOV files recursively starting in DIR. | 12178 | Generate NOV files recursively starting in DIR. |
| 12127 | 12179 | ||
| 12128 | \(fn DIR)" t nil) | 12180 | \(fn DIR)" t nil) |
| 12129 | 12181 | ||
| 12130 | (autoload (quote gnus-cache-rename-group) "gnus-cache" "\ | 12182 | (autoload 'gnus-cache-rename-group "gnus-cache" "\ |
| 12131 | Rename OLD-GROUP as NEW-GROUP. | 12183 | Rename OLD-GROUP as NEW-GROUP. |
| 12132 | Always updates the cache, even when disabled, as the old cache | 12184 | Always updates the cache, even when disabled, as the old cache |
| 12133 | files would corrupt Gnus when the cache was next enabled. It | 12185 | files would corrupt Gnus when the cache was next enabled. It |
| @@ -12136,7 +12188,7 @@ supported. | |||
| 12136 | 12188 | ||
| 12137 | \(fn OLD-GROUP NEW-GROUP)" nil nil) | 12189 | \(fn OLD-GROUP NEW-GROUP)" nil nil) |
| 12138 | 12190 | ||
| 12139 | (autoload (quote gnus-cache-delete-group) "gnus-cache" "\ | 12191 | (autoload 'gnus-cache-delete-group "gnus-cache" "\ |
| 12140 | Delete GROUP from the cache. | 12192 | Delete GROUP from the cache. |
| 12141 | Always updates the cache, even when disabled, as the old cache | 12193 | Always updates the cache, even when disabled, as the old cache |
| 12142 | files would corrupt gnus when the cache was next enabled. | 12194 | files would corrupt gnus when the cache was next enabled. |
| @@ -12148,10 +12200,10 @@ supported. | |||
| 12148 | ;;;*** | 12200 | ;;;*** |
| 12149 | 12201 | ||
| 12150 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) | 12202 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) |
| 12151 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (18104 24750)) | 12203 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (18212 46006)) |
| 12152 | ;;; Generated autoloads from gnus/gnus-delay.el | 12204 | ;;; Generated autoloads from gnus/gnus-delay.el |
| 12153 | 12205 | ||
| 12154 | (autoload (quote gnus-delay-article) "gnus-delay" "\ | 12206 | (autoload 'gnus-delay-article "gnus-delay" "\ |
| 12155 | Delay this article by some time. | 12207 | Delay this article by some time. |
| 12156 | DELAY is a string, giving the length of the time. Possible values are: | 12208 | DELAY is a string, giving the length of the time. Possible values are: |
| 12157 | 12209 | ||
| @@ -12166,12 +12218,12 @@ DELAY is a string, giving the length of the time. Possible values are: | |||
| 12166 | 12218 | ||
| 12167 | \(fn DELAY)" t nil) | 12219 | \(fn DELAY)" t nil) |
| 12168 | 12220 | ||
| 12169 | (autoload (quote gnus-delay-send-queue) "gnus-delay" "\ | 12221 | (autoload 'gnus-delay-send-queue "gnus-delay" "\ |
| 12170 | Send all the delayed messages that are due now. | 12222 | Send all the delayed messages that are due now. |
| 12171 | 12223 | ||
| 12172 | \(fn)" t nil) | 12224 | \(fn)" t nil) |
| 12173 | 12225 | ||
| 12174 | (autoload (quote gnus-delay-initialize) "gnus-delay" "\ | 12226 | (autoload 'gnus-delay-initialize "gnus-delay" "\ |
| 12175 | Initialize the gnus-delay package. | 12227 | Initialize the gnus-delay package. |
| 12176 | This sets up a key binding in `message-mode' to delay a message. | 12228 | This sets up a key binding in `message-mode' to delay a message. |
| 12177 | This tells Gnus to look for delayed messages after getting new news. | 12229 | This tells Gnus to look for delayed messages after getting new news. |
| @@ -12184,15 +12236,15 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 12184 | ;;;*** | 12236 | ;;;*** |
| 12185 | 12237 | ||
| 12186 | ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) | 12238 | ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) |
| 12187 | ;;;;;; "gnus-diary" "gnus/gnus-diary.el" (18104 24750)) | 12239 | ;;;;;; "gnus-diary" "gnus/gnus-diary.el" (18212 46006)) |
| 12188 | ;;; Generated autoloads from gnus/gnus-diary.el | 12240 | ;;; Generated autoloads from gnus/gnus-diary.el |
| 12189 | 12241 | ||
| 12190 | (autoload (quote gnus-user-format-function-d) "gnus-diary" "\ | 12242 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ |
| 12191 | Not documented | 12243 | Not documented |
| 12192 | 12244 | ||
| 12193 | \(fn HEADER)" nil nil) | 12245 | \(fn HEADER)" nil nil) |
| 12194 | 12246 | ||
| 12195 | (autoload (quote gnus-user-format-function-D) "gnus-diary" "\ | 12247 | (autoload 'gnus-user-format-function-D "gnus-diary" "\ |
| 12196 | Not documented | 12248 | Not documented |
| 12197 | 12249 | ||
| 12198 | \(fn HEADER)" nil nil) | 12250 | \(fn HEADER)" nil nil) |
| @@ -12200,10 +12252,10 @@ Not documented | |||
| 12200 | ;;;*** | 12252 | ;;;*** |
| 12201 | 12253 | ||
| 12202 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" | 12254 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" |
| 12203 | ;;;;;; (18104 24750)) | 12255 | ;;;;;; (18212 46006)) |
| 12204 | ;;; Generated autoloads from gnus/gnus-dired.el | 12256 | ;;; Generated autoloads from gnus/gnus-dired.el |
| 12205 | 12257 | ||
| 12206 | (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ | 12258 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ |
| 12207 | Convenience method to turn on gnus-dired-mode. | 12259 | Convenience method to turn on gnus-dired-mode. |
| 12208 | 12260 | ||
| 12209 | \(fn)" nil nil) | 12261 | \(fn)" nil nil) |
| @@ -12211,10 +12263,10 @@ Convenience method to turn on gnus-dired-mode. | |||
| 12211 | ;;;*** | 12263 | ;;;*** |
| 12212 | 12264 | ||
| 12213 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" | 12265 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" |
| 12214 | ;;;;;; (18104 24750)) | 12266 | ;;;;;; (18212 46006)) |
| 12215 | ;;; Generated autoloads from gnus/gnus-draft.el | 12267 | ;;; Generated autoloads from gnus/gnus-draft.el |
| 12216 | 12268 | ||
| 12217 | (autoload (quote gnus-draft-reminder) "gnus-draft" "\ | 12269 | (autoload 'gnus-draft-reminder "gnus-draft" "\ |
| 12218 | Reminder user if there are unsent drafts. | 12270 | Reminder user if there are unsent drafts. |
| 12219 | 12271 | ||
| 12220 | \(fn)" t nil) | 12272 | \(fn)" t nil) |
| @@ -12223,37 +12275,43 @@ Reminder user if there are unsent drafts. | |||
| 12223 | 12275 | ||
| 12224 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png | 12276 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png |
| 12225 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header | 12277 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header |
| 12226 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (18104 | 12278 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (18212 |
| 12227 | ;;;;;; 24750)) | 12279 | ;;;;;; 46006)) |
| 12228 | ;;; Generated autoloads from gnus/gnus-fun.el | 12280 | ;;; Generated autoloads from gnus/gnus-fun.el |
| 12229 | 12281 | ||
| 12230 | (autoload (quote gnus-random-x-face) "gnus-fun" "\ | 12282 | (autoload 'gnus-random-x-face "gnus-fun" "\ |
| 12231 | Return X-Face header data chosen randomly from `gnus-x-face-directory'. | 12283 | Return X-Face header data chosen randomly from `gnus-x-face-directory'. |
| 12232 | 12284 | ||
| 12233 | \(fn)" t nil) | 12285 | \(fn)" t nil) |
| 12234 | 12286 | ||
| 12235 | (autoload (quote gnus-insert-random-x-face-header) "gnus-fun" "\ | 12287 | (autoload 'gnus-insert-random-x-face-header "gnus-fun" "\ |
| 12236 | Insert a random X-Face header from `gnus-x-face-directory'. | 12288 | Insert a random X-Face header from `gnus-x-face-directory'. |
| 12237 | 12289 | ||
| 12238 | \(fn)" t nil) | 12290 | \(fn)" t nil) |
| 12239 | 12291 | ||
| 12240 | (autoload (quote gnus-x-face-from-file) "gnus-fun" "\ | 12292 | (autoload 'gnus-x-face-from-file "gnus-fun" "\ |
| 12241 | Insert an X-Face header based on an image file. | 12293 | Insert an X-Face header based on an image file. |
| 12242 | 12294 | ||
| 12295 | Depending on `gnus-convert-image-to-x-face-command' it may accept | ||
| 12296 | different input formats. | ||
| 12297 | |||
| 12243 | \(fn FILE)" t nil) | 12298 | \(fn FILE)" t nil) |
| 12244 | 12299 | ||
| 12245 | (autoload (quote gnus-face-from-file) "gnus-fun" "\ | 12300 | (autoload 'gnus-face-from-file "gnus-fun" "\ |
| 12246 | Return a Face header based on an image file. | 12301 | Return a Face header based on an image file. |
| 12247 | 12302 | ||
| 12303 | Depending on `gnus-convert-image-to-face-command' it may accept | ||
| 12304 | different input formats. | ||
| 12305 | |||
| 12248 | \(fn FILE)" t nil) | 12306 | \(fn FILE)" t nil) |
| 12249 | 12307 | ||
| 12250 | (autoload (quote gnus-convert-face-to-png) "gnus-fun" "\ | 12308 | (autoload 'gnus-convert-face-to-png "gnus-fun" "\ |
| 12251 | Convert FACE (which is base64-encoded) to a PNG. | 12309 | Convert FACE (which is base64-encoded) to a PNG. |
| 12252 | The PNG is returned as a string. | 12310 | The PNG is returned as a string. |
| 12253 | 12311 | ||
| 12254 | \(fn FACE)" nil nil) | 12312 | \(fn FACE)" nil nil) |
| 12255 | 12313 | ||
| 12256 | (autoload (quote gnus-convert-png-to-face) "gnus-fun" "\ | 12314 | (autoload 'gnus-convert-png-to-face "gnus-fun" "\ |
| 12257 | Convert FILE to a Face. | 12315 | Convert FILE to a Face. |
| 12258 | FILE should be a PNG file that's 48x48 and smaller than or equal to | 12316 | FILE should be a PNG file that's 48x48 and smaller than or equal to |
| 12259 | 726 bytes. | 12317 | 726 bytes. |
| @@ -12263,16 +12321,17 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to | |||
| 12263 | ;;;*** | 12321 | ;;;*** |
| 12264 | 12322 | ||
| 12265 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) | 12323 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) |
| 12266 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (18104 24750)) | 12324 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (18212 46006)) |
| 12267 | ;;; Generated autoloads from gnus/gnus-group.el | 12325 | ;;; Generated autoloads from gnus/gnus-group.el |
| 12268 | 12326 | ||
| 12269 | (autoload (quote gnus-fetch-group) "gnus-group" "\ | 12327 | (autoload 'gnus-fetch-group "gnus-group" "\ |
| 12270 | Start Gnus if necessary and enter GROUP. | 12328 | Start Gnus if necessary and enter GROUP. |
| 12329 | If ARTICLES, display those articles. | ||
| 12271 | Returns whether the fetching was successful or not. | 12330 | Returns whether the fetching was successful or not. |
| 12272 | 12331 | ||
| 12273 | \(fn GROUP &optional ARTICLES)" t nil) | 12332 | \(fn GROUP &optional ARTICLES)" t nil) |
| 12274 | 12333 | ||
| 12275 | (autoload (quote gnus-fetch-group-other-frame) "gnus-group" "\ | 12334 | (autoload 'gnus-fetch-group-other-frame "gnus-group" "\ |
| 12276 | Pop up a frame and enter GROUP. | 12335 | Pop up a frame and enter GROUP. |
| 12277 | 12336 | ||
| 12278 | \(fn GROUP)" t nil) | 12337 | \(fn GROUP)" t nil) |
| @@ -12280,12 +12339,12 @@ Pop up a frame and enter GROUP. | |||
| 12280 | ;;;*** | 12339 | ;;;*** |
| 12281 | 12340 | ||
| 12282 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" | 12341 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" |
| 12283 | ;;;;;; (18104 24750)) | 12342 | ;;;;;; (18212 46006)) |
| 12284 | ;;; Generated autoloads from gnus/gnus-kill.el | 12343 | ;;; Generated autoloads from gnus/gnus-kill.el |
| 12285 | 12344 | ||
| 12286 | (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) | 12345 | (defalias 'gnus-batch-kill 'gnus-batch-score) |
| 12287 | 12346 | ||
| 12288 | (autoload (quote gnus-batch-score) "gnus-kill" "\ | 12347 | (autoload 'gnus-batch-score "gnus-kill" "\ |
| 12289 | Run batched scoring. | 12348 | Run batched scoring. |
| 12290 | Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | 12349 | Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score |
| 12291 | 12350 | ||
| @@ -12295,21 +12354,21 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | |||
| 12295 | 12354 | ||
| 12296 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate | 12355 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate |
| 12297 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" | 12356 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" |
| 12298 | ;;;;;; (18104 24750)) | 12357 | ;;;;;; (18212 46006)) |
| 12299 | ;;; Generated autoloads from gnus/gnus-ml.el | 12358 | ;;; Generated autoloads from gnus/gnus-ml.el |
| 12300 | 12359 | ||
| 12301 | (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ | 12360 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ |
| 12302 | Not documented | 12361 | Not documented |
| 12303 | 12362 | ||
| 12304 | \(fn)" nil nil) | 12363 | \(fn)" nil nil) |
| 12305 | 12364 | ||
| 12306 | (autoload (quote gnus-mailing-list-insinuate) "gnus-ml" "\ | 12365 | (autoload 'gnus-mailing-list-insinuate "gnus-ml" "\ |
| 12307 | Setup group parameters from List-Post header. | 12366 | Setup group parameters from List-Post header. |
| 12308 | If FORCE is non-nil, replace the old ones. | 12367 | If FORCE is non-nil, replace the old ones. |
| 12309 | 12368 | ||
| 12310 | \(fn &optional FORCE)" t nil) | 12369 | \(fn &optional FORCE)" t nil) |
| 12311 | 12370 | ||
| 12312 | (autoload (quote gnus-mailing-list-mode) "gnus-ml" "\ | 12371 | (autoload 'gnus-mailing-list-mode "gnus-ml" "\ |
| 12313 | Minor mode for providing mailing-list commands. | 12372 | Minor mode for providing mailing-list commands. |
| 12314 | 12373 | ||
| 12315 | \\{gnus-mailing-list-mode-map} | 12374 | \\{gnus-mailing-list-mode-map} |
| @@ -12320,25 +12379,25 @@ Minor mode for providing mailing-list commands. | |||
| 12320 | 12379 | ||
| 12321 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update | 12380 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update |
| 12322 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" | 12381 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" |
| 12323 | ;;;;;; (18104 24750)) | 12382 | ;;;;;; (18212 46006)) |
| 12324 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 12383 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 12325 | 12384 | ||
| 12326 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ | 12385 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ |
| 12327 | Set up the split for nnmail-split-fancy. | 12386 | Set up the split for `nnmail-split-fancy'. |
| 12328 | Sets things up so that nnmail-split-fancy is used for mail | 12387 | Sets things up so that nnmail-split-fancy is used for mail |
| 12329 | splitting, and defines the variable nnmail-split-fancy according with | 12388 | splitting, and defines the variable nnmail-split-fancy according with |
| 12330 | group parameters. | 12389 | group parameters. |
| 12331 | 12390 | ||
| 12332 | If AUTO-UPDATE is non-nil (prefix argument accepted, if called | 12391 | If AUTO-UPDATE is non-nil (prefix argument accepted, if called |
| 12333 | interactively), it makes sure nnmail-split-fancy is re-computed before | 12392 | interactively), it makes sure nnmail-split-fancy is re-computed before |
| 12334 | getting new mail, by adding gnus-group-split-update to | 12393 | getting new mail, by adding `gnus-group-split-update' to |
| 12335 | nnmail-pre-get-new-mail-hook. | 12394 | `nnmail-pre-get-new-mail-hook'. |
| 12336 | 12395 | ||
| 12337 | A non-nil CATCH-ALL replaces the current value of | 12396 | A non-nil CATCH-ALL replaces the current value of |
| 12338 | gnus-group-split-default-catch-all-group. This variable is only used | 12397 | `gnus-group-split-default-catch-all-group'. This variable is only used |
| 12339 | by gnus-group-split-update, and only when its CATCH-ALL argument is | 12398 | by gnus-group-split-update, and only when its CATCH-ALL argument is |
| 12340 | nil. This argument may contain any fancy split, that will be added as | 12399 | nil. This argument may contain any fancy split, that will be added as |
| 12341 | the last split in a `|' split produced by gnus-group-split-fancy, | 12400 | the last split in a `|' split produced by `gnus-group-split-fancy', |
| 12342 | unless overridden by any group marked as a catch-all group. Typical | 12401 | unless overridden by any group marked as a catch-all group. Typical |
| 12343 | uses are as simple as the name of a default mail group, but more | 12402 | uses are as simple as the name of a default mail group, but more |
| 12344 | elaborate fancy splits may also be useful to split mail that doesn't | 12403 | elaborate fancy splits may also be useful to split mail that doesn't |
| @@ -12347,25 +12406,25 @@ match any of the group-specified splitting rules. See | |||
| 12347 | 12406 | ||
| 12348 | \(fn &optional AUTO-UPDATE CATCH-ALL)" t nil) | 12407 | \(fn &optional AUTO-UPDATE CATCH-ALL)" t nil) |
| 12349 | 12408 | ||
| 12350 | (autoload (quote gnus-group-split-update) "gnus-mlspl" "\ | 12409 | (autoload 'gnus-group-split-update "gnus-mlspl" "\ |
| 12351 | Computes nnmail-split-fancy from group params and CATCH-ALL. | 12410 | Computes nnmail-split-fancy from group params and CATCH-ALL. |
| 12352 | It does this by calling by calling (gnus-group-split-fancy nil | 12411 | It does this by calling by calling (gnus-group-split-fancy nil |
| 12353 | nil CATCH-ALL). | 12412 | nil CATCH-ALL). |
| 12354 | 12413 | ||
| 12355 | If CATCH-ALL is nil, gnus-group-split-default-catch-all-group is used | 12414 | If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used |
| 12356 | instead. This variable is set by gnus-group-split-setup. | 12415 | instead. This variable is set by `gnus-group-split-setup'. |
| 12357 | 12416 | ||
| 12358 | \(fn &optional CATCH-ALL)" t nil) | 12417 | \(fn &optional CATCH-ALL)" t nil) |
| 12359 | 12418 | ||
| 12360 | (autoload (quote gnus-group-split) "gnus-mlspl" "\ | 12419 | (autoload 'gnus-group-split "gnus-mlspl" "\ |
| 12361 | Uses information from group parameters in order to split mail. | 12420 | Use information from group parameters in order to split mail. |
| 12362 | See `gnus-group-split-fancy' for more information. | 12421 | See `gnus-group-split-fancy' for more information. |
| 12363 | 12422 | ||
| 12364 | gnus-group-split is a valid value for nnmail-split-methods. | 12423 | `gnus-group-split' is a valid value for `nnmail-split-methods'. |
| 12365 | 12424 | ||
| 12366 | \(fn)" nil nil) | 12425 | \(fn)" nil nil) |
| 12367 | 12426 | ||
| 12368 | (autoload (quote gnus-group-split-fancy) "gnus-mlspl" "\ | 12427 | (autoload 'gnus-group-split-fancy "gnus-mlspl" "\ |
| 12369 | Uses information from group parameters in order to split mail. | 12428 | Uses information from group parameters in order to split mail. |
| 12370 | It can be embedded into `nnmail-split-fancy' lists with the SPLIT | 12429 | It can be embedded into `nnmail-split-fancy' lists with the SPLIT |
| 12371 | 12430 | ||
| @@ -12421,10 +12480,10 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 12421 | ;;;*** | 12480 | ;;;*** |
| 12422 | 12481 | ||
| 12423 | ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" | 12482 | ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" |
| 12424 | ;;;;;; (18104 24750)) | 12483 | ;;;;;; (18212 46006)) |
| 12425 | ;;; Generated autoloads from gnus/gnus-move.el | 12484 | ;;; Generated autoloads from gnus/gnus-move.el |
| 12426 | 12485 | ||
| 12427 | (autoload (quote gnus-change-server) "gnus-move" "\ | 12486 | (autoload 'gnus-change-server "gnus-move" "\ |
| 12428 | Move from FROM-SERVER to TO-SERVER. | 12487 | Move from FROM-SERVER to TO-SERVER. |
| 12429 | Update the .newsrc.eld file to reflect the change of nntp server. | 12488 | Update the .newsrc.eld file to reflect the change of nntp server. |
| 12430 | 12489 | ||
| @@ -12433,40 +12492,40 @@ Update the .newsrc.eld file to reflect the change of nntp server. | |||
| 12433 | ;;;*** | 12492 | ;;;*** |
| 12434 | 12493 | ||
| 12435 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) | 12494 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) |
| 12436 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (18104 24750)) | 12495 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (18212 46006)) |
| 12437 | ;;; Generated autoloads from gnus/gnus-msg.el | 12496 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 12438 | 12497 | ||
| 12439 | (autoload (quote gnus-msg-mail) "gnus-msg" "\ | 12498 | (autoload 'gnus-msg-mail "gnus-msg" "\ |
| 12440 | Start editing a mail message to be sent. | 12499 | Start editing a mail message to be sent. |
| 12441 | Like `message-mail', but with Gnus paraphernalia, particularly the | 12500 | Like `message-mail', but with Gnus paraphernalia, particularly the |
| 12442 | Gcc: header for archiving purposes. | 12501 | Gcc: header for archiving purposes. |
| 12443 | 12502 | ||
| 12444 | \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS)" t nil) | 12503 | \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS)" t nil) |
| 12445 | 12504 | ||
| 12446 | (autoload (quote gnus-button-mailto) "gnus-msg" "\ | 12505 | (autoload 'gnus-button-mailto "gnus-msg" "\ |
| 12447 | Mail to ADDRESS. | 12506 | Mail to ADDRESS. |
| 12448 | 12507 | ||
| 12449 | \(fn ADDRESS)" nil nil) | 12508 | \(fn ADDRESS)" nil nil) |
| 12450 | 12509 | ||
| 12451 | (autoload (quote gnus-button-reply) "gnus-msg" "\ | 12510 | (autoload 'gnus-button-reply "gnus-msg" "\ |
| 12452 | Like `message-reply'. | 12511 | Like `message-reply'. |
| 12453 | 12512 | ||
| 12454 | \(fn &optional TO-ADDRESS WIDE)" t nil) | 12513 | \(fn &optional TO-ADDRESS WIDE)" t nil) |
| 12455 | 12514 | ||
| 12456 | (define-mail-user-agent (quote gnus-user-agent) (quote gnus-msg-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook)) | 12515 | (define-mail-user-agent 'gnus-user-agent 'gnus-msg-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| 12457 | 12516 | ||
| 12458 | ;;;*** | 12517 | ;;;*** |
| 12459 | 12518 | ||
| 12460 | ;;;### (autoloads (gnus-nocem-load-cache gnus-nocem-scan-groups) | 12519 | ;;;### (autoloads (gnus-nocem-load-cache gnus-nocem-scan-groups) |
| 12461 | ;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (18104 24750)) | 12520 | ;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (18212 46006)) |
| 12462 | ;;; Generated autoloads from gnus/gnus-nocem.el | 12521 | ;;; Generated autoloads from gnus/gnus-nocem.el |
| 12463 | 12522 | ||
| 12464 | (autoload (quote gnus-nocem-scan-groups) "gnus-nocem" "\ | 12523 | (autoload 'gnus-nocem-scan-groups "gnus-nocem" "\ |
| 12465 | Scan all NoCeM groups for new NoCeM messages. | 12524 | Scan all NoCeM groups for new NoCeM messages. |
| 12466 | 12525 | ||
| 12467 | \(fn)" t nil) | 12526 | \(fn)" t nil) |
| 12468 | 12527 | ||
| 12469 | (autoload (quote gnus-nocem-load-cache) "gnus-nocem" "\ | 12528 | (autoload 'gnus-nocem-load-cache "gnus-nocem" "\ |
| 12470 | Load the NoCeM cache. | 12529 | Load the NoCeM cache. |
| 12471 | 12530 | ||
| 12472 | \(fn)" t nil) | 12531 | \(fn)" t nil) |
| @@ -12475,22 +12534,22 @@ Load the NoCeM cache. | |||
| 12475 | 12534 | ||
| 12476 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon | 12535 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon |
| 12477 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" | 12536 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" |
| 12478 | ;;;;;; (18104 24750)) | 12537 | ;;;;;; (18212 46006)) |
| 12479 | ;;; Generated autoloads from gnus/gnus-picon.el | 12538 | ;;; Generated autoloads from gnus/gnus-picon.el |
| 12480 | 12539 | ||
| 12481 | (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ | 12540 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ |
| 12482 | Display picons in the From header. | 12541 | Display picons in the From header. |
| 12483 | If picons are already displayed, remove them. | 12542 | If picons are already displayed, remove them. |
| 12484 | 12543 | ||
| 12485 | \(fn)" t nil) | 12544 | \(fn)" t nil) |
| 12486 | 12545 | ||
| 12487 | (autoload (quote gnus-treat-mail-picon) "gnus-picon" "\ | 12546 | (autoload 'gnus-treat-mail-picon "gnus-picon" "\ |
| 12488 | Display picons in the Cc and To headers. | 12547 | Display picons in the Cc and To headers. |
| 12489 | If picons are already displayed, remove them. | 12548 | If picons are already displayed, remove them. |
| 12490 | 12549 | ||
| 12491 | \(fn)" t nil) | 12550 | \(fn)" t nil) |
| 12492 | 12551 | ||
| 12493 | (autoload (quote gnus-treat-newsgroups-picon) "gnus-picon" "\ | 12552 | (autoload 'gnus-treat-newsgroups-picon "gnus-picon" "\ |
| 12494 | Display picons in the Newsgroups and Followup-To headers. | 12553 | Display picons in the Newsgroups and Followup-To headers. |
| 12495 | If picons are already displayed, remove them. | 12554 | If picons are already displayed, remove them. |
| 12496 | 12555 | ||
| @@ -12502,67 +12561,67 @@ If picons are already displayed, remove them. | |||
| 12502 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection | 12561 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection |
| 12503 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement | 12562 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement |
| 12504 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" | 12563 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" |
| 12505 | ;;;;;; "gnus/gnus-range.el" (18104 24750)) | 12564 | ;;;;;; "gnus/gnus-range.el" (18212 46006)) |
| 12506 | ;;; Generated autoloads from gnus/gnus-range.el | 12565 | ;;; Generated autoloads from gnus/gnus-range.el |
| 12507 | 12566 | ||
| 12508 | (autoload (quote gnus-sorted-difference) "gnus-range" "\ | 12567 | (autoload 'gnus-sorted-difference "gnus-range" "\ |
| 12509 | Return a list of elements of LIST1 that do not appear in LIST2. | 12568 | Return a list of elements of LIST1 that do not appear in LIST2. |
| 12510 | Both lists have to be sorted over <. | 12569 | Both lists have to be sorted over <. |
| 12511 | The tail of LIST1 is not copied. | 12570 | The tail of LIST1 is not copied. |
| 12512 | 12571 | ||
| 12513 | \(fn LIST1 LIST2)" nil nil) | 12572 | \(fn LIST1 LIST2)" nil nil) |
| 12514 | 12573 | ||
| 12515 | (autoload (quote gnus-sorted-ndifference) "gnus-range" "\ | 12574 | (autoload 'gnus-sorted-ndifference "gnus-range" "\ |
| 12516 | Return a list of elements of LIST1 that do not appear in LIST2. | 12575 | Return a list of elements of LIST1 that do not appear in LIST2. |
| 12517 | Both lists have to be sorted over <. | 12576 | Both lists have to be sorted over <. |
| 12518 | LIST1 is modified. | 12577 | LIST1 is modified. |
| 12519 | 12578 | ||
| 12520 | \(fn LIST1 LIST2)" nil nil) | 12579 | \(fn LIST1 LIST2)" nil nil) |
| 12521 | 12580 | ||
| 12522 | (autoload (quote gnus-sorted-complement) "gnus-range" "\ | 12581 | (autoload 'gnus-sorted-complement "gnus-range" "\ |
| 12523 | Return a list of elements that are in LIST1 or LIST2 but not both. | 12582 | Return a list of elements that are in LIST1 or LIST2 but not both. |
| 12524 | Both lists have to be sorted over <. | 12583 | Both lists have to be sorted over <. |
| 12525 | 12584 | ||
| 12526 | \(fn LIST1 LIST2)" nil nil) | 12585 | \(fn LIST1 LIST2)" nil nil) |
| 12527 | 12586 | ||
| 12528 | (autoload (quote gnus-intersection) "gnus-range" "\ | 12587 | (autoload 'gnus-intersection "gnus-range" "\ |
| 12529 | Not documented | 12588 | Not documented |
| 12530 | 12589 | ||
| 12531 | \(fn LIST1 LIST2)" nil nil) | 12590 | \(fn LIST1 LIST2)" nil nil) |
| 12532 | 12591 | ||
| 12533 | (autoload (quote gnus-sorted-intersection) "gnus-range" "\ | 12592 | (autoload 'gnus-sorted-intersection "gnus-range" "\ |
| 12534 | Return intersection of LIST1 and LIST2. | 12593 | Return intersection of LIST1 and LIST2. |
| 12535 | LIST1 and LIST2 have to be sorted over <. | 12594 | LIST1 and LIST2 have to be sorted over <. |
| 12536 | 12595 | ||
| 12537 | \(fn LIST1 LIST2)" nil nil) | 12596 | \(fn LIST1 LIST2)" nil nil) |
| 12538 | 12597 | ||
| 12539 | (autoload (quote gnus-sorted-range-intersection) "gnus-range" "\ | 12598 | (autoload 'gnus-sorted-range-intersection "gnus-range" "\ |
| 12540 | Return intersection of RANGE1 and RANGE2. | 12599 | Return intersection of RANGE1 and RANGE2. |
| 12541 | RANGE1 and RANGE2 have to be sorted over <. | 12600 | RANGE1 and RANGE2 have to be sorted over <. |
| 12542 | 12601 | ||
| 12543 | \(fn RANGE1 RANGE2)" nil nil) | 12602 | \(fn RANGE1 RANGE2)" nil nil) |
| 12544 | 12603 | ||
| 12545 | (defalias (quote gnus-set-sorted-intersection) (quote gnus-sorted-nintersection)) | 12604 | (defalias 'gnus-set-sorted-intersection 'gnus-sorted-nintersection) |
| 12546 | 12605 | ||
| 12547 | (autoload (quote gnus-sorted-nintersection) "gnus-range" "\ | 12606 | (autoload 'gnus-sorted-nintersection "gnus-range" "\ |
| 12548 | Return intersection of LIST1 and LIST2 by modifying cdr pointers of LIST1. | 12607 | Return intersection of LIST1 and LIST2 by modifying cdr pointers of LIST1. |
| 12549 | LIST1 and LIST2 have to be sorted over <. | 12608 | LIST1 and LIST2 have to be sorted over <. |
| 12550 | 12609 | ||
| 12551 | \(fn LIST1 LIST2)" nil nil) | 12610 | \(fn LIST1 LIST2)" nil nil) |
| 12552 | 12611 | ||
| 12553 | (autoload (quote gnus-sorted-union) "gnus-range" "\ | 12612 | (autoload 'gnus-sorted-union "gnus-range" "\ |
| 12554 | Return union of LIST1 and LIST2. | 12613 | Return union of LIST1 and LIST2. |
| 12555 | LIST1 and LIST2 have to be sorted over <. | 12614 | LIST1 and LIST2 have to be sorted over <. |
| 12556 | 12615 | ||
| 12557 | \(fn LIST1 LIST2)" nil nil) | 12616 | \(fn LIST1 LIST2)" nil nil) |
| 12558 | 12617 | ||
| 12559 | (autoload (quote gnus-sorted-nunion) "gnus-range" "\ | 12618 | (autoload 'gnus-sorted-nunion "gnus-range" "\ |
| 12560 | Return union of LIST1 and LIST2 by modifying cdr pointers of LIST1. | 12619 | Return union of LIST1 and LIST2 by modifying cdr pointers of LIST1. |
| 12561 | LIST1 and LIST2 have to be sorted over <. | 12620 | LIST1 and LIST2 have to be sorted over <. |
| 12562 | 12621 | ||
| 12563 | \(fn LIST1 LIST2)" nil nil) | 12622 | \(fn LIST1 LIST2)" nil nil) |
| 12564 | 12623 | ||
| 12565 | (autoload (quote gnus-add-to-sorted-list) "gnus-range" "\ | 12624 | (autoload 'gnus-add-to-sorted-list "gnus-range" "\ |
| 12566 | Add NUM into sorted LIST by side effect. | 12625 | Add NUM into sorted LIST by side effect. |
| 12567 | 12626 | ||
| 12568 | \(fn LIST NUM)" nil nil) | 12627 | \(fn LIST NUM)" nil nil) |
| @@ -12570,15 +12629,15 @@ Add NUM into sorted LIST by side effect. | |||
| 12570 | ;;;*** | 12629 | ;;;*** |
| 12571 | 12630 | ||
| 12572 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) | 12631 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) |
| 12573 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (18104 24750)) | 12632 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (18212 46006)) |
| 12574 | ;;; Generated autoloads from gnus/gnus-registry.el | 12633 | ;;; Generated autoloads from gnus/gnus-registry.el |
| 12575 | 12634 | ||
| 12576 | (autoload (quote gnus-registry-initialize) "gnus-registry" "\ | 12635 | (autoload 'gnus-registry-initialize "gnus-registry" "\ |
| 12577 | Not documented | 12636 | Not documented |
| 12578 | 12637 | ||
| 12579 | \(fn)" t nil) | 12638 | \(fn)" t nil) |
| 12580 | 12639 | ||
| 12581 | (autoload (quote gnus-registry-install-hooks) "gnus-registry" "\ | 12640 | (autoload 'gnus-registry-install-hooks "gnus-registry" "\ |
| 12582 | Install the registry hooks. | 12641 | Install the registry hooks. |
| 12583 | 12642 | ||
| 12584 | \(fn)" t nil) | 12643 | \(fn)" t nil) |
| @@ -12586,11 +12645,11 @@ Install the registry hooks. | |||
| 12586 | ;;;*** | 12645 | ;;;*** |
| 12587 | 12646 | ||
| 12588 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate | 12647 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate |
| 12589 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (18104 | 12648 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (18088 |
| 12590 | ;;;;;; 24750)) | 12649 | ;;;;;; 55103)) |
| 12591 | ;;; Generated autoloads from gnus/gnus-sieve.el | 12650 | ;;; Generated autoloads from gnus/gnus-sieve.el |
| 12592 | 12651 | ||
| 12593 | (autoload (quote gnus-sieve-update) "gnus-sieve" "\ | 12652 | (autoload 'gnus-sieve-update "gnus-sieve" "\ |
| 12594 | Update the Sieve script in gnus-sieve-file, by replacing the region | 12653 | Update the Sieve script in gnus-sieve-file, by replacing the region |
| 12595 | between gnus-sieve-region-start and gnus-sieve-region-end with | 12654 | between gnus-sieve-region-start and gnus-sieve-region-end with |
| 12596 | \(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost), then | 12655 | \(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost), then |
| @@ -12599,7 +12658,7 @@ See the documentation for these variables and functions for details. | |||
| 12599 | 12658 | ||
| 12600 | \(fn)" t nil) | 12659 | \(fn)" t nil) |
| 12601 | 12660 | ||
| 12602 | (autoload (quote gnus-sieve-generate) "gnus-sieve" "\ | 12661 | (autoload 'gnus-sieve-generate "gnus-sieve" "\ |
| 12603 | Generate the Sieve script in gnus-sieve-file, by replacing the region | 12662 | Generate the Sieve script in gnus-sieve-file, by replacing the region |
| 12604 | between gnus-sieve-region-start and gnus-sieve-region-end with | 12663 | between gnus-sieve-region-start and gnus-sieve-region-end with |
| 12605 | \(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost). | 12664 | \(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost). |
| @@ -12607,7 +12666,7 @@ See the documentation for these variables and functions for details. | |||
| 12607 | 12666 | ||
| 12608 | \(fn)" t nil) | 12667 | \(fn)" t nil) |
| 12609 | 12668 | ||
| 12610 | (autoload (quote gnus-sieve-article-add-rule) "gnus-sieve" "\ | 12669 | (autoload 'gnus-sieve-article-add-rule "gnus-sieve" "\ |
| 12611 | Not documented | 12670 | Not documented |
| 12612 | 12671 | ||
| 12613 | \(fn)" t nil) | 12672 | \(fn)" t nil) |
| @@ -12615,10 +12674,10 @@ Not documented | |||
| 12615 | ;;;*** | 12674 | ;;;*** |
| 12616 | 12675 | ||
| 12617 | ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" | 12676 | ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" |
| 12618 | ;;;;;; (18104 24750)) | 12677 | ;;;;;; (18212 46006)) |
| 12619 | ;;; Generated autoloads from gnus/gnus-soup.el | 12678 | ;;; Generated autoloads from gnus/gnus-soup.el |
| 12620 | 12679 | ||
| 12621 | (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ | 12680 | (autoload 'gnus-batch-brew-soup "gnus-soup" "\ |
| 12622 | Brew a SOUP packet from groups mention on the command line. | 12681 | Brew a SOUP packet from groups mention on the command line. |
| 12623 | Will use the remaining command line arguments as regular expressions | 12682 | Will use the remaining command line arguments as regular expressions |
| 12624 | for matching on group names. | 12683 | for matching on group names. |
| @@ -12635,10 +12694,10 @@ Note -- this function hasn't been implemented yet. | |||
| 12635 | ;;;*** | 12694 | ;;;*** |
| 12636 | 12695 | ||
| 12637 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" | 12696 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" |
| 12638 | ;;;;;; (18104 24750)) | 12697 | ;;;;;; (18212 46006)) |
| 12639 | ;;; Generated autoloads from gnus/gnus-spec.el | 12698 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 12640 | 12699 | ||
| 12641 | (autoload (quote gnus-update-format) "gnus-spec" "\ | 12700 | (autoload 'gnus-update-format "gnus-spec" "\ |
| 12642 | Update the format specification near point. | 12701 | Update the format specification near point. |
| 12643 | 12702 | ||
| 12644 | \(fn VAR)" t nil) | 12703 | \(fn VAR)" t nil) |
| @@ -12646,16 +12705,16 @@ Update the format specification near point. | |||
| 12646 | ;;;*** | 12705 | ;;;*** |
| 12647 | 12706 | ||
| 12648 | ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news | 12707 | ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news |
| 12649 | ;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (18104 | 12708 | ;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (18212 |
| 12650 | ;;;;;; 24750)) | 12709 | ;;;;;; 46006)) |
| 12651 | ;;; Generated autoloads from gnus/gnus-start.el | 12710 | ;;; Generated autoloads from gnus/gnus-start.el |
| 12652 | 12711 | ||
| 12653 | (autoload (quote gnus-declare-backend) "gnus-start" "\ | 12712 | (autoload 'gnus-declare-backend "gnus-start" "\ |
| 12654 | Declare back end NAME with ABILITIES as a Gnus back end. | 12713 | Declare back end NAME with ABILITIES as a Gnus back end. |
| 12655 | 12714 | ||
| 12656 | \(fn NAME &rest ABILITIES)" nil nil) | 12715 | \(fn NAME &rest ABILITIES)" nil nil) |
| 12657 | 12716 | ||
| 12658 | (autoload (quote gnus-fixup-nnimap-unread-after-getting-new-news) "gnus-start" "\ | 12717 | (autoload 'gnus-fixup-nnimap-unread-after-getting-new-news "gnus-start" "\ |
| 12659 | Not documented | 12718 | Not documented |
| 12660 | 12719 | ||
| 12661 | \(fn)" nil nil) | 12720 | \(fn)" nil nil) |
| @@ -12663,20 +12722,20 @@ Not documented | |||
| 12663 | ;;;*** | 12722 | ;;;*** |
| 12664 | 12723 | ||
| 12665 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" | 12724 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" |
| 12666 | ;;;;;; (18104 24751)) | 12725 | ;;;;;; (18212 46007)) |
| 12667 | ;;; Generated autoloads from gnus/gnus-win.el | 12726 | ;;; Generated autoloads from gnus/gnus-win.el |
| 12668 | 12727 | ||
| 12669 | (autoload (quote gnus-add-configuration) "gnus-win" "\ | 12728 | (autoload 'gnus-add-configuration "gnus-win" "\ |
| 12670 | Add the window configuration CONF to `gnus-buffer-configuration'. | 12729 | Add the window configuration CONF to `gnus-buffer-configuration'. |
| 12671 | 12730 | ||
| 12672 | \(fn CONF)" nil nil) | 12731 | \(fn CONF)" nil nil) |
| 12673 | 12732 | ||
| 12674 | ;;;*** | 12733 | ;;;*** |
| 12675 | 12734 | ||
| 12676 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (18104 24761)) | 12735 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (18088 55114)) |
| 12677 | ;;; Generated autoloads from play/gomoku.el | 12736 | ;;; Generated autoloads from play/gomoku.el |
| 12678 | 12737 | ||
| 12679 | (autoload (quote gomoku) "gomoku" "\ | 12738 | (autoload 'gomoku "gomoku" "\ |
| 12680 | Start a Gomoku game between you and Emacs. | 12739 | Start a Gomoku game between you and Emacs. |
| 12681 | 12740 | ||
| 12682 | If a game is in progress, this command allow you to resume it. | 12741 | If a game is in progress, this command allow you to resume it. |
| @@ -12700,12 +12759,12 @@ Use \\[describe-mode] for more info. | |||
| 12700 | ;;;*** | 12759 | ;;;*** |
| 12701 | 12760 | ||
| 12702 | ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" | 12761 | ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" |
| 12703 | ;;;;;; "net/goto-addr.el" (18104 24759)) | 12762 | ;;;;;; "net/goto-addr.el" (18088 55111)) |
| 12704 | ;;; Generated autoloads from net/goto-addr.el | 12763 | ;;; Generated autoloads from net/goto-addr.el |
| 12705 | 12764 | ||
| 12706 | (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") | 12765 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") |
| 12707 | 12766 | ||
| 12708 | (autoload (quote goto-address-at-point) "goto-addr" "\ | 12767 | (autoload 'goto-address-at-point "goto-addr" "\ |
| 12709 | Send to the e-mail address or load the URL at point. | 12768 | Send to the e-mail address or load the URL at point. |
| 12710 | Send mail to address at point. See documentation for | 12769 | Send mail to address at point. See documentation for |
| 12711 | `goto-address-find-address-at-point'. If no address is found | 12770 | `goto-address-find-address-at-point'. If no address is found |
| @@ -12713,7 +12772,7 @@ there, then load the URL at or before point. | |||
| 12713 | 12772 | ||
| 12714 | \(fn &optional EVENT)" t nil) | 12773 | \(fn &optional EVENT)" t nil) |
| 12715 | 12774 | ||
| 12716 | (autoload (quote goto-address) "goto-addr" "\ | 12775 | (autoload 'goto-address "goto-addr" "\ |
| 12717 | Sets up goto-address functionality in the current buffer. | 12776 | Sets up goto-address functionality in the current buffer. |
| 12718 | Allows user to use mouse/keyboard command to click to go to a URL | 12777 | Allows user to use mouse/keyboard command to click to go to a URL |
| 12719 | or to send e-mail. | 12778 | or to send e-mail. |
| @@ -12730,13 +12789,13 @@ Also fontifies the buffer appropriately (see `goto-address-fontify-p' and | |||
| 12730 | 12789 | ||
| 12731 | ;;;### (autoloads (rgrep lgrep grep-find grep grep-mode grep-compute-defaults | 12790 | ;;;### (autoloads (rgrep lgrep grep-find grep grep-mode grep-compute-defaults |
| 12732 | ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command | 12791 | ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command |
| 12733 | ;;;;;; grep-window-height) "grep" "progmodes/grep.el" (18104 24766)) | 12792 | ;;;;;; grep-window-height) "grep" "progmodes/grep.el" (18135 53075)) |
| 12734 | ;;; Generated autoloads from progmodes/grep.el | 12793 | ;;; Generated autoloads from progmodes/grep.el |
| 12735 | 12794 | ||
| 12736 | (defvar grep-window-height nil "\ | 12795 | (defvar grep-window-height nil "\ |
| 12737 | *Number of lines in a grep window. If nil, use `compilation-window-height'.") | 12796 | *Number of lines in a grep window. If nil, use `compilation-window-height'.") |
| 12738 | 12797 | ||
| 12739 | (custom-autoload (quote grep-window-height) "grep" t) | 12798 | (custom-autoload 'grep-window-height "grep" t) |
| 12740 | 12799 | ||
| 12741 | (defvar grep-command nil "\ | 12800 | (defvar grep-command nil "\ |
| 12742 | The default grep command for \\[grep]. | 12801 | The default grep command for \\[grep]. |
| @@ -12747,21 +12806,21 @@ include it when specifying `grep-command'. | |||
| 12747 | The default value of this variable is set up by `grep-compute-defaults'; | 12806 | The default value of this variable is set up by `grep-compute-defaults'; |
| 12748 | call that function before using this variable in your program.") | 12807 | call that function before using this variable in your program.") |
| 12749 | 12808 | ||
| 12750 | (custom-autoload (quote grep-command) "grep" t) | 12809 | (custom-autoload 'grep-command "grep" t) |
| 12751 | 12810 | ||
| 12752 | (defvar grep-find-command nil "\ | 12811 | (defvar grep-find-command nil "\ |
| 12753 | The default find command for \\[grep-find]. | 12812 | The default find command for \\[grep-find]. |
| 12754 | The default value of this variable is set up by `grep-compute-defaults'; | 12813 | The default value of this variable is set up by `grep-compute-defaults'; |
| 12755 | call that function before using this variable in your program.") | 12814 | call that function before using this variable in your program.") |
| 12756 | 12815 | ||
| 12757 | (custom-autoload (quote grep-find-command) "grep" t) | 12816 | (custom-autoload 'grep-find-command "grep" t) |
| 12758 | 12817 | ||
| 12759 | (defvar grep-setup-hook nil "\ | 12818 | (defvar grep-setup-hook nil "\ |
| 12760 | List of hook functions run by `grep-process-setup' (see `run-hooks').") | 12819 | List of hook functions run by `grep-process-setup' (see `run-hooks').") |
| 12761 | 12820 | ||
| 12762 | (custom-autoload (quote grep-setup-hook) "grep" t) | 12821 | (custom-autoload 'grep-setup-hook "grep" t) |
| 12763 | 12822 | ||
| 12764 | (defvar grep-regexp-alist (quote (("^\\(.+?\\)\\(:[ ]*\\)\\([0-9]+\\)\\2" 1 3) ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\\(\\[01;31m\\(?:\\[K\\)?\\)\\(.*?\\)\\(\\[[0-9]*m\\)" 2 3 ((lambda nil (setq compilation-error-screen-columns nil) (- (match-beginning 4) (match-end 1))) lambda nil (- (match-end 5) (match-end 1) (- (match-end 4) (match-beginning 4)))) nil 1) ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))) "\ | 12823 | (defvar grep-regexp-alist '(("^\\(.+?\\)\\(:[ ]*\\)\\([0-9]+\\)\\2" 1 3) ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\\(\\[01;31m\\(?:\\[K\\)?\\)\\(.*?\\)\\(\\[[0-9]*m\\)" 2 3 ((lambda nil (setq compilation-error-screen-columns nil) (- (match-beginning 4) (match-end 1))) lambda nil (- (match-end 5) (match-end 1) (- (match-end 4) (match-beginning 4)))) nil 1) ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1)) "\ |
| 12765 | Regexp used to match grep hits. See `compilation-error-regexp-alist'.") | 12824 | Regexp used to match grep hits. See `compilation-error-regexp-alist'.") |
| 12766 | 12825 | ||
| 12767 | (defvar grep-program "grep" "\ | 12826 | (defvar grep-program "grep" "\ |
| @@ -12784,23 +12843,23 @@ This variable's value takes effect when `grep-compute-defaults' is called.") | |||
| 12784 | 12843 | ||
| 12785 | (defvar grep-find-history nil) | 12844 | (defvar grep-find-history nil) |
| 12786 | 12845 | ||
| 12787 | (autoload (quote grep-process-setup) "grep" "\ | 12846 | (autoload 'grep-process-setup "grep" "\ |
| 12788 | Setup compilation variables and buffer for `grep'. | 12847 | Setup compilation variables and buffer for `grep'. |
| 12789 | Set up `compilation-exit-message-function' and run `grep-setup-hook'. | 12848 | Set up `compilation-exit-message-function' and run `grep-setup-hook'. |
| 12790 | 12849 | ||
| 12791 | \(fn)" nil nil) | 12850 | \(fn)" nil nil) |
| 12792 | 12851 | ||
| 12793 | (autoload (quote grep-compute-defaults) "grep" "\ | 12852 | (autoload 'grep-compute-defaults "grep" "\ |
| 12794 | Not documented | 12853 | Not documented |
| 12795 | 12854 | ||
| 12796 | \(fn)" nil nil) | 12855 | \(fn)" nil nil) |
| 12797 | 12856 | ||
| 12798 | (autoload (quote grep-mode) "grep" "\ | 12857 | (autoload 'grep-mode "grep" "\ |
| 12799 | Sets `grep-last-buffer' and `compilation-window-height'. | 12858 | Sets `grep-last-buffer' and `compilation-window-height'. |
| 12800 | 12859 | ||
| 12801 | \(fn)" nil nil) | 12860 | \(fn)" nil nil) |
| 12802 | 12861 | ||
| 12803 | (autoload (quote grep) "grep" "\ | 12862 | (autoload 'grep "grep" "\ |
| 12804 | Run grep, with user-specified args, and collect output in a buffer. | 12863 | Run grep, with user-specified args, and collect output in a buffer. |
| 12805 | While grep runs asynchronously, you can use \\[next-error] (M-x next-error), | 12864 | While grep runs asynchronously, you can use \\[next-error] (M-x next-error), |
| 12806 | or \\<grep-mode-map>\\[compile-goto-error] in the grep output buffer, to go to the lines | 12865 | or \\<grep-mode-map>\\[compile-goto-error] in the grep output buffer, to go to the lines |
| @@ -12819,7 +12878,7 @@ if that history list is empty). | |||
| 12819 | 12878 | ||
| 12820 | \(fn COMMAND-ARGS)" t nil) | 12879 | \(fn COMMAND-ARGS)" t nil) |
| 12821 | 12880 | ||
| 12822 | (autoload (quote grep-find) "grep" "\ | 12881 | (autoload 'grep-find "grep" "\ |
| 12823 | Run grep via find, with user-specified args COMMAND-ARGS. | 12882 | Run grep via find, with user-specified args COMMAND-ARGS. |
| 12824 | Collect output in a buffer. | 12883 | Collect output in a buffer. |
| 12825 | While find runs asynchronously, you can use the \\[next-error] command | 12884 | While find runs asynchronously, you can use the \\[next-error] command |
| @@ -12830,9 +12889,9 @@ easily repeat a find command. | |||
| 12830 | 12889 | ||
| 12831 | \(fn COMMAND-ARGS)" t nil) | 12890 | \(fn COMMAND-ARGS)" t nil) |
| 12832 | 12891 | ||
| 12833 | (defalias (quote find-grep) (quote grep-find)) | 12892 | (defalias 'find-grep 'grep-find) |
| 12834 | 12893 | ||
| 12835 | (autoload (quote lgrep) "grep" "\ | 12894 | (autoload 'lgrep "grep" "\ |
| 12836 | Run grep, searching for REGEXP in FILES in directory DIR. | 12895 | Run grep, searching for REGEXP in FILES in directory DIR. |
| 12837 | The search is limited to file names matching shell pattern FILES. | 12896 | The search is limited to file names matching shell pattern FILES. |
| 12838 | FILES may use abbreviations defined in `grep-files-aliases', e.g. | 12897 | FILES may use abbreviations defined in `grep-files-aliases', e.g. |
| @@ -12850,7 +12909,7 @@ This command shares argument histories with \\[rgrep] and \\[grep]. | |||
| 12850 | 12909 | ||
| 12851 | \(fn REGEXP &optional FILES DIR)" t nil) | 12910 | \(fn REGEXP &optional FILES DIR)" t nil) |
| 12852 | 12911 | ||
| 12853 | (autoload (quote rgrep) "grep" "\ | 12912 | (autoload 'rgrep "grep" "\ |
| 12854 | Recursively grep for REGEXP in FILES in directory tree rooted at DIR. | 12913 | Recursively grep for REGEXP in FILES in directory tree rooted at DIR. |
| 12855 | The search is limited to file names matching shell pattern FILES. | 12914 | The search is limited to file names matching shell pattern FILES. |
| 12856 | FILES may use abbreviations defined in `grep-files-aliases', e.g. | 12915 | FILES may use abbreviations defined in `grep-files-aliases', e.g. |
| @@ -12870,10 +12929,10 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]. | |||
| 12870 | 12929 | ||
| 12871 | ;;;*** | 12930 | ;;;*** |
| 12872 | 12931 | ||
| 12873 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (18104 24737)) | 12932 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (18088 55084)) |
| 12874 | ;;; Generated autoloads from gs.el | 12933 | ;;; Generated autoloads from gs.el |
| 12875 | 12934 | ||
| 12876 | (autoload (quote gs-load-image) "gs" "\ | 12935 | (autoload 'gs-load-image "gs" "\ |
| 12877 | Load a PS image for display on FRAME. | 12936 | Load a PS image for display on FRAME. |
| 12878 | SPEC is an image specification, IMG-HEIGHT and IMG-WIDTH are width | 12937 | SPEC is an image specification, IMG-HEIGHT and IMG-WIDTH are width |
| 12879 | and height of the image in pixels. WINDOW-AND-PIXMAP-ID is a string of | 12938 | and height of the image in pixels. WINDOW-AND-PIXMAP-ID is a string of |
| @@ -12883,11 +12942,11 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 12883 | 12942 | ||
| 12884 | ;;;*** | 12943 | ;;;*** |
| 12885 | 12944 | ||
| 12886 | ;;;### (autoloads (gdb-script-mode jdb pdb perldb xdb dbx sdb gdb) | 12945 | ;;;### (autoloads (gdb-script-mode jdb pdb perldb xdb dbx sdb gud-gdb) |
| 12887 | ;;;;;; "gud" "progmodes/gud.el" (18104 24766)) | 12946 | ;;;;;; "gud" "progmodes/gud.el" (18214 4763)) |
| 12888 | ;;; Generated autoloads from progmodes/gud.el | 12947 | ;;; Generated autoloads from progmodes/gud.el |
| 12889 | 12948 | ||
| 12890 | (autoload (quote gdb) "gud" "\ | 12949 | (autoload 'gud-gdb "gud" "\ |
| 12891 | Run gdb on program FILE in buffer *gud-FILE*. | 12950 | Run gdb on program FILE in buffer *gud-FILE*. |
| 12892 | The directory containing FILE becomes the initial working | 12951 | The directory containing FILE becomes the initial working |
| 12893 | directory and source-file directory for your debugger. By | 12952 | directory and source-file directory for your debugger. By |
| @@ -12903,21 +12962,21 @@ session. | |||
| 12903 | 12962 | ||
| 12904 | \(fn COMMAND-LINE)" t nil) | 12963 | \(fn COMMAND-LINE)" t nil) |
| 12905 | 12964 | ||
| 12906 | (autoload (quote sdb) "gud" "\ | 12965 | (autoload 'sdb "gud" "\ |
| 12907 | Run sdb on program FILE in buffer *gud-FILE*. | 12966 | Run sdb on program FILE in buffer *gud-FILE*. |
| 12908 | The directory containing FILE becomes the initial working directory | 12967 | The directory containing FILE becomes the initial working directory |
| 12909 | and source-file directory for your debugger. | 12968 | and source-file directory for your debugger. |
| 12910 | 12969 | ||
| 12911 | \(fn COMMAND-LINE)" t nil) | 12970 | \(fn COMMAND-LINE)" t nil) |
| 12912 | 12971 | ||
| 12913 | (autoload (quote dbx) "gud" "\ | 12972 | (autoload 'dbx "gud" "\ |
| 12914 | Run dbx on program FILE in buffer *gud-FILE*. | 12973 | Run dbx on program FILE in buffer *gud-FILE*. |
| 12915 | The directory containing FILE becomes the initial working directory | 12974 | The directory containing FILE becomes the initial working directory |
| 12916 | and source-file directory for your debugger. | 12975 | and source-file directory for your debugger. |
| 12917 | 12976 | ||
| 12918 | \(fn COMMAND-LINE)" t nil) | 12977 | \(fn COMMAND-LINE)" t nil) |
| 12919 | 12978 | ||
| 12920 | (autoload (quote xdb) "gud" "\ | 12979 | (autoload 'xdb "gud" "\ |
| 12921 | Run xdb on program FILE in buffer *gud-FILE*. | 12980 | Run xdb on program FILE in buffer *gud-FILE*. |
| 12922 | The directory containing FILE becomes the initial working directory | 12981 | The directory containing FILE becomes the initial working directory |
| 12923 | and source-file directory for your debugger. | 12982 | and source-file directory for your debugger. |
| @@ -12927,21 +12986,21 @@ directories if your program contains sources from more than one directory. | |||
| 12927 | 12986 | ||
| 12928 | \(fn COMMAND-LINE)" t nil) | 12987 | \(fn COMMAND-LINE)" t nil) |
| 12929 | 12988 | ||
| 12930 | (autoload (quote perldb) "gud" "\ | 12989 | (autoload 'perldb "gud" "\ |
| 12931 | Run perldb on program FILE in buffer *gud-FILE*. | 12990 | Run perldb on program FILE in buffer *gud-FILE*. |
| 12932 | The directory containing FILE becomes the initial working directory | 12991 | The directory containing FILE becomes the initial working directory |
| 12933 | and source-file directory for your debugger. | 12992 | and source-file directory for your debugger. |
| 12934 | 12993 | ||
| 12935 | \(fn COMMAND-LINE)" t nil) | 12994 | \(fn COMMAND-LINE)" t nil) |
| 12936 | 12995 | ||
| 12937 | (autoload (quote pdb) "gud" "\ | 12996 | (autoload 'pdb "gud" "\ |
| 12938 | Run pdb on program FILE in buffer `*gud-FILE*'. | 12997 | Run pdb on program FILE in buffer `*gud-FILE*'. |
| 12939 | The directory containing FILE becomes the initial working directory | 12998 | The directory containing FILE becomes the initial working directory |
| 12940 | and source-file directory for your debugger. | 12999 | and source-file directory for your debugger. |
| 12941 | 13000 | ||
| 12942 | \(fn COMMAND-LINE)" t nil) | 13001 | \(fn COMMAND-LINE)" t nil) |
| 12943 | 13002 | ||
| 12944 | (autoload (quote jdb) "gud" "\ | 13003 | (autoload 'jdb "gud" "\ |
| 12945 | Run jdb with command line COMMAND-LINE in a buffer. | 13004 | Run jdb with command line COMMAND-LINE in a buffer. |
| 12946 | The buffer is named \"*gud*\" if no initial class is given or | 13005 | The buffer is named \"*gud*\" if no initial class is given or |
| 12947 | \"*gud-<initial-class-basename>*\" if there is. If the \"-classpath\" | 13006 | \"*gud-<initial-class-basename>*\" if there is. If the \"-classpath\" |
| @@ -12958,20 +13017,20 @@ gud, see `gud-mode'. | |||
| 12958 | \(fn COMMAND-LINE)" t nil) | 13017 | \(fn COMMAND-LINE)" t nil) |
| 12959 | (add-hook 'same-window-regexps "\\*gud-.*\\*\\(\\|<[0-9]+>\\)") | 13018 | (add-hook 'same-window-regexps "\\*gud-.*\\*\\(\\|<[0-9]+>\\)") |
| 12960 | 13019 | ||
| 12961 | (add-to-list (quote auto-mode-alist) (quote ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode))) | 13020 | (add-to-list 'auto-mode-alist '("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode)) |
| 12962 | 13021 | ||
| 12963 | (autoload (quote gdb-script-mode) "gud" "\ | 13022 | (autoload 'gdb-script-mode "gud" "\ |
| 12964 | Major mode for editing GDB scripts | 13023 | Major mode for editing GDB scripts |
| 12965 | 13024 | ||
| 12966 | \(fn)" t nil) | 13025 | \(fn)" t nil) |
| 12967 | 13026 | ||
| 12968 | ;;;*** | 13027 | ;;;*** |
| 12969 | 13028 | ||
| 12970 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (18104 | 13029 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (18202 |
| 12971 | ;;;;;; 24761)) | 13030 | ;;;;;; 4002)) |
| 12972 | ;;; Generated autoloads from play/handwrite.el | 13031 | ;;; Generated autoloads from play/handwrite.el |
| 12973 | 13032 | ||
| 12974 | (autoload (quote handwrite) "handwrite" "\ | 13033 | (autoload 'handwrite "handwrite" "\ |
| 12975 | Turns the buffer into a \"handwritten\" document. | 13034 | Turns the buffer into a \"handwritten\" document. |
| 12976 | The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt' | 13035 | The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt' |
| 12977 | and `handwrite-13pt' set up for various sizes of output. | 13036 | and `handwrite-13pt' set up for various sizes of output. |
| @@ -12986,15 +13045,15 @@ Variables: handwrite-linespace (default 12) | |||
| 12986 | ;;;*** | 13045 | ;;;*** |
| 12987 | 13046 | ||
| 12988 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" | 13047 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" |
| 12989 | ;;;;;; (17754 24255)) | 13048 | ;;;;;; (17822 31019)) |
| 12990 | ;;; Generated autoloads from play/hanoi.el | 13049 | ;;; Generated autoloads from play/hanoi.el |
| 12991 | 13050 | ||
| 12992 | (autoload (quote hanoi) "hanoi" "\ | 13051 | (autoload 'hanoi "hanoi" "\ |
| 12993 | Towers of Hanoi diversion. Use NRINGS rings. | 13052 | Towers of Hanoi diversion. Use NRINGS rings. |
| 12994 | 13053 | ||
| 12995 | \(fn NRINGS)" t nil) | 13054 | \(fn NRINGS)" t nil) |
| 12996 | 13055 | ||
| 12997 | (autoload (quote hanoi-unix) "hanoi" "\ | 13056 | (autoload 'hanoi-unix "hanoi" "\ |
| 12998 | Towers of Hanoi, UNIX doomsday version. | 13057 | Towers of Hanoi, UNIX doomsday version. |
| 12999 | Displays 32-ring towers that have been progressing at one move per | 13058 | Displays 32-ring towers that have been progressing at one move per |
| 13000 | second since 1970-01-01 00:00:00 GMT. | 13059 | second since 1970-01-01 00:00:00 GMT. |
| @@ -13003,7 +13062,7 @@ Repent before ring 31 moves. | |||
| 13003 | 13062 | ||
| 13004 | \(fn)" t nil) | 13063 | \(fn)" t nil) |
| 13005 | 13064 | ||
| 13006 | (autoload (quote hanoi-unix-64) "hanoi" "\ | 13065 | (autoload 'hanoi-unix-64 "hanoi" "\ |
| 13007 | Like hanoi-unix, but pretend to have a 64-bit clock. | 13066 | Like hanoi-unix, but pretend to have a 64-bit clock. |
| 13008 | This is, necessarily (as of Emacs 20.3), a crock. When the | 13067 | This is, necessarily (as of Emacs 20.3), a crock. When the |
| 13009 | current-time interface is made s2G-compliant, hanoi.el will need | 13068 | current-time interface is made s2G-compliant, hanoi.el will need |
| @@ -13013,13 +13072,57 @@ to be updated. | |||
| 13013 | 13072 | ||
| 13014 | ;;;*** | 13073 | ;;;*** |
| 13015 | 13074 | ||
| 13075 | ;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment | ||
| 13076 | ;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment) | ||
| 13077 | ;;;;;; "hashcash" "gnus/hashcash.el" (18212 21477)) | ||
| 13078 | ;;; Generated autoloads from gnus/hashcash.el | ||
| 13079 | |||
| 13080 | (autoload 'hashcash-insert-payment "hashcash" "\ | ||
| 13081 | Insert X-Payment and X-Hashcash headers with a payment for ARG | ||
| 13082 | |||
| 13083 | \(fn ARG)" t nil) | ||
| 13084 | |||
| 13085 | (autoload 'hashcash-insert-payment-async "hashcash" "\ | ||
| 13086 | Insert X-Payment and X-Hashcash headers with a payment for ARG | ||
| 13087 | Only start calculation. Results are inserted when ready. | ||
| 13088 | |||
| 13089 | \(fn ARG)" t nil) | ||
| 13090 | |||
| 13091 | (autoload 'hashcash-verify-payment "hashcash" "\ | ||
| 13092 | Verify a hashcash payment | ||
| 13093 | |||
| 13094 | \(fn TOKEN &optional RESOURCE AMOUNT)" nil nil) | ||
| 13095 | |||
| 13096 | (autoload 'mail-add-payment "hashcash" "\ | ||
| 13097 | Add X-Payment: and X-Hashcash: headers with a hashcash payment | ||
| 13098 | for each recipient address. Prefix arg sets default payment temporarily. | ||
| 13099 | Set ASYNC to t to start asynchronous calculation. (See | ||
| 13100 | `mail-add-payment-async'). | ||
| 13101 | |||
| 13102 | \(fn &optional ARG ASYNC)" t nil) | ||
| 13103 | |||
| 13104 | (autoload 'mail-add-payment-async "hashcash" "\ | ||
| 13105 | Add X-Payment: and X-Hashcash: headers with a hashcash payment | ||
| 13106 | for each recipient address. Prefix arg sets default payment temporarily. | ||
| 13107 | Calculation is asynchronous. | ||
| 13108 | |||
| 13109 | \(fn &optional ARG)" t nil) | ||
| 13110 | |||
| 13111 | (autoload 'mail-check-payment "hashcash" "\ | ||
| 13112 | Look for a valid X-Payment: or X-Hashcash: header. | ||
| 13113 | Prefix arg sets default accept amount temporarily. | ||
| 13114 | |||
| 13115 | \(fn &optional ARG)" t nil) | ||
| 13116 | |||
| 13117 | ;;;*** | ||
| 13118 | |||
| 13016 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region | 13119 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region |
| 13017 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer | 13120 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer |
| 13018 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string | 13121 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string |
| 13019 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (18104 24737)) | 13122 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (18088 55084)) |
| 13020 | ;;; Generated autoloads from help-at-pt.el | 13123 | ;;; Generated autoloads from help-at-pt.el |
| 13021 | 13124 | ||
| 13022 | (autoload (quote help-at-pt-string) "help-at-pt" "\ | 13125 | (autoload 'help-at-pt-string "help-at-pt" "\ |
| 13023 | Return the help-echo string at point. | 13126 | Return the help-echo string at point. |
| 13024 | Normally, the string produced by the `help-echo' text or overlay | 13127 | Normally, the string produced by the `help-echo' text or overlay |
| 13025 | property, or nil, is returned. | 13128 | property, or nil, is returned. |
| @@ -13029,7 +13132,7 @@ can also be t, if that is the value of the `kbd-help' property. | |||
| 13029 | 13132 | ||
| 13030 | \(fn &optional KBD)" nil nil) | 13133 | \(fn &optional KBD)" nil nil) |
| 13031 | 13134 | ||
| 13032 | (autoload (quote help-at-pt-kbd-string) "help-at-pt" "\ | 13135 | (autoload 'help-at-pt-kbd-string "help-at-pt" "\ |
| 13033 | Return the keyboard help string at point. | 13136 | Return the keyboard help string at point. |
| 13034 | If the `kbd-help' text or overlay property at point produces a | 13137 | If the `kbd-help' text or overlay property at point produces a |
| 13035 | string, return it. Otherwise, use the `help-echo' property. If | 13138 | string, return it. Otherwise, use the `help-echo' property. If |
| @@ -13037,7 +13140,7 @@ this produces no string either, return nil. | |||
| 13037 | 13140 | ||
| 13038 | \(fn)" nil nil) | 13141 | \(fn)" nil nil) |
| 13039 | 13142 | ||
| 13040 | (autoload (quote display-local-help) "help-at-pt" "\ | 13143 | (autoload 'display-local-help "help-at-pt" "\ |
| 13041 | Display local help in the echo area. | 13144 | Display local help in the echo area. |
| 13042 | This displays a short help message, namely the string produced by | 13145 | This displays a short help message, namely the string produced by |
| 13043 | the `kbd-help' property at point. If `kbd-help' does not produce | 13146 | the `kbd-help' property at point. If `kbd-help' does not produce |
| @@ -13050,19 +13153,19 @@ mainly meant for use from Lisp. | |||
| 13050 | 13153 | ||
| 13051 | \(fn &optional ARG)" t nil) | 13154 | \(fn &optional ARG)" t nil) |
| 13052 | 13155 | ||
| 13053 | (autoload (quote help-at-pt-cancel-timer) "help-at-pt" "\ | 13156 | (autoload 'help-at-pt-cancel-timer "help-at-pt" "\ |
| 13054 | Cancel any timer set by `help-at-pt-set-timer'. | 13157 | Cancel any timer set by `help-at-pt-set-timer'. |
| 13055 | This disables `help-at-pt-display-when-idle'. | 13158 | This disables `help-at-pt-display-when-idle'. |
| 13056 | 13159 | ||
| 13057 | \(fn)" t nil) | 13160 | \(fn)" t nil) |
| 13058 | 13161 | ||
| 13059 | (autoload (quote help-at-pt-set-timer) "help-at-pt" "\ | 13162 | (autoload 'help-at-pt-set-timer "help-at-pt" "\ |
| 13060 | Enable `help-at-pt-display-when-idle'. | 13163 | Enable `help-at-pt-display-when-idle'. |
| 13061 | This is done by setting a timer, if none is currently active. | 13164 | This is done by setting a timer, if none is currently active. |
| 13062 | 13165 | ||
| 13063 | \(fn)" t nil) | 13166 | \(fn)" t nil) |
| 13064 | 13167 | ||
| 13065 | (defvar help-at-pt-display-when-idle (quote never) "\ | 13168 | (defvar help-at-pt-display-when-idle 'never "\ |
| 13066 | *Automatically show local help on point-over. | 13169 | *Automatically show local help on point-over. |
| 13067 | If the value is t, the string obtained from any `kbd-help' or | 13170 | If the value is t, the string obtained from any `kbd-help' or |
| 13068 | `help-echo' property at point is automatically printed in the | 13171 | `help-echo' property at point is automatically printed in the |
| @@ -13089,9 +13192,9 @@ Thus, Custom distinguishes between a nil value and other values | |||
| 13089 | that disable the feature, which Custom identifies with `never'. | 13192 | that disable the feature, which Custom identifies with `never'. |
| 13090 | The default is `never'.") | 13193 | The default is `never'.") |
| 13091 | 13194 | ||
| 13092 | (custom-autoload (quote help-at-pt-display-when-idle) "help-at-pt" nil) | 13195 | (custom-autoload 'help-at-pt-display-when-idle "help-at-pt" nil) |
| 13093 | 13196 | ||
| 13094 | (autoload (quote scan-buf-move-to-region) "help-at-pt" "\ | 13197 | (autoload 'scan-buf-move-to-region "help-at-pt" "\ |
| 13095 | Go to the start of the next region with non-nil PROP property. | 13198 | Go to the start of the next region with non-nil PROP property. |
| 13096 | Then run HOOK, which should be a quoted symbol that is a normal | 13199 | Then run HOOK, which should be a quoted symbol that is a normal |
| 13097 | hook variable, or an expression evaluating to such a symbol. | 13200 | hook variable, or an expression evaluating to such a symbol. |
| @@ -13110,7 +13213,7 @@ in the error message. Point is not moved and HOOK is not run. | |||
| 13110 | 13213 | ||
| 13111 | \(fn PROP &optional ARG HOOK)" nil nil) | 13214 | \(fn PROP &optional ARG HOOK)" nil nil) |
| 13112 | 13215 | ||
| 13113 | (autoload (quote scan-buf-next-region) "help-at-pt" "\ | 13216 | (autoload 'scan-buf-next-region "help-at-pt" "\ |
| 13114 | Go to the start of the next region with non-nil help-echo. | 13217 | Go to the start of the next region with non-nil help-echo. |
| 13115 | Print the help found there using `display-local-help'. Adjacent | 13218 | Print the help found there using `display-local-help'. Adjacent |
| 13116 | areas with different non-nil help-echo properties are considered | 13219 | areas with different non-nil help-echo properties are considered |
| @@ -13132,7 +13235,7 @@ rarely happens in practice. | |||
| 13132 | 13235 | ||
| 13133 | \(fn &optional ARG)" t nil) | 13236 | \(fn &optional ARG)" t nil) |
| 13134 | 13237 | ||
| 13135 | (autoload (quote scan-buf-previous-region) "help-at-pt" "\ | 13238 | (autoload 'scan-buf-previous-region "help-at-pt" "\ |
| 13136 | Go to the start of the previous region with non-nil help-echo. | 13239 | Go to the start of the previous region with non-nil help-echo. |
| 13137 | Print the help found there using `display-local-help'. Adjacent | 13240 | Print the help found there using `display-local-help'. Adjacent |
| 13138 | areas with different non-nil help-echo properties are considered | 13241 | areas with different non-nil help-echo properties are considered |
| @@ -13146,38 +13249,38 @@ different regions. With numeric argument ARG, behaves like | |||
| 13146 | ;;;### (autoloads (describe-categories describe-syntax describe-variable | 13249 | ;;;### (autoloads (describe-categories describe-syntax describe-variable |
| 13147 | ;;;;;; variable-at-point describe-function-1 describe-simplify-lib-file-name | 13250 | ;;;;;; variable-at-point describe-function-1 describe-simplify-lib-file-name |
| 13148 | ;;;;;; help-C-file-name describe-function) "help-fns" "help-fns.el" | 13251 | ;;;;;; help-C-file-name describe-function) "help-fns" "help-fns.el" |
| 13149 | ;;;;;; (18104 24737)) | 13252 | ;;;;;; (18201 33325)) |
| 13150 | ;;; Generated autoloads from help-fns.el | 13253 | ;;; Generated autoloads from help-fns.el |
| 13151 | 13254 | ||
| 13152 | (autoload (quote describe-function) "help-fns" "\ | 13255 | (autoload 'describe-function "help-fns" "\ |
| 13153 | Display the full documentation of FUNCTION (a symbol). | 13256 | Display the full documentation of FUNCTION (a symbol). |
| 13154 | 13257 | ||
| 13155 | \(fn FUNCTION)" t nil) | 13258 | \(fn FUNCTION)" t nil) |
| 13156 | 13259 | ||
| 13157 | (autoload (quote help-C-file-name) "help-fns" "\ | 13260 | (autoload 'help-C-file-name "help-fns" "\ |
| 13158 | Return the name of the C file where SUBR-OR-VAR is defined. | 13261 | Return the name of the C file where SUBR-OR-VAR is defined. |
| 13159 | KIND should be `var' for a variable or `subr' for a subroutine. | 13262 | KIND should be `var' for a variable or `subr' for a subroutine. |
| 13160 | 13263 | ||
| 13161 | \(fn SUBR-OR-VAR KIND)" nil nil) | 13264 | \(fn SUBR-OR-VAR KIND)" nil nil) |
| 13162 | 13265 | ||
| 13163 | (autoload (quote describe-simplify-lib-file-name) "help-fns" "\ | 13266 | (autoload 'describe-simplify-lib-file-name "help-fns" "\ |
| 13164 | Simplify a library name FILE to a relative name, and make it a source file. | 13267 | Simplify a library name FILE to a relative name, and make it a source file. |
| 13165 | 13268 | ||
| 13166 | \(fn FILE)" nil nil) | 13269 | \(fn FILE)" nil nil) |
| 13167 | 13270 | ||
| 13168 | (autoload (quote describe-function-1) "help-fns" "\ | 13271 | (autoload 'describe-function-1 "help-fns" "\ |
| 13169 | Not documented | 13272 | Not documented |
| 13170 | 13273 | ||
| 13171 | \(fn FUNCTION)" nil nil) | 13274 | \(fn FUNCTION)" nil nil) |
| 13172 | 13275 | ||
| 13173 | (autoload (quote variable-at-point) "help-fns" "\ | 13276 | (autoload 'variable-at-point "help-fns" "\ |
| 13174 | Return the bound variable symbol found at or before point. | 13277 | Return the bound variable symbol found at or before point. |
| 13175 | Return 0 if there is no such symbol. | 13278 | Return 0 if there is no such symbol. |
| 13176 | If ANY-SYMBOL is non-nil, don't insist the symbol be bound. | 13279 | If ANY-SYMBOL is non-nil, don't insist the symbol be bound. |
| 13177 | 13280 | ||
| 13178 | \(fn &optional ANY-SYMBOL)" nil nil) | 13281 | \(fn &optional ANY-SYMBOL)" nil nil) |
| 13179 | 13282 | ||
| 13180 | (autoload (quote describe-variable) "help-fns" "\ | 13283 | (autoload 'describe-variable "help-fns" "\ |
| 13181 | Display the full documentation of VARIABLE (a symbol). | 13284 | Display the full documentation of VARIABLE (a symbol). |
| 13182 | Returns the documentation as a string, also. | 13285 | Returns the documentation as a string, also. |
| 13183 | If VARIABLE has a buffer-local value in BUFFER or FRAME | 13286 | If VARIABLE has a buffer-local value in BUFFER or FRAME |
| @@ -13186,14 +13289,14 @@ it is displayed along with the global value. | |||
| 13186 | 13289 | ||
| 13187 | \(fn VARIABLE &optional BUFFER FRAME)" t nil) | 13290 | \(fn VARIABLE &optional BUFFER FRAME)" t nil) |
| 13188 | 13291 | ||
| 13189 | (autoload (quote describe-syntax) "help-fns" "\ | 13292 | (autoload 'describe-syntax "help-fns" "\ |
| 13190 | Describe the syntax specifications in the syntax table of BUFFER. | 13293 | Describe the syntax specifications in the syntax table of BUFFER. |
| 13191 | The descriptions are inserted in a help buffer, which is then displayed. | 13294 | The descriptions are inserted in a help buffer, which is then displayed. |
| 13192 | BUFFER defaults to the current buffer. | 13295 | BUFFER defaults to the current buffer. |
| 13193 | 13296 | ||
| 13194 | \(fn &optional BUFFER)" t nil) | 13297 | \(fn &optional BUFFER)" t nil) |
| 13195 | 13298 | ||
| 13196 | (autoload (quote describe-categories) "help-fns" "\ | 13299 | (autoload 'describe-categories "help-fns" "\ |
| 13197 | Describe the category specifications in the current category table. | 13300 | Describe the category specifications in the current category table. |
| 13198 | The descriptions are inserted in a buffer, which is then displayed. | 13301 | The descriptions are inserted in a buffer, which is then displayed. |
| 13199 | If BUFFER is non-nil, then describe BUFFER's category table instead. | 13302 | If BUFFER is non-nil, then describe BUFFER's category table instead. |
| @@ -13204,7 +13307,7 @@ BUFFER should be a buffer or a buffer name. | |||
| 13204 | ;;;*** | 13307 | ;;;*** |
| 13205 | 13308 | ||
| 13206 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" | 13309 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" |
| 13207 | ;;;;;; (18104 24737)) | 13310 | ;;;;;; (18088 55084)) |
| 13208 | ;;; Generated autoloads from help-macro.el | 13311 | ;;; Generated autoloads from help-macro.el |
| 13209 | 13312 | ||
| 13210 | (defvar three-step-help nil "\ | 13313 | (defvar three-step-help nil "\ |
| @@ -13214,16 +13317,16 @@ and window listing and describing the options. | |||
| 13214 | A value of nil means skip the middle step, so that | 13317 | A value of nil means skip the middle step, so that |
| 13215 | \\[help-command] \\[help-command] gives the window that lists the options.") | 13318 | \\[help-command] \\[help-command] gives the window that lists the options.") |
| 13216 | 13319 | ||
| 13217 | (custom-autoload (quote three-step-help) "help-macro" t) | 13320 | (custom-autoload 'three-step-help "help-macro" t) |
| 13218 | 13321 | ||
| 13219 | ;;;*** | 13322 | ;;;*** |
| 13220 | 13323 | ||
| 13221 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button | 13324 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button |
| 13222 | ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup | 13325 | ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup |
| 13223 | ;;;;;; help-mode) "help-mode" "help-mode.el" (18104 24737)) | 13326 | ;;;;;; help-mode) "help-mode" "help-mode.el" (18120 34749)) |
| 13224 | ;;; Generated autoloads from help-mode.el | 13327 | ;;; Generated autoloads from help-mode.el |
| 13225 | 13328 | ||
| 13226 | (autoload (quote help-mode) "help-mode" "\ | 13329 | (autoload 'help-mode "help-mode" "\ |
| 13227 | Major mode for viewing help text and navigating references in it. | 13330 | Major mode for viewing help text and navigating references in it. |
| 13228 | Entry to this mode runs the normal hook `help-mode-hook'. | 13331 | Entry to this mode runs the normal hook `help-mode-hook'. |
| 13229 | Commands: | 13332 | Commands: |
| @@ -13231,17 +13334,17 @@ Commands: | |||
| 13231 | 13334 | ||
| 13232 | \(fn)" t nil) | 13335 | \(fn)" t nil) |
| 13233 | 13336 | ||
| 13234 | (autoload (quote help-mode-setup) "help-mode" "\ | 13337 | (autoload 'help-mode-setup "help-mode" "\ |
| 13235 | Not documented | 13338 | Not documented |
| 13236 | 13339 | ||
| 13237 | \(fn)" nil nil) | 13340 | \(fn)" nil nil) |
| 13238 | 13341 | ||
| 13239 | (autoload (quote help-mode-finish) "help-mode" "\ | 13342 | (autoload 'help-mode-finish "help-mode" "\ |
| 13240 | Not documented | 13343 | Not documented |
| 13241 | 13344 | ||
| 13242 | \(fn)" nil nil) | 13345 | \(fn)" nil nil) |
| 13243 | 13346 | ||
| 13244 | (autoload (quote help-setup-xref) "help-mode" "\ | 13347 | (autoload 'help-setup-xref "help-mode" "\ |
| 13245 | Invoked from commands using the \"*Help*\" buffer to install some xref info. | 13348 | Invoked from commands using the \"*Help*\" buffer to install some xref info. |
| 13246 | 13349 | ||
| 13247 | ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help | 13350 | ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help |
| @@ -13255,7 +13358,7 @@ restore it properly when going back. | |||
| 13255 | 13358 | ||
| 13256 | \(fn ITEM INTERACTIVE-P)" nil nil) | 13359 | \(fn ITEM INTERACTIVE-P)" nil nil) |
| 13257 | 13360 | ||
| 13258 | (autoload (quote help-make-xrefs) "help-mode" "\ | 13361 | (autoload 'help-make-xrefs "help-mode" "\ |
| 13259 | Parse and hyperlink documentation cross-references in the given BUFFER. | 13362 | Parse and hyperlink documentation cross-references in the given BUFFER. |
| 13260 | 13363 | ||
| 13261 | Find cross-reference information in a buffer and activate such cross | 13364 | Find cross-reference information in a buffer and activate such cross |
| @@ -13278,7 +13381,7 @@ that. | |||
| 13278 | 13381 | ||
| 13279 | \(fn &optional BUFFER)" t nil) | 13382 | \(fn &optional BUFFER)" t nil) |
| 13280 | 13383 | ||
| 13281 | (autoload (quote help-xref-button) "help-mode" "\ | 13384 | (autoload 'help-xref-button "help-mode" "\ |
| 13282 | Make a hyperlink for cross-reference text previously matched. | 13385 | Make a hyperlink for cross-reference text previously matched. |
| 13283 | MATCH-NUMBER is the subexpression of interest in the last matched | 13386 | MATCH-NUMBER is the subexpression of interest in the last matched |
| 13284 | regexp. TYPE is the type of button to use. Any remaining arguments are | 13387 | regexp. TYPE is the type of button to use. Any remaining arguments are |
| @@ -13287,7 +13390,7 @@ See `help-make-xrefs'. | |||
| 13287 | 13390 | ||
| 13288 | \(fn MATCH-NUMBER TYPE &rest ARGS)" nil nil) | 13391 | \(fn MATCH-NUMBER TYPE &rest ARGS)" nil nil) |
| 13289 | 13392 | ||
| 13290 | (autoload (quote help-insert-xref-button) "help-mode" "\ | 13393 | (autoload 'help-insert-xref-button "help-mode" "\ |
| 13291 | Insert STRING and make a hyperlink from cross-reference text on it. | 13394 | Insert STRING and make a hyperlink from cross-reference text on it. |
| 13292 | TYPE is the type of button to use. Any remaining arguments are passed | 13395 | TYPE is the type of button to use. Any remaining arguments are passed |
| 13293 | to the button's help-function when it is invoked. | 13396 | to the button's help-function when it is invoked. |
| @@ -13295,7 +13398,7 @@ See `help-make-xrefs'. | |||
| 13295 | 13398 | ||
| 13296 | \(fn STRING TYPE &rest ARGS)" nil nil) | 13399 | \(fn STRING TYPE &rest ARGS)" nil nil) |
| 13297 | 13400 | ||
| 13298 | (autoload (quote help-xref-on-pp) "help-mode" "\ | 13401 | (autoload 'help-xref-on-pp "help-mode" "\ |
| 13299 | Add xrefs for symbols in `pp's output between FROM and TO. | 13402 | Add xrefs for symbols in `pp's output between FROM and TO. |
| 13300 | 13403 | ||
| 13301 | \(fn FROM TO)" nil nil) | 13404 | \(fn FROM TO)" nil nil) |
| @@ -13303,15 +13406,15 @@ Add xrefs for symbols in `pp's output between FROM and TO. | |||
| 13303 | ;;;*** | 13406 | ;;;*** |
| 13304 | 13407 | ||
| 13305 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" | 13408 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" |
| 13306 | ;;;;;; "emacs-lisp/helper.el" (18104 24748)) | 13409 | ;;;;;; "emacs-lisp/helper.el" (18088 55096)) |
| 13307 | ;;; Generated autoloads from emacs-lisp/helper.el | 13410 | ;;; Generated autoloads from emacs-lisp/helper.el |
| 13308 | 13411 | ||
| 13309 | (autoload (quote Helper-describe-bindings) "helper" "\ | 13412 | (autoload 'Helper-describe-bindings "helper" "\ |
| 13310 | Describe local key bindings of current mode. | 13413 | Describe local key bindings of current mode. |
| 13311 | 13414 | ||
| 13312 | \(fn)" t nil) | 13415 | \(fn)" t nil) |
| 13313 | 13416 | ||
| 13314 | (autoload (quote Helper-help) "helper" "\ | 13417 | (autoload 'Helper-help "helper" "\ |
| 13315 | Provide help for current mode. | 13418 | Provide help for current mode. |
| 13316 | 13419 | ||
| 13317 | \(fn)" t nil) | 13420 | \(fn)" t nil) |
| @@ -13319,10 +13422,10 @@ Provide help for current mode. | |||
| 13319 | ;;;*** | 13422 | ;;;*** |
| 13320 | 13423 | ||
| 13321 | ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" | 13424 | ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" |
| 13322 | ;;;;;; "hexl.el" (18104 24737)) | 13425 | ;;;;;; "hexl.el" (18211 32385)) |
| 13323 | ;;; Generated autoloads from hexl.el | 13426 | ;;; Generated autoloads from hexl.el |
| 13324 | 13427 | ||
| 13325 | (autoload (quote hexl-mode) "hexl" "\ | 13428 | (autoload 'hexl-mode "hexl" "\ |
| 13326 | \\<hexl-mode-map>A mode for editing binary files in hex dump format. | 13429 | \\<hexl-mode-map>A mode for editing binary files in hex dump format. |
| 13327 | This is not an ordinary major mode; it alters some aspects | 13430 | This is not an ordinary major mode; it alters some aspects |
| 13328 | of the current mode's behavior, but not all; also, you can exit | 13431 | of the current mode's behavior, but not all; also, you can exit |
| @@ -13398,14 +13501,14 @@ You can use \\[hexl-find-file] to visit a file in Hexl mode. | |||
| 13398 | 13501 | ||
| 13399 | \(fn &optional ARG)" t nil) | 13502 | \(fn &optional ARG)" t nil) |
| 13400 | 13503 | ||
| 13401 | (autoload (quote hexl-find-file) "hexl" "\ | 13504 | (autoload 'hexl-find-file "hexl" "\ |
| 13402 | Edit file FILENAME as a binary file in hex dump format. | 13505 | Edit file FILENAME as a binary file in hex dump format. |
| 13403 | Switch to a buffer visiting file FILENAME, creating one if none exists, | 13506 | Switch to a buffer visiting file FILENAME, creating one if none exists, |
| 13404 | and edit the file in `hexl-mode'. | 13507 | and edit the file in `hexl-mode'. |
| 13405 | 13508 | ||
| 13406 | \(fn FILENAME)" t nil) | 13509 | \(fn FILENAME)" t nil) |
| 13407 | 13510 | ||
| 13408 | (autoload (quote hexlify-buffer) "hexl" "\ | 13511 | (autoload 'hexlify-buffer "hexl" "\ |
| 13409 | Convert a binary buffer to hexl format. | 13512 | Convert a binary buffer to hexl format. |
| 13410 | This discards the buffer's undo information. | 13513 | This discards the buffer's undo information. |
| 13411 | 13514 | ||
| @@ -13416,10 +13519,10 @@ This discards the buffer's undo information. | |||
| 13416 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer | 13519 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer |
| 13417 | ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer | 13520 | ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer |
| 13418 | ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" | 13521 | ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" |
| 13419 | ;;;;;; (18104 24737)) | 13522 | ;;;;;; (18169 11931)) |
| 13420 | ;;; Generated autoloads from hi-lock.el | 13523 | ;;; Generated autoloads from hi-lock.el |
| 13421 | 13524 | ||
| 13422 | (autoload (quote hi-lock-mode) "hi-lock" "\ | 13525 | (autoload 'hi-lock-mode "hi-lock" "\ |
| 13423 | Toggle minor mode for interactively adding font-lock highlighting patterns. | 13526 | Toggle minor mode for interactively adding font-lock highlighting patterns. |
| 13424 | 13527 | ||
| 13425 | If ARG positive, turn hi-lock on. Issuing a hi-lock command will also | 13528 | If ARG positive, turn hi-lock on. Issuing a hi-lock command will also |
| @@ -13447,7 +13550,7 @@ called interactively, are: | |||
| 13447 | Write active REGEXPs into buffer as comments (if possible). They may | 13550 | Write active REGEXPs into buffer as comments (if possible). They may |
| 13448 | be read the next time file is loaded or when the \\[hi-lock-find-patterns] command | 13551 | be read the next time file is loaded or when the \\[hi-lock-find-patterns] command |
| 13449 | is issued. The inserted regexps are in the form of font lock keywords. | 13552 | is issued. The inserted regexps are in the form of font lock keywords. |
| 13450 | (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns], | 13553 | (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns], |
| 13451 | any valid `font-lock-keywords' form is acceptable. When a file is | 13554 | any valid `font-lock-keywords' form is acceptable. When a file is |
| 13452 | loaded the patterns are read if `hi-lock-file-patterns-policy is | 13555 | loaded the patterns are read if `hi-lock-file-patterns-policy is |
| 13453 | 'ask and the user responds y to the prompt, or if | 13556 | 'ask and the user responds y to the prompt, or if |
| @@ -13477,9 +13580,9 @@ Setting this variable directly does not take effect; | |||
| 13477 | either customize it (see the info node `Easy Customization') | 13580 | either customize it (see the info node `Easy Customization') |
| 13478 | or call the function `global-hi-lock-mode'.") | 13581 | or call the function `global-hi-lock-mode'.") |
| 13479 | 13582 | ||
| 13480 | (custom-autoload (quote global-hi-lock-mode) "hi-lock" nil) | 13583 | (custom-autoload 'global-hi-lock-mode "hi-lock" nil) |
| 13481 | 13584 | ||
| 13482 | (autoload (quote global-hi-lock-mode) "hi-lock" "\ | 13585 | (autoload 'global-hi-lock-mode "hi-lock" "\ |
| 13483 | Toggle Hi-Lock mode in every possible buffer. | 13586 | Toggle Hi-Lock mode in every possible buffer. |
| 13484 | With prefix ARG, turn Global-Hi-Lock mode on if and only if ARG is positive. | 13587 | With prefix ARG, turn Global-Hi-Lock mode on if and only if ARG is positive. |
| 13485 | Hi-Lock mode is enabled in all buffers where `turn-on-hi-lock-if-enabled' would do it. | 13588 | Hi-Lock mode is enabled in all buffers where `turn-on-hi-lock-if-enabled' would do it. |
| @@ -13487,9 +13590,9 @@ See `hi-lock-mode' for more information on Hi-Lock mode. | |||
| 13487 | 13590 | ||
| 13488 | \(fn &optional ARG)" t nil) | 13591 | \(fn &optional ARG)" t nil) |
| 13489 | 13592 | ||
| 13490 | (defalias (quote highlight-lines-matching-regexp) (quote hi-lock-line-face-buffer)) | 13593 | (defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer) |
| 13491 | 13594 | ||
| 13492 | (autoload (quote hi-lock-line-face-buffer) "hi-lock" "\ | 13595 | (autoload 'hi-lock-line-face-buffer "hi-lock" "\ |
| 13493 | Set face of all lines containing a match of REGEXP to FACE. | 13596 | Set face of all lines containing a match of REGEXP to FACE. |
| 13494 | 13597 | ||
| 13495 | Interactively, prompt for REGEXP then FACE. Buffer-local history | 13598 | Interactively, prompt for REGEXP then FACE. Buffer-local history |
| @@ -13499,9 +13602,9 @@ list maintained for regexps, global history maintained for faces. | |||
| 13499 | 13602 | ||
| 13500 | \(fn REGEXP &optional FACE)" t nil) | 13603 | \(fn REGEXP &optional FACE)" t nil) |
| 13501 | 13604 | ||
| 13502 | (defalias (quote highlight-regexp) (quote hi-lock-face-buffer)) | 13605 | (defalias 'highlight-regexp 'hi-lock-face-buffer) |
| 13503 | 13606 | ||
| 13504 | (autoload (quote hi-lock-face-buffer) "hi-lock" "\ | 13607 | (autoload 'hi-lock-face-buffer "hi-lock" "\ |
| 13505 | Set face of each match of REGEXP to FACE. | 13608 | Set face of each match of REGEXP to FACE. |
| 13506 | 13609 | ||
| 13507 | Interactively, prompt for REGEXP then FACE. Buffer-local history | 13610 | Interactively, prompt for REGEXP then FACE. Buffer-local history |
| @@ -13511,9 +13614,9 @@ list maintained for regexps, global history maintained for faces. | |||
| 13511 | 13614 | ||
| 13512 | \(fn REGEXP &optional FACE)" t nil) | 13615 | \(fn REGEXP &optional FACE)" t nil) |
| 13513 | 13616 | ||
| 13514 | (defalias (quote highlight-phrase) (quote hi-lock-face-phrase-buffer)) | 13617 | (defalias 'highlight-phrase 'hi-lock-face-phrase-buffer) |
| 13515 | 13618 | ||
| 13516 | (autoload (quote hi-lock-face-phrase-buffer) "hi-lock" "\ | 13619 | (autoload 'hi-lock-face-phrase-buffer "hi-lock" "\ |
| 13517 | Set face of each match of phrase REGEXP to FACE. | 13620 | Set face of each match of phrase REGEXP to FACE. |
| 13518 | 13621 | ||
| 13519 | Whitespace in REGEXP converted to arbitrary whitespace and initial | 13622 | Whitespace in REGEXP converted to arbitrary whitespace and initial |
| @@ -13521,9 +13624,9 @@ lower-case letters made case insensitive. | |||
| 13521 | 13624 | ||
| 13522 | \(fn REGEXP &optional FACE)" t nil) | 13625 | \(fn REGEXP &optional FACE)" t nil) |
| 13523 | 13626 | ||
| 13524 | (defalias (quote unhighlight-regexp) (quote hi-lock-unface-buffer)) | 13627 | (defalias 'unhighlight-regexp 'hi-lock-unface-buffer) |
| 13525 | 13628 | ||
| 13526 | (autoload (quote hi-lock-unface-buffer) "hi-lock" "\ | 13629 | (autoload 'hi-lock-unface-buffer "hi-lock" "\ |
| 13527 | Remove highlighting of each match to REGEXP set by hi-lock. | 13630 | Remove highlighting of each match to REGEXP set by hi-lock. |
| 13528 | 13631 | ||
| 13529 | Interactively, prompt for REGEXP. Buffer-local history of inserted | 13632 | Interactively, prompt for REGEXP. Buffer-local history of inserted |
| @@ -13534,7 +13637,7 @@ interactive functions. (See `hi-lock-interactive-patterns'.) | |||
| 13534 | 13637 | ||
| 13535 | \(fn REGEXP)" t nil) | 13638 | \(fn REGEXP)" t nil) |
| 13536 | 13639 | ||
| 13537 | (autoload (quote hi-lock-write-interactive-patterns) "hi-lock" "\ | 13640 | (autoload 'hi-lock-write-interactive-patterns "hi-lock" "\ |
| 13538 | Write interactively added patterns, if any, into buffer at point. | 13641 | Write interactively added patterns, if any, into buffer at point. |
| 13539 | 13642 | ||
| 13540 | Interactively added patterns are those normally specified using | 13643 | Interactively added patterns are those normally specified using |
| @@ -13546,10 +13649,10 @@ be found in variable `hi-lock-interactive-patterns'. | |||
| 13546 | ;;;*** | 13649 | ;;;*** |
| 13547 | 13650 | ||
| 13548 | ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially | 13651 | ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially |
| 13549 | ;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (18104 24766)) | 13652 | ;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (18088 55116)) |
| 13550 | ;;; Generated autoloads from progmodes/hideif.el | 13653 | ;;; Generated autoloads from progmodes/hideif.el |
| 13551 | 13654 | ||
| 13552 | (autoload (quote hide-ifdef-mode) "hideif" "\ | 13655 | (autoload 'hide-ifdef-mode "hideif" "\ |
| 13553 | Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. | 13656 | Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. |
| 13554 | With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. | 13657 | With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. |
| 13555 | In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor | 13658 | In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor |
| @@ -13586,25 +13689,25 @@ how the hiding is done: | |||
| 13586 | (defvar hide-ifdef-initially nil "\ | 13689 | (defvar hide-ifdef-initially nil "\ |
| 13587 | *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.") | 13690 | *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.") |
| 13588 | 13691 | ||
| 13589 | (custom-autoload (quote hide-ifdef-initially) "hideif" t) | 13692 | (custom-autoload 'hide-ifdef-initially "hideif" t) |
| 13590 | 13693 | ||
| 13591 | (defvar hide-ifdef-read-only nil "\ | 13694 | (defvar hide-ifdef-read-only nil "\ |
| 13592 | *Set to non-nil if you want buffer to be read-only while hiding text.") | 13695 | *Set to non-nil if you want buffer to be read-only while hiding text.") |
| 13593 | 13696 | ||
| 13594 | (custom-autoload (quote hide-ifdef-read-only) "hideif" t) | 13697 | (custom-autoload 'hide-ifdef-read-only "hideif" t) |
| 13595 | 13698 | ||
| 13596 | (defvar hide-ifdef-lines nil "\ | 13699 | (defvar hide-ifdef-lines nil "\ |
| 13597 | *Non-nil means hide the #ifX, #else, and #endif lines.") | 13700 | *Non-nil means hide the #ifX, #else, and #endif lines.") |
| 13598 | 13701 | ||
| 13599 | (custom-autoload (quote hide-ifdef-lines) "hideif" t) | 13702 | (custom-autoload 'hide-ifdef-lines "hideif" t) |
| 13600 | 13703 | ||
| 13601 | ;;;*** | 13704 | ;;;*** |
| 13602 | 13705 | ||
| 13603 | ;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" | 13706 | ;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" |
| 13604 | ;;;;;; (18104 24766)) | 13707 | ;;;;;; (18128 32656)) |
| 13605 | ;;; Generated autoloads from progmodes/hideshow.el | 13708 | ;;; Generated autoloads from progmodes/hideshow.el |
| 13606 | 13709 | ||
| 13607 | (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))) "\ | 13710 | (defvar hs-special-modes-alist '((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)) "\ |
| 13608 | *Alist for initializing the hideshow variables for different modes. | 13711 | *Alist for initializing the hideshow variables for different modes. |
| 13609 | Each element has the form | 13712 | Each element has the form |
| 13610 | (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC). | 13713 | (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC). |
| @@ -13632,7 +13735,7 @@ If any of the elements is left nil or omitted, hideshow tries to guess | |||
| 13632 | appropriate values. The regexps should not contain leading or trailing | 13735 | appropriate values. The regexps should not contain leading or trailing |
| 13633 | whitespace. Case does not matter.") | 13736 | whitespace. Case does not matter.") |
| 13634 | 13737 | ||
| 13635 | (autoload (quote hs-minor-mode) "hideshow" "\ | 13738 | (autoload 'hs-minor-mode "hideshow" "\ |
| 13636 | Toggle hideshow minor mode. | 13739 | Toggle hideshow minor mode. |
| 13637 | With ARG, turn hideshow minor mode on if ARG is positive, off otherwise. | 13740 | With ARG, turn hideshow minor mode on if ARG is positive, off otherwise. |
| 13638 | When hideshow minor mode is on, the menu bar is augmented with hideshow | 13741 | When hideshow minor mode is on, the menu bar is augmented with hideshow |
| @@ -13653,7 +13756,7 @@ Key bindings: | |||
| 13653 | 13756 | ||
| 13654 | \(fn &optional ARG)" t nil) | 13757 | \(fn &optional ARG)" t nil) |
| 13655 | 13758 | ||
| 13656 | (autoload (quote turn-off-hideshow) "hideshow" "\ | 13759 | (autoload 'turn-off-hideshow "hideshow" "\ |
| 13657 | Unconditionally turn off `hs-minor-mode'. | 13760 | Unconditionally turn off `hs-minor-mode'. |
| 13658 | 13761 | ||
| 13659 | \(fn)" nil nil) | 13762 | \(fn)" nil nil) |
| @@ -13664,16 +13767,16 @@ Unconditionally turn off `hs-minor-mode'. | |||
| 13664 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces | 13767 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces |
| 13665 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change | 13768 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change |
| 13666 | ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) | 13769 | ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) |
| 13667 | ;;;;;; "hilit-chg" "hilit-chg.el" (18104 24737)) | 13770 | ;;;;;; "hilit-chg" "hilit-chg.el" (18120 34749)) |
| 13668 | ;;; Generated autoloads from hilit-chg.el | 13771 | ;;; Generated autoloads from hilit-chg.el |
| 13669 | 13772 | ||
| 13670 | (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ | 13773 | (autoload 'highlight-changes-remove-highlight "hilit-chg" "\ |
| 13671 | Remove the change face from the region between BEG and END. | 13774 | Remove the change face from the region between BEG and END. |
| 13672 | This allows you to manually remove highlighting from uninteresting changes. | 13775 | This allows you to manually remove highlighting from uninteresting changes. |
| 13673 | 13776 | ||
| 13674 | \(fn BEG END)" t nil) | 13777 | \(fn BEG END)" t nil) |
| 13675 | 13778 | ||
| 13676 | (autoload (quote highlight-changes-mode) "hilit-chg" "\ | 13779 | (autoload 'highlight-changes-mode "hilit-chg" "\ |
| 13677 | Toggle (or initially set) Highlight Changes mode. | 13780 | Toggle (or initially set) Highlight Changes mode. |
| 13678 | 13781 | ||
| 13679 | Without an argument: | 13782 | Without an argument: |
| @@ -13707,17 +13810,17 @@ Hook variables: | |||
| 13707 | 13810 | ||
| 13708 | \(fn &optional ARG)" t nil) | 13811 | \(fn &optional ARG)" t nil) |
| 13709 | 13812 | ||
| 13710 | (autoload (quote highlight-changes-next-change) "hilit-chg" "\ | 13813 | (autoload 'highlight-changes-next-change "hilit-chg" "\ |
| 13711 | Move to the beginning of the next change, if in Highlight Changes mode. | 13814 | Move to the beginning of the next change, if in Highlight Changes mode. |
| 13712 | 13815 | ||
| 13713 | \(fn)" t nil) | 13816 | \(fn)" t nil) |
| 13714 | 13817 | ||
| 13715 | (autoload (quote highlight-changes-previous-change) "hilit-chg" "\ | 13818 | (autoload 'highlight-changes-previous-change "hilit-chg" "\ |
| 13716 | Move to the beginning of the previous change, if in Highlight Changes mode. | 13819 | Move to the beginning of the previous change, if in Highlight Changes mode. |
| 13717 | 13820 | ||
| 13718 | \(fn)" t nil) | 13821 | \(fn)" t nil) |
| 13719 | 13822 | ||
| 13720 | (autoload (quote highlight-changes-rotate-faces) "hilit-chg" "\ | 13823 | (autoload 'highlight-changes-rotate-faces "hilit-chg" "\ |
| 13721 | Rotate the faces used by Highlight Changes mode. | 13824 | Rotate the faces used by Highlight Changes mode. |
| 13722 | 13825 | ||
| 13723 | Current changes are displayed in the face described by the first element | 13826 | Current changes are displayed in the face described by the first element |
| @@ -13733,7 +13836,7 @@ this, eval the following in the buffer to be saved: | |||
| 13733 | 13836 | ||
| 13734 | \(fn)" t nil) | 13837 | \(fn)" t nil) |
| 13735 | 13838 | ||
| 13736 | (autoload (quote highlight-compare-buffers) "hilit-chg" "\ | 13839 | (autoload 'highlight-compare-buffers "hilit-chg" "\ |
| 13737 | Compare two buffers and highlight the differences. | 13840 | Compare two buffers and highlight the differences. |
| 13738 | 13841 | ||
| 13739 | The default is the current buffer and the one in the next window. | 13842 | The default is the current buffer and the one in the next window. |
| @@ -13750,7 +13853,7 @@ changes are made, so \\[highlight-changes-next-change] and | |||
| 13750 | 13853 | ||
| 13751 | \(fn BUF-A BUF-B)" t nil) | 13854 | \(fn BUF-A BUF-B)" t nil) |
| 13752 | 13855 | ||
| 13753 | (autoload (quote highlight-compare-with-file) "hilit-chg" "\ | 13856 | (autoload 'highlight-compare-with-file "hilit-chg" "\ |
| 13754 | Compare this buffer with a file, and highlight differences. | 13857 | Compare this buffer with a file, and highlight differences. |
| 13755 | 13858 | ||
| 13756 | If the buffer has a backup filename, it is used as the default when | 13859 | If the buffer has a backup filename, it is used as the default when |
| @@ -13766,7 +13869,7 @@ changes are made, so \\[highlight-changes-next-change] and | |||
| 13766 | 13869 | ||
| 13767 | \(fn FILE-B)" t nil) | 13870 | \(fn FILE-B)" t nil) |
| 13768 | 13871 | ||
| 13769 | (autoload (quote global-highlight-changes) "hilit-chg" "\ | 13872 | (autoload 'global-highlight-changes "hilit-chg" "\ |
| 13770 | Turn on or off global Highlight Changes mode. | 13873 | Turn on or off global Highlight Changes mode. |
| 13771 | 13874 | ||
| 13772 | When called interactively: | 13875 | When called interactively: |
| @@ -13794,48 +13897,48 @@ variable `highlight-changes-global-changes-existing-buffers' is non-nil). | |||
| 13794 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction | 13897 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction |
| 13795 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space | 13898 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space |
| 13796 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" | 13899 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" |
| 13797 | ;;;;;; "hippie-exp.el" (18104 24737)) | 13900 | ;;;;;; "hippie-exp.el" (18088 55085)) |
| 13798 | ;;; Generated autoloads from hippie-exp.el | 13901 | ;;; Generated autoloads from hippie-exp.el |
| 13799 | 13902 | ||
| 13800 | (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)) "\ | 13903 | (defvar hippie-expand-try-functions-list '(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) "\ |
| 13801 | The list of expansion functions tried in order by `hippie-expand'. | 13904 | The list of expansion functions tried in order by `hippie-expand'. |
| 13802 | To change the behavior of `hippie-expand', remove, change the order of, | 13905 | To change the behavior of `hippie-expand', remove, change the order of, |
| 13803 | or insert functions in this list.") | 13906 | or insert functions in this list.") |
| 13804 | 13907 | ||
| 13805 | (custom-autoload (quote hippie-expand-try-functions-list) "hippie-exp" t) | 13908 | (custom-autoload 'hippie-expand-try-functions-list "hippie-exp" t) |
| 13806 | 13909 | ||
| 13807 | (defvar hippie-expand-verbose t "\ | 13910 | (defvar hippie-expand-verbose t "\ |
| 13808 | *Non-nil makes `hippie-expand' output which function it is trying.") | 13911 | *Non-nil makes `hippie-expand' output which function it is trying.") |
| 13809 | 13912 | ||
| 13810 | (custom-autoload (quote hippie-expand-verbose) "hippie-exp" t) | 13913 | (custom-autoload 'hippie-expand-verbose "hippie-exp" t) |
| 13811 | 13914 | ||
| 13812 | (defvar hippie-expand-dabbrev-skip-space nil "\ | 13915 | (defvar hippie-expand-dabbrev-skip-space nil "\ |
| 13813 | *Non-nil means tolerate trailing spaces in the abbreviation to expand.") | 13916 | *Non-nil means tolerate trailing spaces in the abbreviation to expand.") |
| 13814 | 13917 | ||
| 13815 | (custom-autoload (quote hippie-expand-dabbrev-skip-space) "hippie-exp" t) | 13918 | (custom-autoload 'hippie-expand-dabbrev-skip-space "hippie-exp" t) |
| 13816 | 13919 | ||
| 13817 | (defvar hippie-expand-dabbrev-as-symbol t "\ | 13920 | (defvar hippie-expand-dabbrev-as-symbol t "\ |
| 13818 | *Non-nil means expand as symbols, i.e. syntax `_' is considered a letter.") | 13921 | *Non-nil means expand as symbols, i.e. syntax `_' is considered a letter.") |
| 13819 | 13922 | ||
| 13820 | (custom-autoload (quote hippie-expand-dabbrev-as-symbol) "hippie-exp" t) | 13923 | (custom-autoload 'hippie-expand-dabbrev-as-symbol "hippie-exp" t) |
| 13821 | 13924 | ||
| 13822 | (defvar hippie-expand-no-restriction t "\ | 13925 | (defvar hippie-expand-no-restriction t "\ |
| 13823 | *Non-nil means that narrowed buffers are widened during search.") | 13926 | *Non-nil means that narrowed buffers are widened during search.") |
| 13824 | 13927 | ||
| 13825 | (custom-autoload (quote hippie-expand-no-restriction) "hippie-exp" t) | 13928 | (custom-autoload 'hippie-expand-no-restriction "hippie-exp" t) |
| 13826 | 13929 | ||
| 13827 | (defvar hippie-expand-max-buffers nil "\ | 13930 | (defvar hippie-expand-max-buffers nil "\ |
| 13828 | *The maximum number of buffers (apart from the current) searched. | 13931 | *The maximum number of buffers (apart from the current) searched. |
| 13829 | If nil, all buffers are searched.") | 13932 | If nil, all buffers are searched.") |
| 13830 | 13933 | ||
| 13831 | (custom-autoload (quote hippie-expand-max-buffers) "hippie-exp" t) | 13934 | (custom-autoload 'hippie-expand-max-buffers "hippie-exp" t) |
| 13832 | 13935 | ||
| 13833 | (defvar hippie-expand-ignore-buffers (quote ("^ \\*.*\\*$" dired-mode)) "\ | 13936 | (defvar hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode) "\ |
| 13834 | *A list specifying which buffers not to search (if not current). | 13937 | *A list specifying which buffers not to search (if not current). |
| 13835 | Can contain both regexps matching buffer names (as strings) and major modes | 13938 | Can contain both regexps matching buffer names (as strings) and major modes |
| 13836 | \(as atoms)") | 13939 | \(as atoms)") |
| 13837 | 13940 | ||
| 13838 | (custom-autoload (quote hippie-expand-ignore-buffers) "hippie-exp" t) | 13941 | (custom-autoload 'hippie-expand-ignore-buffers "hippie-exp" t) |
| 13839 | 13942 | ||
| 13840 | (defvar hippie-expand-only-buffers nil "\ | 13943 | (defvar hippie-expand-only-buffers nil "\ |
| 13841 | *A list specifying the only buffers to search (in addition to current). | 13944 | *A list specifying the only buffers to search (in addition to current). |
| @@ -13843,9 +13946,9 @@ Can contain both regexps matching buffer names (as strings) and major modes | |||
| 13843 | \(as atoms). If non-nil, this variable overrides the variable | 13946 | \(as atoms). If non-nil, this variable overrides the variable |
| 13844 | `hippie-expand-ignore-buffers'.") | 13947 | `hippie-expand-ignore-buffers'.") |
| 13845 | 13948 | ||
| 13846 | (custom-autoload (quote hippie-expand-only-buffers) "hippie-exp" t) | 13949 | (custom-autoload 'hippie-expand-only-buffers "hippie-exp" t) |
| 13847 | 13950 | ||
| 13848 | (autoload (quote hippie-expand) "hippie-exp" "\ | 13951 | (autoload 'hippie-expand "hippie-exp" "\ |
| 13849 | Try to expand text before point, using multiple methods. | 13952 | Try to expand text before point, using multiple methods. |
| 13850 | The expansion functions in `hippie-expand-try-functions-list' are | 13953 | The expansion functions in `hippie-expand-try-functions-list' are |
| 13851 | tried in order, until a possible expansion is found. Repeated | 13954 | tried in order, until a possible expansion is found. Repeated |
| @@ -13857,7 +13960,7 @@ undoes the expansion. | |||
| 13857 | 13960 | ||
| 13858 | \(fn ARG)" t nil) | 13961 | \(fn ARG)" t nil) |
| 13859 | 13962 | ||
| 13860 | (autoload (quote make-hippie-expand-function) "hippie-exp" "\ | 13963 | (autoload 'make-hippie-expand-function "hippie-exp" "\ |
| 13861 | Construct a function similar to `hippie-expand'. | 13964 | Construct a function similar to `hippie-expand'. |
| 13862 | Make it use the expansion functions in TRY-LIST. An optional second | 13965 | Make it use the expansion functions in TRY-LIST. An optional second |
| 13863 | argument VERBOSE non-nil makes the function verbose. | 13966 | argument VERBOSE non-nil makes the function verbose. |
| @@ -13867,10 +13970,10 @@ argument VERBOSE non-nil makes the function verbose. | |||
| 13867 | ;;;*** | 13970 | ;;;*** |
| 13868 | 13971 | ||
| 13869 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" | 13972 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" |
| 13870 | ;;;;;; (18104 24737)) | 13973 | ;;;;;; (18088 55085)) |
| 13871 | ;;; Generated autoloads from hl-line.el | 13974 | ;;; Generated autoloads from hl-line.el |
| 13872 | 13975 | ||
| 13873 | (autoload (quote hl-line-mode) "hl-line" "\ | 13976 | (autoload 'hl-line-mode "hl-line" "\ |
| 13874 | Buffer-local minor mode to highlight the line about point. | 13977 | Buffer-local minor mode to highlight the line about point. |
| 13875 | With ARG, turn Hl-Line mode on if ARG is positive, off otherwise. | 13978 | With ARG, turn Hl-Line mode on if ARG is positive, off otherwise. |
| 13876 | 13979 | ||
| @@ -13894,9 +13997,9 @@ Setting this variable directly does not take effect; | |||
| 13894 | either customize it (see the info node `Easy Customization') | 13997 | either customize it (see the info node `Easy Customization') |
| 13895 | or call the function `global-hl-line-mode'.") | 13998 | or call the function `global-hl-line-mode'.") |
| 13896 | 13999 | ||
| 13897 | (custom-autoload (quote global-hl-line-mode) "hl-line" nil) | 14000 | (custom-autoload 'global-hl-line-mode "hl-line" nil) |
| 13898 | 14001 | ||
| 13899 | (autoload (quote global-hl-line-mode) "hl-line" "\ | 14002 | (autoload 'global-hl-line-mode "hl-line" "\ |
| 13900 | Global minor mode to highlight the line about point in the current window. | 14003 | Global minor mode to highlight the line about point in the current window. |
| 13901 | With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise. | 14004 | With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise. |
| 13902 | 14005 | ||
| @@ -13908,10 +14011,10 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and | |||
| 13908 | ;;;*** | 14011 | ;;;*** |
| 13909 | 14012 | ||
| 13910 | ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" | 14013 | ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" |
| 13911 | ;;;;;; (18104 24745)) | 14014 | ;;;;;; (18157 34340)) |
| 13912 | ;;; Generated autoloads from calendar/holidays.el | 14015 | ;;; Generated autoloads from calendar/holidays.el |
| 13913 | 14016 | ||
| 13914 | (autoload (quote holidays) "holidays" "\ | 14017 | (autoload 'holidays "holidays" "\ |
| 13915 | Display the holidays for last month, this month, and next month. | 14018 | Display the holidays for last month, this month, and next month. |
| 13916 | If called with an optional prefix argument, prompts for month and year. | 14019 | If called with an optional prefix argument, prompts for month and year. |
| 13917 | 14020 | ||
| @@ -13919,7 +14022,7 @@ This function is suitable for execution in a .emacs file. | |||
| 13919 | 14022 | ||
| 13920 | \(fn &optional ARG)" t nil) | 14023 | \(fn &optional ARG)" t nil) |
| 13921 | 14024 | ||
| 13922 | (autoload (quote list-holidays) "holidays" "\ | 14025 | (autoload 'list-holidays "holidays" "\ |
| 13923 | Display holidays for years Y1 to Y2 (inclusive). | 14026 | Display holidays for years Y1 to Y2 (inclusive). |
| 13924 | 14027 | ||
| 13925 | The optional list of holidays L defaults to `calendar-holidays'. | 14028 | The optional list of holidays L defaults to `calendar-holidays'. |
| @@ -13944,11 +14047,11 @@ The optional LABEL is used to label the buffer created. | |||
| 13944 | 14047 | ||
| 13945 | ;;;*** | 14048 | ;;;*** |
| 13946 | 14049 | ||
| 13947 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (18104 | 14050 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (18212 |
| 13948 | ;;;;;; 24751)) | 14051 | ;;;;;; 46007)) |
| 13949 | ;;; Generated autoloads from gnus/html2text.el | 14052 | ;;; Generated autoloads from gnus/html2text.el |
| 13950 | 14053 | ||
| 13951 | (autoload (quote html2text) "html2text" "\ | 14054 | (autoload 'html2text "html2text" "\ |
| 13952 | Convert HTML to plain text in the current buffer. | 14055 | Convert HTML to plain text in the current buffer. |
| 13953 | 14056 | ||
| 13954 | \(fn)" t nil) | 14057 | \(fn)" t nil) |
| @@ -13977,41 +14080,41 @@ Convert HTML to plain text in the current buffer. | |||
| 13977 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group | 14080 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group |
| 13978 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group | 14081 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group |
| 13979 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode | 14082 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode |
| 13980 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (18104 24737)) | 14083 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (18208 48750)) |
| 13981 | ;;; Generated autoloads from ibuf-ext.el | 14084 | ;;; Generated autoloads from ibuf-ext.el |
| 13982 | 14085 | ||
| 13983 | (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ | 14086 | (autoload 'ibuffer-auto-mode "ibuf-ext" "\ |
| 13984 | Toggle use of Ibuffer's auto-update facility. | 14087 | Toggle use of Ibuffer's auto-update facility. |
| 13985 | With numeric ARG, enable auto-update if and only if ARG is positive. | 14088 | With numeric ARG, enable auto-update if and only if ARG is positive. |
| 13986 | 14089 | ||
| 13987 | \(fn &optional ARG)" t nil) | 14090 | \(fn &optional ARG)" t nil) |
| 13988 | 14091 | ||
| 13989 | (autoload (quote ibuffer-mouse-filter-by-mode) "ibuf-ext" "\ | 14092 | (autoload 'ibuffer-mouse-filter-by-mode "ibuf-ext" "\ |
| 13990 | Enable or disable filtering by the major mode chosen via mouse. | 14093 | Enable or disable filtering by the major mode chosen via mouse. |
| 13991 | 14094 | ||
| 13992 | \(fn EVENT)" t nil) | 14095 | \(fn EVENT)" t nil) |
| 13993 | 14096 | ||
| 13994 | (autoload (quote ibuffer-interactive-filter-by-mode) "ibuf-ext" "\ | 14097 | (autoload 'ibuffer-interactive-filter-by-mode "ibuf-ext" "\ |
| 13995 | Enable or disable filtering by the major mode at point. | 14098 | Enable or disable filtering by the major mode at point. |
| 13996 | 14099 | ||
| 13997 | \(fn EVENT-OR-POINT)" t nil) | 14100 | \(fn EVENT-OR-POINT)" t nil) |
| 13998 | 14101 | ||
| 13999 | (autoload (quote ibuffer-mouse-toggle-filter-group) "ibuf-ext" "\ | 14102 | (autoload 'ibuffer-mouse-toggle-filter-group "ibuf-ext" "\ |
| 14000 | Toggle the display status of the filter group chosen with the mouse. | 14103 | Toggle the display status of the filter group chosen with the mouse. |
| 14001 | 14104 | ||
| 14002 | \(fn EVENT)" t nil) | 14105 | \(fn EVENT)" t nil) |
| 14003 | 14106 | ||
| 14004 | (autoload (quote ibuffer-toggle-filter-group) "ibuf-ext" "\ | 14107 | (autoload 'ibuffer-toggle-filter-group "ibuf-ext" "\ |
| 14005 | Toggle the display status of the filter group on this line. | 14108 | Toggle the display status of the filter group on this line. |
| 14006 | 14109 | ||
| 14007 | \(fn)" t nil) | 14110 | \(fn)" t nil) |
| 14008 | 14111 | ||
| 14009 | (autoload (quote ibuffer-forward-filter-group) "ibuf-ext" "\ | 14112 | (autoload 'ibuffer-forward-filter-group "ibuf-ext" "\ |
| 14010 | Move point forwards by COUNT filtering groups. | 14113 | Move point forwards by COUNT filtering groups. |
| 14011 | 14114 | ||
| 14012 | \(fn &optional COUNT)" t nil) | 14115 | \(fn &optional COUNT)" t nil) |
| 14013 | 14116 | ||
| 14014 | (autoload (quote ibuffer-backward-filter-group) "ibuf-ext" "\ | 14117 | (autoload 'ibuffer-backward-filter-group "ibuf-ext" "\ |
| 14015 | Move point backwards by COUNT filtering groups. | 14118 | Move point backwards by COUNT filtering groups. |
| 14016 | 14119 | ||
| 14017 | \(fn &optional COUNT)" t nil) | 14120 | \(fn &optional COUNT)" t nil) |
| @@ -14027,95 +14130,93 @@ Move point backwards by COUNT filtering groups. | |||
| 14027 | (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext") | 14130 | (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext") |
| 14028 | (autoload 'ibuffer-do-print "ibuf-ext") | 14131 | (autoload 'ibuffer-do-print "ibuf-ext") |
| 14029 | 14132 | ||
| 14030 | (autoload (quote ibuffer-included-in-filters-p) "ibuf-ext" "\ | 14133 | (autoload 'ibuffer-included-in-filters-p "ibuf-ext" "\ |
| 14031 | Not documented | 14134 | Not documented |
| 14032 | 14135 | ||
| 14033 | \(fn BUF FILTERS)" nil nil) | 14136 | \(fn BUF FILTERS)" nil nil) |
| 14034 | 14137 | ||
| 14035 | (autoload (quote ibuffer-filters-to-filter-group) "ibuf-ext" "\ | 14138 | (autoload 'ibuffer-filters-to-filter-group "ibuf-ext" "\ |
| 14036 | Make the current filters into a filtering group. | 14139 | Make the current filters into a filtering group. |
| 14037 | 14140 | ||
| 14038 | \(fn NAME)" t nil) | 14141 | \(fn NAME)" t nil) |
| 14039 | 14142 | ||
| 14040 | (autoload (quote ibuffer-set-filter-groups-by-mode) "ibuf-ext" "\ | 14143 | (autoload 'ibuffer-set-filter-groups-by-mode "ibuf-ext" "\ |
| 14041 | Set the current filter groups to filter by mode. | 14144 | Set the current filter groups to filter by mode. |
| 14042 | 14145 | ||
| 14043 | \(fn)" t nil) | 14146 | \(fn)" t nil) |
| 14044 | 14147 | ||
| 14045 | (autoload (quote ibuffer-pop-filter-group) "ibuf-ext" "\ | 14148 | (autoload 'ibuffer-pop-filter-group "ibuf-ext" "\ |
| 14046 | Remove the first filter group. | 14149 | Remove the first filter group. |
| 14047 | 14150 | ||
| 14048 | \(fn)" t nil) | 14151 | \(fn)" t nil) |
| 14049 | 14152 | ||
| 14050 | (autoload (quote ibuffer-decompose-filter-group) "ibuf-ext" "\ | 14153 | (autoload 'ibuffer-decompose-filter-group "ibuf-ext" "\ |
| 14051 | Decompose the filter group GROUP into active filters. | 14154 | Decompose the filter group GROUP into active filters. |
| 14052 | 14155 | ||
| 14053 | \(fn GROUP)" t nil) | 14156 | \(fn GROUP)" t nil) |
| 14054 | 14157 | ||
| 14055 | (autoload (quote ibuffer-clear-filter-groups) "ibuf-ext" "\ | 14158 | (autoload 'ibuffer-clear-filter-groups "ibuf-ext" "\ |
| 14056 | Remove all filter groups. | 14159 | Remove all filter groups. |
| 14057 | 14160 | ||
| 14058 | \(fn)" t nil) | 14161 | \(fn)" t nil) |
| 14059 | 14162 | ||
| 14060 | (autoload (quote ibuffer-jump-to-filter-group) "ibuf-ext" "\ | 14163 | (autoload 'ibuffer-jump-to-filter-group "ibuf-ext" "\ |
| 14061 | Move point to the filter group whose name is NAME. | 14164 | Move point to the filter group whose name is NAME. |
| 14062 | 14165 | ||
| 14063 | \(fn NAME)" t nil) | 14166 | \(fn NAME)" t nil) |
| 14064 | 14167 | ||
| 14065 | (autoload (quote ibuffer-kill-filter-group) "ibuf-ext" "\ | 14168 | (autoload 'ibuffer-kill-filter-group "ibuf-ext" "\ |
| 14066 | Kill the filter group named NAME. | 14169 | Kill the filter group named NAME. |
| 14067 | The group will be added to `ibuffer-filter-group-kill-ring'. | 14170 | The group will be added to `ibuffer-filter-group-kill-ring'. |
| 14068 | 14171 | ||
| 14069 | \(fn NAME)" t nil) | 14172 | \(fn NAME)" t nil) |
| 14070 | 14173 | ||
| 14071 | (autoload (quote ibuffer-kill-line) "ibuf-ext" "\ | 14174 | (autoload 'ibuffer-kill-line "ibuf-ext" "\ |
| 14072 | Kill the filter group at point. | 14175 | Kill the filter group at point. |
| 14073 | See also `ibuffer-kill-filter-group'. | 14176 | See also `ibuffer-kill-filter-group'. |
| 14074 | 14177 | ||
| 14075 | \(fn &optional ARG INTERACTIVE-P)" t nil) | 14178 | \(fn &optional ARG INTERACTIVE-P)" t nil) |
| 14076 | 14179 | ||
| 14077 | (autoload (quote ibuffer-yank) "ibuf-ext" "\ | 14180 | (autoload 'ibuffer-yank "ibuf-ext" "\ |
| 14078 | Yank the last killed filter group before group at point. | 14181 | Yank the last killed filter group before group at point. |
| 14079 | 14182 | ||
| 14080 | \(fn)" t nil) | 14183 | \(fn)" t nil) |
| 14081 | 14184 | ||
| 14082 | (autoload (quote ibuffer-yank-filter-group) "ibuf-ext" "\ | 14185 | (autoload 'ibuffer-yank-filter-group "ibuf-ext" "\ |
| 14083 | Yank the last killed filter group before group named NAME. | 14186 | Yank the last killed filter group before group named NAME. |
| 14084 | 14187 | ||
| 14085 | \(fn NAME)" t nil) | 14188 | \(fn NAME)" t nil) |
| 14086 | 14189 | ||
| 14087 | (autoload (quote ibuffer-save-filter-groups) "ibuf-ext" "\ | 14190 | (autoload 'ibuffer-save-filter-groups "ibuf-ext" "\ |
| 14088 | Save all active filter groups GROUPS as NAME. | 14191 | Save all active filter groups GROUPS as NAME. |
| 14089 | They are added to `ibuffer-saved-filter-groups'. Interactively, | 14192 | They are added to `ibuffer-saved-filter-groups'. Interactively, |
| 14090 | prompt for NAME, and use the current filters. | 14193 | prompt for NAME, and use the current filters. |
| 14091 | 14194 | ||
| 14092 | \(fn NAME GROUPS)" t nil) | 14195 | \(fn NAME GROUPS)" t nil) |
| 14093 | 14196 | ||
| 14094 | (autoload (quote ibuffer-delete-saved-filter-groups) "ibuf-ext" "\ | 14197 | (autoload 'ibuffer-delete-saved-filter-groups "ibuf-ext" "\ |
| 14095 | Delete saved filter groups with NAME. | 14198 | Delete saved filter groups with NAME. |
| 14096 | They are removed from `ibuffer-saved-filter-groups'. | 14199 | They are removed from `ibuffer-saved-filter-groups'. |
| 14097 | 14200 | ||
| 14098 | \(fn NAME)" t nil) | 14201 | \(fn NAME)" t nil) |
| 14099 | 14202 | ||
| 14100 | (autoload (quote ibuffer-switch-to-saved-filter-groups) "ibuf-ext" "\ | 14203 | (autoload 'ibuffer-switch-to-saved-filter-groups "ibuf-ext" "\ |
| 14101 | Set this buffer's filter groups to saved version with NAME. | 14204 | Set this buffer's filter groups to saved version with NAME. |
| 14102 | The value from `ibuffer-saved-filters' is used. | 14205 | The value from `ibuffer-saved-filter-groups' is used. |
| 14103 | If prefix argument ADD is non-nil, then add the saved filters instead | ||
| 14104 | of replacing the current filters. | ||
| 14105 | 14206 | ||
| 14106 | \(fn NAME)" t nil) | 14207 | \(fn NAME)" t nil) |
| 14107 | 14208 | ||
| 14108 | (autoload (quote ibuffer-filter-disable) "ibuf-ext" "\ | 14209 | (autoload 'ibuffer-filter-disable "ibuf-ext" "\ |
| 14109 | Disable all filters currently in effect in this buffer. | 14210 | Disable all filters currently in effect in this buffer. |
| 14110 | 14211 | ||
| 14111 | \(fn)" t nil) | 14212 | \(fn)" t nil) |
| 14112 | 14213 | ||
| 14113 | (autoload (quote ibuffer-pop-filter) "ibuf-ext" "\ | 14214 | (autoload 'ibuffer-pop-filter "ibuf-ext" "\ |
| 14114 | Remove the top filter in this buffer. | 14215 | Remove the top filter in this buffer. |
| 14115 | 14216 | ||
| 14116 | \(fn)" t nil) | 14217 | \(fn)" t nil) |
| 14117 | 14218 | ||
| 14118 | (autoload (quote ibuffer-decompose-filter) "ibuf-ext" "\ | 14219 | (autoload 'ibuffer-decompose-filter "ibuf-ext" "\ |
| 14119 | Separate the top compound filter (OR, NOT, or SAVED) in this buffer. | 14220 | Separate the top compound filter (OR, NOT, or SAVED) in this buffer. |
| 14120 | 14221 | ||
| 14121 | This means that the topmost filter on the filtering stack, which must | 14222 | This means that the topmost filter on the filtering stack, which must |
| @@ -14124,43 +14225,41 @@ turned into two separate filters [name: foo] and [mode: bar-mode]. | |||
| 14124 | 14225 | ||
| 14125 | \(fn)" t nil) | 14226 | \(fn)" t nil) |
| 14126 | 14227 | ||
| 14127 | (autoload (quote ibuffer-exchange-filters) "ibuf-ext" "\ | 14228 | (autoload 'ibuffer-exchange-filters "ibuf-ext" "\ |
| 14128 | Exchange the top two filters on the stack in this buffer. | 14229 | Exchange the top two filters on the stack in this buffer. |
| 14129 | 14230 | ||
| 14130 | \(fn)" t nil) | 14231 | \(fn)" t nil) |
| 14131 | 14232 | ||
| 14132 | (autoload (quote ibuffer-negate-filter) "ibuf-ext" "\ | 14233 | (autoload 'ibuffer-negate-filter "ibuf-ext" "\ |
| 14133 | Negate the sense of the top filter in the current buffer. | 14234 | Negate the sense of the top filter in the current buffer. |
| 14134 | 14235 | ||
| 14135 | \(fn)" t nil) | 14236 | \(fn)" t nil) |
| 14136 | 14237 | ||
| 14137 | (autoload (quote ibuffer-or-filter) "ibuf-ext" "\ | 14238 | (autoload 'ibuffer-or-filter "ibuf-ext" "\ |
| 14138 | Replace the top two filters in this buffer with their logical OR. | 14239 | Replace the top two filters in this buffer with their logical OR. |
| 14139 | If optional argument REVERSE is non-nil, instead break the top OR | 14240 | If optional argument REVERSE is non-nil, instead break the top OR |
| 14140 | filter into parts. | 14241 | filter into parts. |
| 14141 | 14242 | ||
| 14142 | \(fn &optional REVERSE)" t nil) | 14243 | \(fn &optional REVERSE)" t nil) |
| 14143 | 14244 | ||
| 14144 | (autoload (quote ibuffer-save-filters) "ibuf-ext" "\ | 14245 | (autoload 'ibuffer-save-filters "ibuf-ext" "\ |
| 14145 | Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'. | 14246 | Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'. |
| 14146 | Interactively, prompt for NAME, and use the current filters. | 14247 | Interactively, prompt for NAME, and use the current filters. |
| 14147 | 14248 | ||
| 14148 | \(fn NAME FILTERS)" t nil) | 14249 | \(fn NAME FILTERS)" t nil) |
| 14149 | 14250 | ||
| 14150 | (autoload (quote ibuffer-delete-saved-filters) "ibuf-ext" "\ | 14251 | (autoload 'ibuffer-delete-saved-filters "ibuf-ext" "\ |
| 14151 | Delete saved filters with NAME from `ibuffer-saved-filters'. | 14252 | Delete saved filters with NAME from `ibuffer-saved-filters'. |
| 14152 | 14253 | ||
| 14153 | \(fn NAME)" t nil) | 14254 | \(fn NAME)" t nil) |
| 14154 | 14255 | ||
| 14155 | (autoload (quote ibuffer-add-saved-filters) "ibuf-ext" "\ | 14256 | (autoload 'ibuffer-add-saved-filters "ibuf-ext" "\ |
| 14156 | Add saved filters from `ibuffer-saved-filters' to this buffer's filters. | 14257 | Add saved filters from `ibuffer-saved-filters' to this buffer's filters. |
| 14157 | 14258 | ||
| 14158 | \(fn NAME)" t nil) | 14259 | \(fn NAME)" t nil) |
| 14159 | 14260 | ||
| 14160 | (autoload (quote ibuffer-switch-to-saved-filters) "ibuf-ext" "\ | 14261 | (autoload 'ibuffer-switch-to-saved-filters "ibuf-ext" "\ |
| 14161 | Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'. | 14262 | Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'. |
| 14162 | If prefix argument ADD is non-nil, then add the saved filters instead | ||
| 14163 | of replacing the current filters. | ||
| 14164 | 14263 | ||
| 14165 | \(fn NAME)" t nil) | 14264 | \(fn NAME)" t nil) |
| 14166 | (autoload 'ibuffer-filter-by-mode "ibuf-ext") | 14265 | (autoload 'ibuffer-filter-by-mode "ibuf-ext") |
| @@ -14172,7 +14271,7 @@ of replacing the current filters. | |||
| 14172 | (autoload 'ibuffer-filter-by-content "ibuf-ext") | 14271 | (autoload 'ibuffer-filter-by-content "ibuf-ext") |
| 14173 | (autoload 'ibuffer-filter-by-predicate "ibuf-ext") | 14272 | (autoload 'ibuffer-filter-by-predicate "ibuf-ext") |
| 14174 | 14273 | ||
| 14175 | (autoload (quote ibuffer-toggle-sorting-mode) "ibuf-ext" "\ | 14274 | (autoload 'ibuffer-toggle-sorting-mode "ibuf-ext" "\ |
| 14176 | Toggle the current sorting mode. | 14275 | Toggle the current sorting mode. |
| 14177 | Default sorting modes are: | 14276 | Default sorting modes are: |
| 14178 | Recency - the last time the buffer was viewed | 14277 | Recency - the last time the buffer was viewed |
| @@ -14182,7 +14281,7 @@ Default sorting modes are: | |||
| 14182 | 14281 | ||
| 14183 | \(fn)" t nil) | 14282 | \(fn)" t nil) |
| 14184 | 14283 | ||
| 14185 | (autoload (quote ibuffer-invert-sorting) "ibuf-ext" "\ | 14284 | (autoload 'ibuffer-invert-sorting "ibuf-ext" "\ |
| 14186 | Toggle whether or not sorting is in reverse order. | 14285 | Toggle whether or not sorting is in reverse order. |
| 14187 | 14286 | ||
| 14188 | \(fn)" t nil) | 14287 | \(fn)" t nil) |
| @@ -14191,26 +14290,26 @@ Toggle whether or not sorting is in reverse order. | |||
| 14191 | (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext") | 14290 | (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext") |
| 14192 | (autoload 'ibuffer-do-sort-by-size "ibuf-ext") | 14291 | (autoload 'ibuffer-do-sort-by-size "ibuf-ext") |
| 14193 | 14292 | ||
| 14194 | (autoload (quote ibuffer-bs-show) "ibuf-ext" "\ | 14293 | (autoload 'ibuffer-bs-show "ibuf-ext" "\ |
| 14195 | Emulate `bs-show' from the bs.el package. | 14294 | Emulate `bs-show' from the bs.el package. |
| 14196 | 14295 | ||
| 14197 | \(fn)" t nil) | 14296 | \(fn)" t nil) |
| 14198 | 14297 | ||
| 14199 | (autoload (quote ibuffer-add-to-tmp-hide) "ibuf-ext" "\ | 14298 | (autoload 'ibuffer-add-to-tmp-hide "ibuf-ext" "\ |
| 14200 | Add REGEXP to `ibuffer-tmp-hide-regexps'. | 14299 | Add REGEXP to `ibuffer-tmp-hide-regexps'. |
| 14201 | This means that buffers whose name matches REGEXP will not be shown | 14300 | This means that buffers whose name matches REGEXP will not be shown |
| 14202 | for this Ibuffer session. | 14301 | for this Ibuffer session. |
| 14203 | 14302 | ||
| 14204 | \(fn REGEXP)" t nil) | 14303 | \(fn REGEXP)" t nil) |
| 14205 | 14304 | ||
| 14206 | (autoload (quote ibuffer-add-to-tmp-show) "ibuf-ext" "\ | 14305 | (autoload 'ibuffer-add-to-tmp-show "ibuf-ext" "\ |
| 14207 | Add REGEXP to `ibuffer-tmp-show-regexps'. | 14306 | Add REGEXP to `ibuffer-tmp-show-regexps'. |
| 14208 | This means that buffers whose name matches REGEXP will always be shown | 14307 | This means that buffers whose name matches REGEXP will always be shown |
| 14209 | for this Ibuffer session. | 14308 | for this Ibuffer session. |
| 14210 | 14309 | ||
| 14211 | \(fn REGEXP)" t nil) | 14310 | \(fn REGEXP)" t nil) |
| 14212 | 14311 | ||
| 14213 | (autoload (quote ibuffer-forward-next-marked) "ibuf-ext" "\ | 14312 | (autoload 'ibuffer-forward-next-marked "ibuf-ext" "\ |
| 14214 | Move forward by COUNT marked buffers (default 1). | 14313 | Move forward by COUNT marked buffers (default 1). |
| 14215 | 14314 | ||
| 14216 | If MARK is non-nil, it should be a character denoting the type of mark | 14315 | If MARK is non-nil, it should be a character denoting the type of mark |
| @@ -14221,7 +14320,7 @@ mean move backwards, non-negative integers mean move forwards. | |||
| 14221 | 14320 | ||
| 14222 | \(fn &optional COUNT MARK DIRECTION)" t nil) | 14321 | \(fn &optional COUNT MARK DIRECTION)" t nil) |
| 14223 | 14322 | ||
| 14224 | (autoload (quote ibuffer-backwards-next-marked) "ibuf-ext" "\ | 14323 | (autoload 'ibuffer-backwards-next-marked "ibuf-ext" "\ |
| 14225 | Move backwards by COUNT marked buffers (default 1). | 14324 | Move backwards by COUNT marked buffers (default 1). |
| 14226 | 14325 | ||
| 14227 | If MARK is non-nil, it should be a character denoting the type of mark | 14326 | If MARK is non-nil, it should be a character denoting the type of mark |
| @@ -14229,12 +14328,12 @@ to move by. The default is `ibuffer-marked-char'. | |||
| 14229 | 14328 | ||
| 14230 | \(fn &optional COUNT MARK)" t nil) | 14329 | \(fn &optional COUNT MARK)" t nil) |
| 14231 | 14330 | ||
| 14232 | (autoload (quote ibuffer-do-kill-lines) "ibuf-ext" "\ | 14331 | (autoload 'ibuffer-do-kill-lines "ibuf-ext" "\ |
| 14233 | Hide all of the currently marked lines. | 14332 | Hide all of the currently marked lines. |
| 14234 | 14333 | ||
| 14235 | \(fn)" t nil) | 14334 | \(fn)" t nil) |
| 14236 | 14335 | ||
| 14237 | (autoload (quote ibuffer-jump-to-buffer) "ibuf-ext" "\ | 14336 | (autoload 'ibuffer-jump-to-buffer "ibuf-ext" "\ |
| 14238 | Move point to the buffer whose name is NAME. | 14337 | Move point to the buffer whose name is NAME. |
| 14239 | 14338 | ||
| 14240 | If called interactively, prompt for a buffer name and go to the | 14339 | If called interactively, prompt for a buffer name and go to the |
| @@ -14247,13 +14346,13 @@ a prefix argument reverses the meaning of that variable. | |||
| 14247 | 14346 | ||
| 14248 | \(fn NAME)" t nil) | 14347 | \(fn NAME)" t nil) |
| 14249 | 14348 | ||
| 14250 | (autoload (quote ibuffer-diff-with-file) "ibuf-ext" "\ | 14349 | (autoload 'ibuffer-diff-with-file "ibuf-ext" "\ |
| 14251 | View the differences between this buffer and its associated file. | 14350 | View the differences between this buffer and its associated file. |
| 14252 | This requires the external program \"diff\" to be in your `exec-path'. | 14351 | This requires the external program \"diff\" to be in your `exec-path'. |
| 14253 | 14352 | ||
| 14254 | \(fn)" t nil) | 14353 | \(fn)" t nil) |
| 14255 | 14354 | ||
| 14256 | (autoload (quote ibuffer-copy-filename-as-kill) "ibuf-ext" "\ | 14355 | (autoload 'ibuffer-copy-filename-as-kill "ibuf-ext" "\ |
| 14257 | Copy filenames of marked buffers into the kill ring. | 14356 | Copy filenames of marked buffers into the kill ring. |
| 14258 | 14357 | ||
| 14259 | The names are separated by a space. | 14358 | The names are separated by a space. |
| @@ -14262,78 +14361,78 @@ If a buffer has no filename, it is ignored. | |||
| 14262 | With no prefix arg, use the filename sans its directory of each marked file. | 14361 | With no prefix arg, use the filename sans its directory of each marked file. |
| 14263 | With a zero prefix arg, use the complete filename of each marked file. | 14362 | With a zero prefix arg, use the complete filename of each marked file. |
| 14264 | With \\[universal-argument], use the filename of each marked file relative | 14363 | With \\[universal-argument], use the filename of each marked file relative |
| 14265 | to `ibuffer-default-directory' iff non-nil, otherwise `default-directory'. | 14364 | to `ibuffer-default-directory' if non-nil, otherwise `default-directory'. |
| 14266 | 14365 | ||
| 14267 | You can then feed the file name(s) to other commands with \\[yank]. | 14366 | You can then feed the file name(s) to other commands with \\[yank]. |
| 14268 | 14367 | ||
| 14269 | \(fn &optional ARG)" t nil) | 14368 | \(fn &optional ARG)" t nil) |
| 14270 | 14369 | ||
| 14271 | (autoload (quote ibuffer-mark-by-name-regexp) "ibuf-ext" "\ | 14370 | (autoload 'ibuffer-mark-by-name-regexp "ibuf-ext" "\ |
| 14272 | Mark all buffers whose name matches REGEXP. | 14371 | Mark all buffers whose name matches REGEXP. |
| 14273 | 14372 | ||
| 14274 | \(fn REGEXP)" t nil) | 14373 | \(fn REGEXP)" t nil) |
| 14275 | 14374 | ||
| 14276 | (autoload (quote ibuffer-mark-by-mode-regexp) "ibuf-ext" "\ | 14375 | (autoload 'ibuffer-mark-by-mode-regexp "ibuf-ext" "\ |
| 14277 | Mark all buffers whose major mode matches REGEXP. | 14376 | Mark all buffers whose major mode matches REGEXP. |
| 14278 | 14377 | ||
| 14279 | \(fn REGEXP)" t nil) | 14378 | \(fn REGEXP)" t nil) |
| 14280 | 14379 | ||
| 14281 | (autoload (quote ibuffer-mark-by-file-name-regexp) "ibuf-ext" "\ | 14380 | (autoload 'ibuffer-mark-by-file-name-regexp "ibuf-ext" "\ |
| 14282 | Mark all buffers whose file name matches REGEXP. | 14381 | Mark all buffers whose file name matches REGEXP. |
| 14283 | 14382 | ||
| 14284 | \(fn REGEXP)" t nil) | 14383 | \(fn REGEXP)" t nil) |
| 14285 | 14384 | ||
| 14286 | (autoload (quote ibuffer-mark-by-mode) "ibuf-ext" "\ | 14385 | (autoload 'ibuffer-mark-by-mode "ibuf-ext" "\ |
| 14287 | Mark all buffers whose major mode equals MODE. | 14386 | Mark all buffers whose major mode equals MODE. |
| 14288 | 14387 | ||
| 14289 | \(fn MODE)" t nil) | 14388 | \(fn MODE)" t nil) |
| 14290 | 14389 | ||
| 14291 | (autoload (quote ibuffer-mark-modified-buffers) "ibuf-ext" "\ | 14390 | (autoload 'ibuffer-mark-modified-buffers "ibuf-ext" "\ |
| 14292 | Mark all modified buffers. | 14391 | Mark all modified buffers. |
| 14293 | 14392 | ||
| 14294 | \(fn)" t nil) | 14393 | \(fn)" t nil) |
| 14295 | 14394 | ||
| 14296 | (autoload (quote ibuffer-mark-unsaved-buffers) "ibuf-ext" "\ | 14395 | (autoload 'ibuffer-mark-unsaved-buffers "ibuf-ext" "\ |
| 14297 | Mark all modified buffers that have an associated file. | 14396 | Mark all modified buffers that have an associated file. |
| 14298 | 14397 | ||
| 14299 | \(fn)" t nil) | 14398 | \(fn)" t nil) |
| 14300 | 14399 | ||
| 14301 | (autoload (quote ibuffer-mark-dissociated-buffers) "ibuf-ext" "\ | 14400 | (autoload 'ibuffer-mark-dissociated-buffers "ibuf-ext" "\ |
| 14302 | Mark all buffers whose associated file does not exist. | 14401 | Mark all buffers whose associated file does not exist. |
| 14303 | 14402 | ||
| 14304 | \(fn)" t nil) | 14403 | \(fn)" t nil) |
| 14305 | 14404 | ||
| 14306 | (autoload (quote ibuffer-mark-help-buffers) "ibuf-ext" "\ | 14405 | (autoload 'ibuffer-mark-help-buffers "ibuf-ext" "\ |
| 14307 | Mark buffers like *Help*, *Apropos*, *Info*. | 14406 | Mark buffers like *Help*, *Apropos*, *Info*. |
| 14308 | 14407 | ||
| 14309 | \(fn)" t nil) | 14408 | \(fn)" t nil) |
| 14310 | 14409 | ||
| 14311 | (autoload (quote ibuffer-mark-compressed-file-buffers) "ibuf-ext" "\ | 14410 | (autoload 'ibuffer-mark-compressed-file-buffers "ibuf-ext" "\ |
| 14312 | Mark buffers whose associated file is compressed. | 14411 | Mark buffers whose associated file is compressed. |
| 14313 | 14412 | ||
| 14314 | \(fn)" t nil) | 14413 | \(fn)" t nil) |
| 14315 | 14414 | ||
| 14316 | (autoload (quote ibuffer-mark-old-buffers) "ibuf-ext" "\ | 14415 | (autoload 'ibuffer-mark-old-buffers "ibuf-ext" "\ |
| 14317 | Mark buffers which have not been viewed in `ibuffer-old-time' hours. | 14416 | Mark buffers which have not been viewed in `ibuffer-old-time' hours. |
| 14318 | 14417 | ||
| 14319 | \(fn)" t nil) | 14418 | \(fn)" t nil) |
| 14320 | 14419 | ||
| 14321 | (autoload (quote ibuffer-mark-special-buffers) "ibuf-ext" "\ | 14420 | (autoload 'ibuffer-mark-special-buffers "ibuf-ext" "\ |
| 14322 | Mark all buffers whose name begins and ends with '*'. | 14421 | Mark all buffers whose name begins and ends with '*'. |
| 14323 | 14422 | ||
| 14324 | \(fn)" t nil) | 14423 | \(fn)" t nil) |
| 14325 | 14424 | ||
| 14326 | (autoload (quote ibuffer-mark-read-only-buffers) "ibuf-ext" "\ | 14425 | (autoload 'ibuffer-mark-read-only-buffers "ibuf-ext" "\ |
| 14327 | Mark all read-only buffers. | 14426 | Mark all read-only buffers. |
| 14328 | 14427 | ||
| 14329 | \(fn)" t nil) | 14428 | \(fn)" t nil) |
| 14330 | 14429 | ||
| 14331 | (autoload (quote ibuffer-mark-dired-buffers) "ibuf-ext" "\ | 14430 | (autoload 'ibuffer-mark-dired-buffers "ibuf-ext" "\ |
| 14332 | Mark all `dired' buffers. | 14431 | Mark all `dired' buffers. |
| 14333 | 14432 | ||
| 14334 | \(fn)" t nil) | 14433 | \(fn)" t nil) |
| 14335 | 14434 | ||
| 14336 | (autoload (quote ibuffer-do-occur) "ibuf-ext" "\ | 14435 | (autoload 'ibuffer-do-occur "ibuf-ext" "\ |
| 14337 | View lines which match REGEXP in all marked buffers. | 14436 | View lines which match REGEXP in all marked buffers. |
| 14338 | Optional argument NLINES says how many lines of context to display: it | 14437 | Optional argument NLINES says how many lines of context to display: it |
| 14339 | defaults to one. | 14438 | defaults to one. |
| @@ -14343,11 +14442,11 @@ defaults to one. | |||
| 14343 | ;;;*** | 14442 | ;;;*** |
| 14344 | 14443 | ||
| 14345 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter | 14444 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter |
| 14346 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (18104 | 14445 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (18088 |
| 14347 | ;;;;;; 24737)) | 14446 | ;;;;;; 55085)) |
| 14348 | ;;; Generated autoloads from ibuf-macs.el | 14447 | ;;; Generated autoloads from ibuf-macs.el |
| 14349 | 14448 | ||
| 14350 | (autoload (quote define-ibuffer-column) "ibuf-macs" "\ | 14449 | (autoload 'define-ibuffer-column "ibuf-macs" "\ |
| 14351 | Define a column SYMBOL for use with `ibuffer-formats'. | 14450 | Define a column SYMBOL for use with `ibuffer-formats'. |
| 14352 | 14451 | ||
| 14353 | BODY will be called with `buffer' bound to the buffer object, and | 14452 | BODY will be called with `buffer' bound to the buffer object, and |
| @@ -14372,7 +14471,7 @@ change its definition, you should explicitly call | |||
| 14372 | 14471 | ||
| 14373 | \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil (quote macro)) | 14472 | \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil (quote macro)) |
| 14374 | 14473 | ||
| 14375 | (autoload (quote define-ibuffer-sorter) "ibuf-macs" "\ | 14474 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ |
| 14376 | Define a method of sorting named NAME. | 14475 | Define a method of sorting named NAME. |
| 14377 | DOCUMENTATION is the documentation of the function, which will be called | 14476 | DOCUMENTATION is the documentation of the function, which will be called |
| 14378 | `ibuffer-do-sort-by-NAME'. | 14477 | `ibuffer-do-sort-by-NAME'. |
| @@ -14384,7 +14483,7 @@ value if and only if `a' is \"less than\" `b'. | |||
| 14384 | 14483 | ||
| 14385 | \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil (quote macro)) | 14484 | \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil (quote macro)) |
| 14386 | 14485 | ||
| 14387 | (autoload (quote define-ibuffer-op) "ibuf-macs" "\ | 14486 | (autoload 'define-ibuffer-op "ibuf-macs" "\ |
| 14388 | Generate a function which operates on a buffer. | 14487 | Generate a function which operates on a buffer. |
| 14389 | OP becomes the name of the function; if it doesn't begin with | 14488 | OP becomes the name of the function; if it doesn't begin with |
| 14390 | `ibuffer-do-', then that is prepended to it. | 14489 | `ibuffer-do-', then that is prepended to it. |
| @@ -14417,7 +14516,7 @@ macro for exactly what it does. | |||
| 14417 | 14516 | ||
| 14418 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil (quote macro)) | 14517 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil (quote macro)) |
| 14419 | 14518 | ||
| 14420 | (autoload (quote define-ibuffer-filter) "ibuf-macs" "\ | 14519 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ |
| 14421 | Define a filter named NAME. | 14520 | Define a filter named NAME. |
| 14422 | DOCUMENTATION is the documentation of the function. | 14521 | DOCUMENTATION is the documentation of the function. |
| 14423 | READER is a form which should read a qualifier from the user. | 14522 | READER is a form which should read a qualifier from the user. |
| @@ -14433,24 +14532,24 @@ bound to the current value of the filter. | |||
| 14433 | ;;;*** | 14532 | ;;;*** |
| 14434 | 14533 | ||
| 14435 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) | 14534 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) |
| 14436 | ;;;;;; "ibuffer" "ibuffer.el" (18104 24737)) | 14535 | ;;;;;; "ibuffer" "ibuffer.el" (18120 34749)) |
| 14437 | ;;; Generated autoloads from ibuffer.el | 14536 | ;;; Generated autoloads from ibuffer.el |
| 14438 | 14537 | ||
| 14439 | (autoload (quote ibuffer-list-buffers) "ibuffer" "\ | 14538 | (autoload 'ibuffer-list-buffers "ibuffer" "\ |
| 14440 | Display a list of buffers, in another window. | 14539 | Display a list of buffers, in another window. |
| 14441 | If optional argument FILES-ONLY is non-nil, then add a filter for | 14540 | If optional argument FILES-ONLY is non-nil, then add a filter for |
| 14442 | buffers which are visiting a file. | 14541 | buffers which are visiting a file. |
| 14443 | 14542 | ||
| 14444 | \(fn &optional FILES-ONLY)" t nil) | 14543 | \(fn &optional FILES-ONLY)" t nil) |
| 14445 | 14544 | ||
| 14446 | (autoload (quote ibuffer-other-window) "ibuffer" "\ | 14545 | (autoload 'ibuffer-other-window "ibuffer" "\ |
| 14447 | Like `ibuffer', but displayed in another window by default. | 14546 | Like `ibuffer', but displayed in another window by default. |
| 14448 | If optional argument FILES-ONLY is non-nil, then add a filter for | 14547 | If optional argument FILES-ONLY is non-nil, then add a filter for |
| 14449 | buffers which are visiting a file. | 14548 | buffers which are visiting a file. |
| 14450 | 14549 | ||
| 14451 | \(fn &optional FILES-ONLY)" t nil) | 14550 | \(fn &optional FILES-ONLY)" t nil) |
| 14452 | 14551 | ||
| 14453 | (autoload (quote ibuffer) "ibuffer" "\ | 14552 | (autoload 'ibuffer "ibuffer" "\ |
| 14454 | Begin using Ibuffer to edit a list of buffers. | 14553 | Begin using Ibuffer to edit a list of buffers. |
| 14455 | Type 'h' after entering ibuffer for more information. | 14554 | Type 'h' after entering ibuffer for more information. |
| 14456 | 14555 | ||
| @@ -14474,17 +14573,17 @@ FORMATS is the value to use for `ibuffer-formats'. | |||
| 14474 | 14573 | ||
| 14475 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file | 14574 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file |
| 14476 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" | 14575 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" |
| 14477 | ;;;;;; "calendar/icalendar.el" (18104 24745)) | 14576 | ;;;;;; "calendar/icalendar.el" (18173 8195)) |
| 14478 | ;;; Generated autoloads from calendar/icalendar.el | 14577 | ;;; Generated autoloads from calendar/icalendar.el |
| 14479 | 14578 | ||
| 14480 | (autoload (quote icalendar-export-file) "icalendar" "\ | 14579 | (autoload 'icalendar-export-file "icalendar" "\ |
| 14481 | Export diary file to iCalendar format. | 14580 | Export diary file to iCalendar format. |
| 14482 | All diary entries in the file DIARY-FILENAME are converted to iCalendar | 14581 | All diary entries in the file DIARY-FILENAME are converted to iCalendar |
| 14483 | format. The result is appended to the file ICAL-FILENAME. | 14582 | format. The result is appended to the file ICAL-FILENAME. |
| 14484 | 14583 | ||
| 14485 | \(fn DIARY-FILENAME ICAL-FILENAME)" t nil) | 14584 | \(fn DIARY-FILENAME ICAL-FILENAME)" t nil) |
| 14486 | 14585 | ||
| 14487 | (autoload (quote icalendar-export-region) "icalendar" "\ | 14586 | (autoload 'icalendar-export-region "icalendar" "\ |
| 14488 | Export region in diary file to iCalendar format. | 14587 | Export region in diary file to iCalendar format. |
| 14489 | All diary entries in the region from MIN to MAX in the current buffer are | 14588 | All diary entries in the region from MIN to MAX in the current buffer are |
| 14490 | converted to iCalendar format. The result is appended to the file | 14589 | converted to iCalendar format. The result is appended to the file |
| @@ -14495,7 +14594,7 @@ written into the buffer `*icalendar-errors*'. | |||
| 14495 | 14594 | ||
| 14496 | \(fn MIN MAX ICAL-FILENAME)" t nil) | 14595 | \(fn MIN MAX ICAL-FILENAME)" t nil) |
| 14497 | 14596 | ||
| 14498 | (autoload (quote icalendar-import-file) "icalendar" "\ | 14597 | (autoload 'icalendar-import-file "icalendar" "\ |
| 14499 | Import an iCalendar file and append to a diary file. | 14598 | Import an iCalendar file and append to a diary file. |
| 14500 | Argument ICAL-FILENAME output iCalendar file. | 14599 | Argument ICAL-FILENAME output iCalendar file. |
| 14501 | Argument DIARY-FILENAME input `diary-file'. | 14600 | Argument DIARY-FILENAME input `diary-file'. |
| @@ -14504,7 +14603,7 @@ non-marking or not. | |||
| 14504 | 14603 | ||
| 14505 | \(fn ICAL-FILENAME DIARY-FILENAME &optional NON-MARKING)" t nil) | 14604 | \(fn ICAL-FILENAME DIARY-FILENAME &optional NON-MARKING)" t nil) |
| 14506 | 14605 | ||
| 14507 | (autoload (quote icalendar-import-buffer) "icalendar" "\ | 14606 | (autoload 'icalendar-import-buffer "icalendar" "\ |
| 14508 | Extract iCalendar events from current buffer. | 14607 | Extract iCalendar events from current buffer. |
| 14509 | 14608 | ||
| 14510 | This function searches the current buffer for the first iCalendar | 14609 | This function searches the current buffer for the first iCalendar |
| @@ -14526,8 +14625,8 @@ buffer `*icalendar-errors*'. | |||
| 14526 | 14625 | ||
| 14527 | ;;;*** | 14626 | ;;;*** |
| 14528 | 14627 | ||
| 14529 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (18104 | 14628 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (18120 |
| 14530 | ;;;;;; 24737)) | 14629 | ;;;;;; 34749)) |
| 14531 | ;;; Generated autoloads from icomplete.el | 14630 | ;;; Generated autoloads from icomplete.el |
| 14532 | 14631 | ||
| 14533 | (defvar icomplete-mode nil "\ | 14632 | (defvar icomplete-mode nil "\ |
| @@ -14537,20 +14636,21 @@ Setting this variable directly does not take effect; | |||
| 14537 | either customize it (see the info node `Easy Customization') | 14636 | either customize it (see the info node `Easy Customization') |
| 14538 | or call the function `icomplete-mode'.") | 14637 | or call the function `icomplete-mode'.") |
| 14539 | 14638 | ||
| 14540 | (custom-autoload (quote icomplete-mode) "icomplete" nil) | 14639 | (custom-autoload 'icomplete-mode "icomplete" nil) |
| 14541 | 14640 | ||
| 14542 | (autoload (quote icomplete-mode) "icomplete" "\ | 14641 | (autoload 'icomplete-mode "icomplete" "\ |
| 14543 | Toggle incremental minibuffer completion for this Emacs session. | 14642 | Toggle incremental minibuffer completion for this Emacs session. |
| 14544 | With a numeric argument, turn Icomplete mode on iff ARG is positive. | 14643 | With a numeric argument, turn Icomplete mode on if ARG is positive, |
| 14644 | otherwise turn it off. | ||
| 14545 | 14645 | ||
| 14546 | \(fn &optional ARG)" t nil) | 14646 | \(fn &optional ARG)" t nil) |
| 14547 | 14647 | ||
| 14548 | ;;;*** | 14648 | ;;;*** |
| 14549 | 14649 | ||
| 14550 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (18104 24766)) | 14650 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (18088 55116)) |
| 14551 | ;;; Generated autoloads from progmodes/icon.el | 14651 | ;;; Generated autoloads from progmodes/icon.el |
| 14552 | 14652 | ||
| 14553 | (autoload (quote icon-mode) "icon" "\ | 14653 | (autoload 'icon-mode "icon" "\ |
| 14554 | Major mode for editing Icon code. | 14654 | Major mode for editing Icon code. |
| 14555 | Expression and list commands understand all Icon brackets. | 14655 | Expression and list commands understand all Icon brackets. |
| 14556 | Tab indents for Icon code. | 14656 | Tab indents for Icon code. |
| @@ -14588,10 +14688,10 @@ with no args, if that value is non-nil. | |||
| 14588 | ;;;*** | 14688 | ;;;*** |
| 14589 | 14689 | ||
| 14590 | ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" | 14690 | ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" |
| 14591 | ;;;;;; (18104 24767)) | 14691 | ;;;;;; (18201 33329)) |
| 14592 | ;;; Generated autoloads from progmodes/idlw-shell.el | 14692 | ;;; Generated autoloads from progmodes/idlw-shell.el |
| 14593 | 14693 | ||
| 14594 | (autoload (quote idlwave-shell) "idlw-shell" "\ | 14694 | (autoload 'idlwave-shell "idlw-shell" "\ |
| 14595 | Run an inferior IDL, with I/O through buffer `(idlwave-shell-buffer)'. | 14695 | Run an inferior IDL, with I/O through buffer `(idlwave-shell-buffer)'. |
| 14596 | If buffer exists but shell process is not running, start new IDL. | 14696 | If buffer exists but shell process is not running, start new IDL. |
| 14597 | If buffer exists and shell process is running, just switch to the buffer. | 14697 | If buffer exists and shell process is running, just switch to the buffer. |
| @@ -14614,10 +14714,10 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 14614 | ;;;*** | 14714 | ;;;*** |
| 14615 | 14715 | ||
| 14616 | ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" | 14716 | ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" |
| 14617 | ;;;;;; (18104 24767)) | 14717 | ;;;;;; (18197 21676)) |
| 14618 | ;;; Generated autoloads from progmodes/idlwave.el | 14718 | ;;; Generated autoloads from progmodes/idlwave.el |
| 14619 | 14719 | ||
| 14620 | (autoload (quote idlwave-mode) "idlwave" "\ | 14720 | (autoload 'idlwave-mode "idlwave" "\ |
| 14621 | Major mode for editing IDL source files (version 6.1_em22). | 14721 | Major mode for editing IDL source files (version 6.1_em22). |
| 14622 | 14722 | ||
| 14623 | The main features of this mode are | 14723 | The main features of this mode are |
| @@ -14749,8 +14849,8 @@ The main features of this mode are | |||
| 14749 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file | 14849 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file |
| 14750 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer | 14850 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer |
| 14751 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window | 14851 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window |
| 14752 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (18104 | 14852 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (18169 |
| 14753 | ;;;;;; 24737)) | 14853 | ;;;;;; 11931)) |
| 14754 | ;;; Generated autoloads from ido.el | 14854 | ;;; Generated autoloads from ido.el |
| 14755 | 14855 | ||
| 14756 | (defvar ido-mode nil "\ | 14856 | (defvar ido-mode nil "\ |
| @@ -14765,9 +14865,9 @@ should be enabled. The following values are possible: | |||
| 14765 | Setting this variable directly does not take effect; | 14865 | Setting this variable directly does not take effect; |
| 14766 | use either \\[customize] or the function `ido-mode'.") | 14866 | use either \\[customize] or the function `ido-mode'.") |
| 14767 | 14867 | ||
| 14768 | (custom-autoload (quote ido-mode) "ido" nil) | 14868 | (custom-autoload 'ido-mode "ido" nil) |
| 14769 | 14869 | ||
| 14770 | (autoload (quote ido-mode) "ido" "\ | 14870 | (autoload 'ido-mode "ido" "\ |
| 14771 | Toggle ido speed-ups on or off. | 14871 | Toggle ido speed-ups on or off. |
| 14772 | With ARG, turn ido speed-up on if arg is positive, off otherwise. | 14872 | With ARG, turn ido speed-up on if arg is positive, off otherwise. |
| 14773 | Turning on ido-mode will remap (via a minor-mode keymap) the default | 14873 | Turning on ido-mode will remap (via a minor-mode keymap) the default |
| @@ -14779,7 +14879,7 @@ This function also adds a hook to the minibuffer. | |||
| 14779 | 14879 | ||
| 14780 | \(fn &optional ARG)" t nil) | 14880 | \(fn &optional ARG)" t nil) |
| 14781 | 14881 | ||
| 14782 | (autoload (quote ido-switch-buffer) "ido" "\ | 14882 | (autoload 'ido-switch-buffer "ido" "\ |
| 14783 | Switch to another buffer. | 14883 | Switch to another buffer. |
| 14784 | The buffer is displayed according to `ido-default-buffer-method' -- the | 14884 | The buffer is displayed according to `ido-default-buffer-method' -- the |
| 14785 | default is to show it in the same window, unless it is already visible | 14885 | default is to show it in the same window, unless it is already visible |
| @@ -14815,47 +14915,47 @@ in a separate window. | |||
| 14815 | 14915 | ||
| 14816 | \(fn)" t nil) | 14916 | \(fn)" t nil) |
| 14817 | 14917 | ||
| 14818 | (autoload (quote ido-switch-buffer-other-window) "ido" "\ | 14918 | (autoload 'ido-switch-buffer-other-window "ido" "\ |
| 14819 | Switch to another buffer and show it in another window. | 14919 | Switch to another buffer and show it in another window. |
| 14820 | The buffer name is selected interactively by typing a substring. | 14920 | The buffer name is selected interactively by typing a substring. |
| 14821 | For details of keybindings, see `ido-switch-buffer'. | 14921 | For details of keybindings, see `ido-switch-buffer'. |
| 14822 | 14922 | ||
| 14823 | \(fn)" t nil) | 14923 | \(fn)" t nil) |
| 14824 | 14924 | ||
| 14825 | (autoload (quote ido-display-buffer) "ido" "\ | 14925 | (autoload 'ido-display-buffer "ido" "\ |
| 14826 | Display a buffer in another window but don't select it. | 14926 | Display a buffer in another window but don't select it. |
| 14827 | The buffer name is selected interactively by typing a substring. | 14927 | The buffer name is selected interactively by typing a substring. |
| 14828 | For details of keybindings, see `ido-switch-buffer'. | 14928 | For details of keybindings, see `ido-switch-buffer'. |
| 14829 | 14929 | ||
| 14830 | \(fn)" t nil) | 14930 | \(fn)" t nil) |
| 14831 | 14931 | ||
| 14832 | (autoload (quote ido-kill-buffer) "ido" "\ | 14932 | (autoload 'ido-kill-buffer "ido" "\ |
| 14833 | Kill a buffer. | 14933 | Kill a buffer. |
| 14834 | The buffer name is selected interactively by typing a substring. | 14934 | The buffer name is selected interactively by typing a substring. |
| 14835 | For details of keybindings, see `ido-switch-buffer'. | 14935 | For details of keybindings, see `ido-switch-buffer'. |
| 14836 | 14936 | ||
| 14837 | \(fn)" t nil) | 14937 | \(fn)" t nil) |
| 14838 | 14938 | ||
| 14839 | (autoload (quote ido-insert-buffer) "ido" "\ | 14939 | (autoload 'ido-insert-buffer "ido" "\ |
| 14840 | Insert contents of a buffer in current buffer after point. | 14940 | Insert contents of a buffer in current buffer after point. |
| 14841 | The buffer name is selected interactively by typing a substring. | 14941 | The buffer name is selected interactively by typing a substring. |
| 14842 | For details of keybindings, see `ido-switch-buffer'. | 14942 | For details of keybindings, see `ido-switch-buffer'. |
| 14843 | 14943 | ||
| 14844 | \(fn)" t nil) | 14944 | \(fn)" t nil) |
| 14845 | 14945 | ||
| 14846 | (autoload (quote ido-switch-buffer-other-frame) "ido" "\ | 14946 | (autoload 'ido-switch-buffer-other-frame "ido" "\ |
| 14847 | Switch to another buffer and show it in another frame. | 14947 | Switch to another buffer and show it in another frame. |
| 14848 | The buffer name is selected interactively by typing a substring. | 14948 | The buffer name is selected interactively by typing a substring. |
| 14849 | For details of keybindings, see `ido-switch-buffer'. | 14949 | For details of keybindings, see `ido-switch-buffer'. |
| 14850 | 14950 | ||
| 14851 | \(fn)" t nil) | 14951 | \(fn)" t nil) |
| 14852 | 14952 | ||
| 14853 | (autoload (quote ido-find-file-in-dir) "ido" "\ | 14953 | (autoload 'ido-find-file-in-dir "ido" "\ |
| 14854 | Switch to another file starting from DIR. | 14954 | Switch to another file starting from DIR. |
| 14855 | 14955 | ||
| 14856 | \(fn DIR)" t nil) | 14956 | \(fn DIR)" t nil) |
| 14857 | 14957 | ||
| 14858 | (autoload (quote ido-find-file) "ido" "\ | 14958 | (autoload 'ido-find-file "ido" "\ |
| 14859 | Edit file with name obtained via minibuffer. | 14959 | Edit file with name obtained via minibuffer. |
| 14860 | The file is displayed according to `ido-default-file-method' -- the | 14960 | The file is displayed according to `ido-default-file-method' -- the |
| 14861 | default is to show it in the same window, unless it is already | 14961 | default is to show it in the same window, unless it is already |
| @@ -14898,77 +14998,77 @@ in a separate window. | |||
| 14898 | 14998 | ||
| 14899 | \(fn)" t nil) | 14999 | \(fn)" t nil) |
| 14900 | 15000 | ||
| 14901 | (autoload (quote ido-find-file-other-window) "ido" "\ | 15001 | (autoload 'ido-find-file-other-window "ido" "\ |
| 14902 | Switch to another file and show it in another window. | 15002 | Switch to another file and show it in another window. |
| 14903 | The file name is selected interactively by typing a substring. | 15003 | The file name is selected interactively by typing a substring. |
| 14904 | For details of keybindings, see `ido-find-file'. | 15004 | For details of keybindings, see `ido-find-file'. |
| 14905 | 15005 | ||
| 14906 | \(fn)" t nil) | 15006 | \(fn)" t nil) |
| 14907 | 15007 | ||
| 14908 | (autoload (quote ido-find-alternate-file) "ido" "\ | 15008 | (autoload 'ido-find-alternate-file "ido" "\ |
| 14909 | Switch to another file and show it in another window. | 15009 | Switch to another file and show it in another window. |
| 14910 | The file name is selected interactively by typing a substring. | 15010 | The file name is selected interactively by typing a substring. |
| 14911 | For details of keybindings, see `ido-find-file'. | 15011 | For details of keybindings, see `ido-find-file'. |
| 14912 | 15012 | ||
| 14913 | \(fn)" t nil) | 15013 | \(fn)" t nil) |
| 14914 | 15014 | ||
| 14915 | (autoload (quote ido-find-file-read-only) "ido" "\ | 15015 | (autoload 'ido-find-file-read-only "ido" "\ |
| 14916 | Edit file read-only with name obtained via minibuffer. | 15016 | Edit file read-only with name obtained via minibuffer. |
| 14917 | The file name is selected interactively by typing a substring. | 15017 | The file name is selected interactively by typing a substring. |
| 14918 | For details of keybindings, see `ido-find-file'. | 15018 | For details of keybindings, see `ido-find-file'. |
| 14919 | 15019 | ||
| 14920 | \(fn)" t nil) | 15020 | \(fn)" t nil) |
| 14921 | 15021 | ||
| 14922 | (autoload (quote ido-find-file-read-only-other-window) "ido" "\ | 15022 | (autoload 'ido-find-file-read-only-other-window "ido" "\ |
| 14923 | Edit file read-only in other window with name obtained via minibuffer. | 15023 | Edit file read-only in other window with name obtained via minibuffer. |
| 14924 | The file name is selected interactively by typing a substring. | 15024 | The file name is selected interactively by typing a substring. |
| 14925 | For details of keybindings, see `ido-find-file'. | 15025 | For details of keybindings, see `ido-find-file'. |
| 14926 | 15026 | ||
| 14927 | \(fn)" t nil) | 15027 | \(fn)" t nil) |
| 14928 | 15028 | ||
| 14929 | (autoload (quote ido-find-file-read-only-other-frame) "ido" "\ | 15029 | (autoload 'ido-find-file-read-only-other-frame "ido" "\ |
| 14930 | Edit file read-only in other frame with name obtained via minibuffer. | 15030 | Edit file read-only in other frame with name obtained via minibuffer. |
| 14931 | The file name is selected interactively by typing a substring. | 15031 | The file name is selected interactively by typing a substring. |
| 14932 | For details of keybindings, see `ido-find-file'. | 15032 | For details of keybindings, see `ido-find-file'. |
| 14933 | 15033 | ||
| 14934 | \(fn)" t nil) | 15034 | \(fn)" t nil) |
| 14935 | 15035 | ||
| 14936 | (autoload (quote ido-display-file) "ido" "\ | 15036 | (autoload 'ido-display-file "ido" "\ |
| 14937 | Display a file in another window but don't select it. | 15037 | Display a file in another window but don't select it. |
| 14938 | The file name is selected interactively by typing a substring. | 15038 | The file name is selected interactively by typing a substring. |
| 14939 | For details of keybindings, see `ido-find-file'. | 15039 | For details of keybindings, see `ido-find-file'. |
| 14940 | 15040 | ||
| 14941 | \(fn)" t nil) | 15041 | \(fn)" t nil) |
| 14942 | 15042 | ||
| 14943 | (autoload (quote ido-find-file-other-frame) "ido" "\ | 15043 | (autoload 'ido-find-file-other-frame "ido" "\ |
| 14944 | Switch to another file and show it in another frame. | 15044 | Switch to another file and show it in another frame. |
| 14945 | The file name is selected interactively by typing a substring. | 15045 | The file name is selected interactively by typing a substring. |
| 14946 | For details of keybindings, see `ido-find-file'. | 15046 | For details of keybindings, see `ido-find-file'. |
| 14947 | 15047 | ||
| 14948 | \(fn)" t nil) | 15048 | \(fn)" t nil) |
| 14949 | 15049 | ||
| 14950 | (autoload (quote ido-write-file) "ido" "\ | 15050 | (autoload 'ido-write-file "ido" "\ |
| 14951 | Write current buffer to a file. | 15051 | Write current buffer to a file. |
| 14952 | The file name is selected interactively by typing a substring. | 15052 | The file name is selected interactively by typing a substring. |
| 14953 | For details of keybindings, see `ido-find-file'. | 15053 | For details of keybindings, see `ido-find-file'. |
| 14954 | 15054 | ||
| 14955 | \(fn)" t nil) | 15055 | \(fn)" t nil) |
| 14956 | 15056 | ||
| 14957 | (autoload (quote ido-insert-file) "ido" "\ | 15057 | (autoload 'ido-insert-file "ido" "\ |
| 14958 | Insert contents of file in current buffer. | 15058 | Insert contents of file in current buffer. |
| 14959 | The file name is selected interactively by typing a substring. | 15059 | The file name is selected interactively by typing a substring. |
| 14960 | For details of keybindings, see `ido-find-file'. | 15060 | For details of keybindings, see `ido-find-file'. |
| 14961 | 15061 | ||
| 14962 | \(fn)" t nil) | 15062 | \(fn)" t nil) |
| 14963 | 15063 | ||
| 14964 | (autoload (quote ido-dired) "ido" "\ | 15064 | (autoload 'ido-dired "ido" "\ |
| 14965 | Call `dired' the ido way. | 15065 | Call `dired' the ido way. |
| 14966 | The directory is selected interactively by typing a substring. | 15066 | The directory is selected interactively by typing a substring. |
| 14967 | For details of keybindings, see `ido-find-file'. | 15067 | For details of keybindings, see `ido-find-file'. |
| 14968 | 15068 | ||
| 14969 | \(fn)" t nil) | 15069 | \(fn)" t nil) |
| 14970 | 15070 | ||
| 14971 | (autoload (quote ido-read-buffer) "ido" "\ | 15071 | (autoload 'ido-read-buffer "ido" "\ |
| 14972 | Ido replacement for the built-in `read-buffer'. | 15072 | Ido replacement for the built-in `read-buffer'. |
| 14973 | Return the name of a buffer selected. | 15073 | Return the name of a buffer selected. |
| 14974 | PROMPT is the prompt to give to the user. DEFAULT if given is the default | 15074 | PROMPT is the prompt to give to the user. DEFAULT if given is the default |
| @@ -14977,21 +15077,21 @@ If REQUIRE-MATCH is non-nil, an existing buffer must be selected. | |||
| 14977 | 15077 | ||
| 14978 | \(fn PROMPT &optional DEFAULT REQUIRE-MATCH)" nil nil) | 15078 | \(fn PROMPT &optional DEFAULT REQUIRE-MATCH)" nil nil) |
| 14979 | 15079 | ||
| 14980 | (autoload (quote ido-read-file-name) "ido" "\ | 15080 | (autoload 'ido-read-file-name "ido" "\ |
| 14981 | Ido replacement for the built-in `read-file-name'. | 15081 | Ido replacement for the built-in `read-file-name'. |
| 14982 | Read file name, prompting with PROMPT and completing in directory DIR. | 15082 | Read file name, prompting with PROMPT and completing in directory DIR. |
| 14983 | See `read-file-name' for additional parameters. | 15083 | See `read-file-name' for additional parameters. |
| 14984 | 15084 | ||
| 14985 | \(fn PROMPT &optional DIR DEFAULT-FILENAME MUSTMATCH INITIAL PREDICATE)" nil nil) | 15085 | \(fn PROMPT &optional DIR DEFAULT-FILENAME MUSTMATCH INITIAL PREDICATE)" nil nil) |
| 14986 | 15086 | ||
| 14987 | (autoload (quote ido-read-directory-name) "ido" "\ | 15087 | (autoload 'ido-read-directory-name "ido" "\ |
| 14988 | Ido replacement for the built-in `read-directory-name'. | 15088 | Ido replacement for the built-in `read-directory-name'. |
| 14989 | Read directory name, prompting with PROMPT and completing in directory DIR. | 15089 | Read directory name, prompting with PROMPT and completing in directory DIR. |
| 14990 | See `read-directory-name' for additional parameters. | 15090 | See `read-directory-name' for additional parameters. |
| 14991 | 15091 | ||
| 14992 | \(fn PROMPT &optional DIR DEFAULT-DIRNAME MUSTMATCH INITIAL)" nil nil) | 15092 | \(fn PROMPT &optional DIR DEFAULT-DIRNAME MUSTMATCH INITIAL)" nil nil) |
| 14993 | 15093 | ||
| 14994 | (autoload (quote ido-completing-read) "ido" "\ | 15094 | (autoload 'ido-completing-read "ido" "\ |
| 14995 | Ido replacement for the built-in `completing-read'. | 15095 | Ido replacement for the built-in `completing-read'. |
| 14996 | Read a string in the minibuffer with ido-style completion. | 15096 | Read a string in the minibuffer with ido-style completion. |
| 14997 | PROMPT is a string to prompt with; normally it ends in a colon and a space. | 15097 | PROMPT is a string to prompt with; normally it ends in a colon and a space. |
| @@ -15011,11 +15111,11 @@ DEF, if non-nil, is the default value. | |||
| 15011 | 15111 | ||
| 15012 | ;;;*** | 15112 | ;;;*** |
| 15013 | 15113 | ||
| 15014 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (18104 24737)) | 15114 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (18214 4479)) |
| 15015 | ;;; Generated autoloads from ielm.el | 15115 | ;;; Generated autoloads from ielm.el |
| 15016 | (add-hook 'same-window-buffer-names "*ielm*") | 15116 | (add-hook 'same-window-buffer-names "*ielm*") |
| 15017 | 15117 | ||
| 15018 | (autoload (quote ielm) "ielm" "\ | 15118 | (autoload 'ielm "ielm" "\ |
| 15019 | Interactively evaluate Emacs Lisp expressions. | 15119 | Interactively evaluate Emacs Lisp expressions. |
| 15020 | Switches to the buffer `*ielm*', or creates it if it does not exist. | 15120 | Switches to the buffer `*ielm*', or creates it if it does not exist. |
| 15021 | 15121 | ||
| @@ -15024,15 +15124,15 @@ Switches to the buffer `*ielm*', or creates it if it does not exist. | |||
| 15024 | ;;;*** | 15124 | ;;;*** |
| 15025 | 15125 | ||
| 15026 | ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" | 15126 | ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" |
| 15027 | ;;;;;; (18104 24737)) | 15127 | ;;;;;; (18088 55085)) |
| 15028 | ;;; Generated autoloads from iimage.el | 15128 | ;;; Generated autoloads from iimage.el |
| 15029 | 15129 | ||
| 15030 | (autoload (quote turn-on-iimage-mode) "iimage" "\ | 15130 | (autoload 'turn-on-iimage-mode "iimage" "\ |
| 15031 | Unconditionally turn on iimage mode. | 15131 | Unconditionally turn on iimage mode. |
| 15032 | 15132 | ||
| 15033 | \(fn)" t nil) | 15133 | \(fn)" t nil) |
| 15034 | 15134 | ||
| 15035 | (autoload (quote iimage-mode) "iimage" "\ | 15135 | (autoload 'iimage-mode "iimage" "\ |
| 15036 | Toggle inline image minor mode. | 15136 | Toggle inline image minor mode. |
| 15037 | 15137 | ||
| 15038 | \(fn &optional ARG)" t nil) | 15138 | \(fn &optional ARG)" t nil) |
| @@ -15043,38 +15143,38 @@ Toggle inline image minor mode. | |||
| 15043 | ;;;;;; insert-image put-image create-image image-type-auto-detected-p | 15143 | ;;;;;; insert-image put-image create-image image-type-auto-detected-p |
| 15044 | ;;;;;; image-type-available-p image-type image-type-from-file-name | 15144 | ;;;;;; image-type-available-p image-type image-type-from-file-name |
| 15045 | ;;;;;; image-type-from-file-header image-type-from-buffer image-type-from-data) | 15145 | ;;;;;; image-type-from-file-header image-type-from-buffer image-type-from-data) |
| 15046 | ;;;;;; "image" "image.el" (18104 24737)) | 15146 | ;;;;;; "image" "image.el" (18186 14736)) |
| 15047 | ;;; Generated autoloads from image.el | 15147 | ;;; Generated autoloads from image.el |
| 15048 | 15148 | ||
| 15049 | (autoload (quote image-type-from-data) "image" "\ | 15149 | (autoload 'image-type-from-data "image" "\ |
| 15050 | Determine the image type from image data DATA. | 15150 | Determine the image type from image data DATA. |
| 15051 | Value is a symbol specifying the image type or nil if type cannot | 15151 | Value is a symbol specifying the image type or nil if type cannot |
| 15052 | be determined. | 15152 | be determined. |
| 15053 | 15153 | ||
| 15054 | \(fn DATA)" nil nil) | 15154 | \(fn DATA)" nil nil) |
| 15055 | 15155 | ||
| 15056 | (autoload (quote image-type-from-buffer) "image" "\ | 15156 | (autoload 'image-type-from-buffer "image" "\ |
| 15057 | Determine the image type from data in the current buffer. | 15157 | Determine the image type from data in the current buffer. |
| 15058 | Value is a symbol specifying the image type or nil if type cannot | 15158 | Value is a symbol specifying the image type or nil if type cannot |
| 15059 | be determined. | 15159 | be determined. |
| 15060 | 15160 | ||
| 15061 | \(fn)" nil nil) | 15161 | \(fn)" nil nil) |
| 15062 | 15162 | ||
| 15063 | (autoload (quote image-type-from-file-header) "image" "\ | 15163 | (autoload 'image-type-from-file-header "image" "\ |
| 15064 | Determine the type of image file FILE from its first few bytes. | 15164 | Determine the type of image file FILE from its first few bytes. |
| 15065 | Value is a symbol specifying the image type, or nil if type cannot | 15165 | Value is a symbol specifying the image type, or nil if type cannot |
| 15066 | be determined. | 15166 | be determined. |
| 15067 | 15167 | ||
| 15068 | \(fn FILE)" nil nil) | 15168 | \(fn FILE)" nil nil) |
| 15069 | 15169 | ||
| 15070 | (autoload (quote image-type-from-file-name) "image" "\ | 15170 | (autoload 'image-type-from-file-name "image" "\ |
| 15071 | Determine the type of image file FILE from its name. | 15171 | Determine the type of image file FILE from its name. |
| 15072 | Value is a symbol specifying the image type, or nil if type cannot | 15172 | Value is a symbol specifying the image type, or nil if type cannot |
| 15073 | be determined. | 15173 | be determined. |
| 15074 | 15174 | ||
| 15075 | \(fn FILE)" nil nil) | 15175 | \(fn FILE)" nil nil) |
| 15076 | 15176 | ||
| 15077 | (autoload (quote image-type) "image" "\ | 15177 | (autoload 'image-type "image" "\ |
| 15078 | Determine and return image type. | 15178 | Determine and return image type. |
| 15079 | SOURCE is an image file name or image data. | 15179 | SOURCE is an image file name or image data. |
| 15080 | Optional TYPE is a symbol describing the image type. If TYPE is omitted | 15180 | Optional TYPE is a symbol describing the image type. If TYPE is omitted |
| @@ -15085,23 +15185,25 @@ Optional DATA-P non-nil means SOURCE is a string containing image data. | |||
| 15085 | 15185 | ||
| 15086 | \(fn SOURCE &optional TYPE DATA-P)" nil nil) | 15186 | \(fn SOURCE &optional TYPE DATA-P)" nil nil) |
| 15087 | 15187 | ||
| 15088 | (autoload (quote image-type-available-p) "image" "\ | 15188 | (autoload 'image-type-available-p "image" "\ |
| 15089 | Return non-nil if image type TYPE is available. | 15189 | Return non-nil if image type TYPE is available. |
| 15090 | Image types are symbols like `xbm' or `jpeg'. | 15190 | Image types are symbols like `xbm' or `jpeg'. |
| 15091 | 15191 | ||
| 15092 | \(fn TYPE)" nil nil) | 15192 | \(fn TYPE)" nil nil) |
| 15093 | 15193 | ||
| 15094 | (autoload (quote image-type-auto-detected-p) "image" "\ | 15194 | (autoload 'image-type-auto-detected-p "image" "\ |
| 15095 | Return t iff the current buffer contains an auto-detectable image. | 15195 | Return t if the current buffer contains an auto-detectable image. |
| 15096 | This function is intended to be used from `magic-fallback-mode-alist'. | 15196 | This function is intended to be used from `magic-fallback-mode-alist'. |
| 15097 | 15197 | ||
| 15098 | The buffer is considered to contain an auto-detectable image if | 15198 | The buffer is considered to contain an auto-detectable image if |
| 15099 | its beginning matches an image type in `image-type-header-regexps', | 15199 | its beginning matches an image type in `image-type-header-regexps', |
| 15100 | and that image type is present in `image-type-auto-detectable'. | 15200 | and that image type is present in `image-type-auto-detectable' with a |
| 15201 | non-nil value. If that value is non-nil, but not t, then the image type | ||
| 15202 | must be available. | ||
| 15101 | 15203 | ||
| 15102 | \(fn)" nil nil) | 15204 | \(fn)" nil nil) |
| 15103 | 15205 | ||
| 15104 | (autoload (quote create-image) "image" "\ | 15206 | (autoload 'create-image "image" "\ |
| 15105 | Create an image. | 15207 | Create an image. |
| 15106 | FILE-OR-DATA is an image file name or image data. | 15208 | FILE-OR-DATA is an image file name or image data. |
| 15107 | Optional TYPE is a symbol describing the image type. If TYPE is omitted | 15209 | Optional TYPE is a symbol describing the image type. If TYPE is omitted |
| @@ -15115,9 +15217,13 @@ Value is the image created, or nil if images of type TYPE are not supported. | |||
| 15115 | 15217 | ||
| 15116 | Images should not be larger than specified by `max-image-size'. | 15218 | Images should not be larger than specified by `max-image-size'. |
| 15117 | 15219 | ||
| 15220 | Image file names that are not absolute are searched for in the | ||
| 15221 | \"images\" sub-directory of `data-directory' and | ||
| 15222 | `x-bitmap-file-path' (in that order). | ||
| 15223 | |||
| 15118 | \(fn FILE-OR-DATA &optional TYPE DATA-P &rest PROPS)" nil nil) | 15224 | \(fn FILE-OR-DATA &optional TYPE DATA-P &rest PROPS)" nil nil) |
| 15119 | 15225 | ||
| 15120 | (autoload (quote put-image) "image" "\ | 15226 | (autoload 'put-image "image" "\ |
| 15121 | Put image IMAGE in front of POS in the current buffer. | 15227 | Put image IMAGE in front of POS in the current buffer. |
| 15122 | IMAGE must be an image created with `create-image' or `defimage'. | 15228 | IMAGE must be an image created with `create-image' or `defimage'. |
| 15123 | IMAGE is displayed by putting an overlay into the current buffer with a | 15229 | IMAGE is displayed by putting an overlay into the current buffer with a |
| @@ -15131,7 +15237,7 @@ means display it in the right marginal area. | |||
| 15131 | 15237 | ||
| 15132 | \(fn IMAGE POS &optional STRING AREA)" nil nil) | 15238 | \(fn IMAGE POS &optional STRING AREA)" nil nil) |
| 15133 | 15239 | ||
| 15134 | (autoload (quote insert-image) "image" "\ | 15240 | (autoload 'insert-image "image" "\ |
| 15135 | Insert IMAGE into current buffer at point. | 15241 | Insert IMAGE into current buffer at point. |
| 15136 | IMAGE is displayed by inserting STRING into the current buffer | 15242 | IMAGE is displayed by inserting STRING into the current buffer |
| 15137 | with a `display' property whose value is the image. STRING is | 15243 | with a `display' property whose value is the image. STRING is |
| @@ -15148,7 +15254,7 @@ height of the image; integer values are taken as pixel values. | |||
| 15148 | 15254 | ||
| 15149 | \(fn IMAGE &optional STRING AREA SLICE)" nil nil) | 15255 | \(fn IMAGE &optional STRING AREA SLICE)" nil nil) |
| 15150 | 15256 | ||
| 15151 | (autoload (quote insert-sliced-image) "image" "\ | 15257 | (autoload 'insert-sliced-image "image" "\ |
| 15152 | Insert IMAGE into current buffer at point. | 15258 | Insert IMAGE into current buffer at point. |
| 15153 | IMAGE is displayed by inserting STRING into the current buffer | 15259 | IMAGE is displayed by inserting STRING into the current buffer |
| 15154 | with a `display' property whose value is the image. STRING is | 15260 | with a `display' property whose value is the image. STRING is |
| @@ -15161,14 +15267,14 @@ The image is automatically split into ROW x COLS slices. | |||
| 15161 | 15267 | ||
| 15162 | \(fn IMAGE &optional STRING AREA ROWS COLS)" nil nil) | 15268 | \(fn IMAGE &optional STRING AREA ROWS COLS)" nil nil) |
| 15163 | 15269 | ||
| 15164 | (autoload (quote remove-images) "image" "\ | 15270 | (autoload 'remove-images "image" "\ |
| 15165 | Remove images between START and END in BUFFER. | 15271 | Remove images between START and END in BUFFER. |
| 15166 | Remove only images that were put in BUFFER with calls to `put-image'. | 15272 | Remove only images that were put in BUFFER with calls to `put-image'. |
| 15167 | BUFFER nil or omitted means use the current buffer. | 15273 | BUFFER nil or omitted means use the current buffer. |
| 15168 | 15274 | ||
| 15169 | \(fn START END &optional BUFFER)" nil nil) | 15275 | \(fn START END &optional BUFFER)" nil nil) |
| 15170 | 15276 | ||
| 15171 | (autoload (quote find-image) "image" "\ | 15277 | (autoload 'find-image "image" "\ |
| 15172 | Find an image, choosing one of a list of image specifications. | 15278 | Find an image, choosing one of a list of image specifications. |
| 15173 | 15279 | ||
| 15174 | SPECS is a list of image specifications. | 15280 | SPECS is a list of image specifications. |
| @@ -15189,7 +15295,7 @@ Image files should not be larger than specified by `max-image-size'. | |||
| 15189 | 15295 | ||
| 15190 | \(fn SPECS)" nil nil) | 15296 | \(fn SPECS)" nil nil) |
| 15191 | 15297 | ||
| 15192 | (autoload (quote defimage) "image" "\ | 15298 | (autoload 'defimage "image" "\ |
| 15193 | Define SYMBOL as an image. | 15299 | Define SYMBOL as an image. |
| 15194 | 15300 | ||
| 15195 | SPECS is a list of image specifications. DOC is an optional | 15301 | SPECS is a list of image specifications. DOC is an optional |
| @@ -15220,15 +15326,15 @@ Example: | |||
| 15220 | ;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag | 15326 | ;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag |
| 15221 | ;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs | 15327 | ;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs |
| 15222 | ;;;;;; image-dired-dired-with-window-configuration image-dired-dired-insert-marked-thumbs) | 15328 | ;;;;;; image-dired-dired-with-window-configuration image-dired-dired-insert-marked-thumbs) |
| 15223 | ;;;;;; "image-dired" "image-dired.el" (18104 24737)) | 15329 | ;;;;;; "image-dired" "image-dired.el" (18202 3995)) |
| 15224 | ;;; Generated autoloads from image-dired.el | 15330 | ;;; Generated autoloads from image-dired.el |
| 15225 | 15331 | ||
| 15226 | (autoload (quote image-dired-dired-insert-marked-thumbs) "image-dired" "\ | 15332 | (autoload 'image-dired-dired-insert-marked-thumbs "image-dired" "\ |
| 15227 | Insert thumbnails before file names of marked files in the dired buffer. | 15333 | Insert thumbnails before file names of marked files in the dired buffer. |
| 15228 | 15334 | ||
| 15229 | \(fn)" t nil) | 15335 | \(fn)" t nil) |
| 15230 | 15336 | ||
| 15231 | (autoload (quote image-dired-dired-with-window-configuration) "image-dired" "\ | 15337 | (autoload 'image-dired-dired-with-window-configuration "image-dired" "\ |
| 15232 | Open directory DIR and create a default window configuration. | 15338 | Open directory DIR and create a default window configuration. |
| 15233 | 15339 | ||
| 15234 | Convenience command that: | 15340 | Convenience command that: |
| @@ -15248,7 +15354,7 @@ calling `image-dired-restore-window-configuration'. | |||
| 15248 | 15354 | ||
| 15249 | \(fn DIR &optional ARG)" t nil) | 15355 | \(fn DIR &optional ARG)" t nil) |
| 15250 | 15356 | ||
| 15251 | (autoload (quote image-dired-display-thumbs) "image-dired" "\ | 15357 | (autoload 'image-dired-display-thumbs "image-dired" "\ |
| 15252 | Display thumbnails of all marked files, in `image-dired-thumbnail-buffer'. | 15358 | Display thumbnails of all marked files, in `image-dired-thumbnail-buffer'. |
| 15253 | If a thumbnail image does not exist for a file, it is created on the | 15359 | If a thumbnail image does not exist for a file, it is created on the |
| 15254 | fly. With prefix argument ARG, display only thumbnail for file at | 15360 | fly. With prefix argument ARG, display only thumbnail for file at |
| @@ -15271,7 +15377,7 @@ thumbnail buffer to be selected. | |||
| 15271 | 15377 | ||
| 15272 | \(fn &optional ARG APPEND DO-NOT-POP)" t nil) | 15378 | \(fn &optional ARG APPEND DO-NOT-POP)" t nil) |
| 15273 | 15379 | ||
| 15274 | (autoload (quote image-dired-show-all-from-dir) "image-dired" "\ | 15380 | (autoload 'image-dired-show-all-from-dir "image-dired" "\ |
| 15275 | Make a preview buffer for all images in DIR and display it. | 15381 | Make a preview buffer for all images in DIR and display it. |
| 15276 | If the number of files in DIR matching `image-file-name-regexp' | 15382 | If the number of files in DIR matching `image-file-name-regexp' |
| 15277 | exceeds `image-dired-show-all-from-dir-max-files', a warning will be | 15383 | exceeds `image-dired-show-all-from-dir-max-files', a warning will be |
| @@ -15279,61 +15385,61 @@ displayed. | |||
| 15279 | 15385 | ||
| 15280 | \(fn DIR)" t nil) | 15386 | \(fn DIR)" t nil) |
| 15281 | 15387 | ||
| 15282 | (defalias (quote image-dired) (quote image-dired-show-all-from-dir)) | 15388 | (defalias 'image-dired 'image-dired-show-all-from-dir) |
| 15283 | 15389 | ||
| 15284 | (defalias (quote tumme) (quote image-dired-show-all-from-dir)) | 15390 | (defalias 'tumme 'image-dired-show-all-from-dir) |
| 15285 | 15391 | ||
| 15286 | (autoload (quote image-dired-tag-files) "image-dired" "\ | 15392 | (autoload 'image-dired-tag-files "image-dired" "\ |
| 15287 | Tag marked file(s) in dired. With prefix ARG, tag file at point. | 15393 | Tag marked file(s) in dired. With prefix ARG, tag file at point. |
| 15288 | 15394 | ||
| 15289 | \(fn ARG)" t nil) | 15395 | \(fn ARG)" t nil) |
| 15290 | 15396 | ||
| 15291 | (autoload (quote image-dired-delete-tag) "image-dired" "\ | 15397 | (autoload 'image-dired-delete-tag "image-dired" "\ |
| 15292 | Remove tag for selected file(s). | 15398 | Remove tag for selected file(s). |
| 15293 | With prefix argument ARG, remove tag from file at point. | 15399 | With prefix argument ARG, remove tag from file at point. |
| 15294 | 15400 | ||
| 15295 | \(fn ARG)" t nil) | 15401 | \(fn ARG)" t nil) |
| 15296 | 15402 | ||
| 15297 | (autoload (quote image-dired-jump-thumbnail-buffer) "image-dired" "\ | 15403 | (autoload 'image-dired-jump-thumbnail-buffer "image-dired" "\ |
| 15298 | Jump to thumbnail buffer. | 15404 | Jump to thumbnail buffer. |
| 15299 | 15405 | ||
| 15300 | \(fn)" t nil) | 15406 | \(fn)" t nil) |
| 15301 | 15407 | ||
| 15302 | (autoload (quote image-dired-setup-dired-keybindings) "image-dired" "\ | 15408 | (autoload 'image-dired-setup-dired-keybindings "image-dired" "\ |
| 15303 | Setup easy-to-use keybindings for the commands to be used in dired mode. | 15409 | Setup easy-to-use keybindings for the commands to be used in dired mode. |
| 15304 | Note that n, p and <down> and <up> will be hijacked and bound to | 15410 | Note that n, p and <down> and <up> will be hijacked and bound to |
| 15305 | `image-dired-dired-x-line'. | 15411 | `image-dired-dired-x-line'. |
| 15306 | 15412 | ||
| 15307 | \(fn)" t nil) | 15413 | \(fn)" t nil) |
| 15308 | 15414 | ||
| 15309 | (autoload (quote image-dired-display-thumbs-append) "image-dired" "\ | 15415 | (autoload 'image-dired-display-thumbs-append "image-dired" "\ |
| 15310 | Append thumbnails to `image-dired-thumbnail-buffer'. | 15416 | Append thumbnails to `image-dired-thumbnail-buffer'. |
| 15311 | 15417 | ||
| 15312 | \(fn)" t nil) | 15418 | \(fn)" t nil) |
| 15313 | 15419 | ||
| 15314 | (autoload (quote image-dired-display-thumb) "image-dired" "\ | 15420 | (autoload 'image-dired-display-thumb "image-dired" "\ |
| 15315 | Shorthand for `image-dired-display-thumbs' with prefix argument. | 15421 | Shorthand for `image-dired-display-thumbs' with prefix argument. |
| 15316 | 15422 | ||
| 15317 | \(fn)" t nil) | 15423 | \(fn)" t nil) |
| 15318 | 15424 | ||
| 15319 | (autoload (quote image-dired-dired-display-external) "image-dired" "\ | 15425 | (autoload 'image-dired-dired-display-external "image-dired" "\ |
| 15320 | Display file at point using an external viewer. | 15426 | Display file at point using an external viewer. |
| 15321 | 15427 | ||
| 15322 | \(fn)" t nil) | 15428 | \(fn)" t nil) |
| 15323 | 15429 | ||
| 15324 | (autoload (quote image-dired-dired-display-image) "image-dired" "\ | 15430 | (autoload 'image-dired-dired-display-image "image-dired" "\ |
| 15325 | Display current image file. | 15431 | Display current image file. |
| 15326 | See documentation for `image-dired-display-image' for more information. | 15432 | See documentation for `image-dired-display-image' for more information. |
| 15327 | With prefix argument ARG, display image in its original size. | 15433 | With prefix argument ARG, display image in its original size. |
| 15328 | 15434 | ||
| 15329 | \(fn &optional ARG)" t nil) | 15435 | \(fn &optional ARG)" t nil) |
| 15330 | 15436 | ||
| 15331 | (autoload (quote image-dired-dired-comment-files) "image-dired" "\ | 15437 | (autoload 'image-dired-dired-comment-files "image-dired" "\ |
| 15332 | Add comment to current or marked files in dired. | 15438 | Add comment to current or marked files in dired. |
| 15333 | 15439 | ||
| 15334 | \(fn)" t nil) | 15440 | \(fn)" t nil) |
| 15335 | 15441 | ||
| 15336 | (autoload (quote image-dired-mark-tagged-files) "image-dired" "\ | 15442 | (autoload 'image-dired-mark-tagged-files "image-dired" "\ |
| 15337 | Use regexp to mark files with matching tag. | 15443 | Use regexp to mark files with matching tag. |
| 15338 | A `tag' is a keyword, a piece of meta data, associated with an | 15444 | A `tag' is a keyword, a piece of meta data, associated with an |
| 15339 | image file and stored in image-dired's database file. This command | 15445 | image file and stored in image-dired's database file. This command |
| @@ -15343,7 +15449,7 @@ matching tags will be marked in the dired buffer. | |||
| 15343 | 15449 | ||
| 15344 | \(fn)" t nil) | 15450 | \(fn)" t nil) |
| 15345 | 15451 | ||
| 15346 | (autoload (quote image-dired-dired-edit-comment-and-tags) "image-dired" "\ | 15452 | (autoload 'image-dired-dired-edit-comment-and-tags "image-dired" "\ |
| 15347 | Edit comment and tags of current or marked image files. | 15453 | Edit comment and tags of current or marked image files. |
| 15348 | Edit comment and tags for all marked image files in an | 15454 | Edit comment and tags for all marked image files in an |
| 15349 | easy-to-use form. | 15455 | easy-to-use form. |
| @@ -15354,10 +15460,10 @@ easy-to-use form. | |||
| 15354 | 15460 | ||
| 15355 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp | 15461 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp |
| 15356 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" | 15462 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" |
| 15357 | ;;;;;; "image-file.el" (18104 24737)) | 15463 | ;;;;;; "image-file.el" (18123 58387)) |
| 15358 | ;;; Generated autoloads from image-file.el | 15464 | ;;; Generated autoloads from image-file.el |
| 15359 | 15465 | ||
| 15360 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ | 15466 | (defvar image-file-name-extensions '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg") "\ |
| 15361 | *A list of image-file filename extensions. | 15467 | *A list of image-file filename extensions. |
| 15362 | Filenames having one of these extensions are considered image files, | 15468 | Filenames having one of these extensions are considered image files, |
| 15363 | in addition to those matching `image-file-name-regexps'. | 15469 | in addition to those matching `image-file-name-regexps'. |
| @@ -15367,7 +15473,7 @@ setting this variable directly does not take effect unless | |||
| 15367 | `auto-image-file-mode' is re-enabled; this happens automatically when | 15473 | `auto-image-file-mode' is re-enabled; this happens automatically when |
| 15368 | the variable is set using \\[customize].") | 15474 | the variable is set using \\[customize].") |
| 15369 | 15475 | ||
| 15370 | (custom-autoload (quote image-file-name-extensions) "image-file" nil) | 15476 | (custom-autoload 'image-file-name-extensions "image-file" nil) |
| 15371 | 15477 | ||
| 15372 | (defvar image-file-name-regexps nil "\ | 15478 | (defvar image-file-name-regexps nil "\ |
| 15373 | *List of regexps matching image-file filenames. | 15479 | *List of regexps matching image-file filenames. |
| @@ -15379,14 +15485,14 @@ enabled, setting this variable directly does not take effect unless | |||
| 15379 | `auto-image-file-mode' is re-enabled; this happens automatically when | 15485 | `auto-image-file-mode' is re-enabled; this happens automatically when |
| 15380 | the variable is set using \\[customize].") | 15486 | the variable is set using \\[customize].") |
| 15381 | 15487 | ||
| 15382 | (custom-autoload (quote image-file-name-regexps) "image-file" nil) | 15488 | (custom-autoload 'image-file-name-regexps "image-file" nil) |
| 15383 | 15489 | ||
| 15384 | (autoload (quote image-file-name-regexp) "image-file" "\ | 15490 | (autoload 'image-file-name-regexp "image-file" "\ |
| 15385 | Return a regular expression matching image-file filenames. | 15491 | Return a regular expression matching image-file filenames. |
| 15386 | 15492 | ||
| 15387 | \(fn)" nil nil) | 15493 | \(fn)" nil nil) |
| 15388 | 15494 | ||
| 15389 | (autoload (quote insert-image-file) "image-file" "\ | 15495 | (autoload 'insert-image-file "image-file" "\ |
| 15390 | Insert the image file FILE into the current buffer. | 15496 | Insert the image file FILE into the current buffer. |
| 15391 | Optional arguments VISIT, BEG, END, and REPLACE are interpreted as for | 15497 | Optional arguments VISIT, BEG, END, and REPLACE are interpreted as for |
| 15392 | the command `insert-file-contents'. | 15498 | the command `insert-file-contents'. |
| @@ -15400,9 +15506,9 @@ Setting this variable directly does not take effect; | |||
| 15400 | either customize it (see the info node `Easy Customization') | 15506 | either customize it (see the info node `Easy Customization') |
| 15401 | or call the function `auto-image-file-mode'.") | 15507 | or call the function `auto-image-file-mode'.") |
| 15402 | 15508 | ||
| 15403 | (custom-autoload (quote auto-image-file-mode) "image-file" nil) | 15509 | (custom-autoload 'auto-image-file-mode "image-file" nil) |
| 15404 | 15510 | ||
| 15405 | (autoload (quote auto-image-file-mode) "image-file" "\ | 15511 | (autoload 'auto-image-file-mode "image-file" "\ |
| 15406 | Toggle visiting of image files as images. | 15512 | Toggle visiting of image files as images. |
| 15407 | With prefix argument ARG, turn on if positive, otherwise off. | 15513 | With prefix argument ARG, turn on if positive, otherwise off. |
| 15408 | Returns non-nil if the new state is enabled. | 15514 | Returns non-nil if the new state is enabled. |
| @@ -15416,30 +15522,33 @@ Image files are those whose name has an extension in | |||
| 15416 | ;;;*** | 15522 | ;;;*** |
| 15417 | 15523 | ||
| 15418 | ;;;### (autoloads (image-mode-maybe image-minor-mode image-mode) | 15524 | ;;;### (autoloads (image-mode-maybe image-minor-mode image-mode) |
| 15419 | ;;;;;; "image-mode" "image-mode.el" (18104 24737)) | 15525 | ;;;;;; "image-mode" "image-mode.el" (18132 64031)) |
| 15420 | ;;; Generated autoloads from image-mode.el | 15526 | ;;; Generated autoloads from image-mode.el |
| 15421 | (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) | 15527 | (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) |
| 15422 | (push '("\\.png\\'" . image-mode) auto-mode-alist) | 15528 | (push '("\\.png\\'" . image-mode) auto-mode-alist) |
| 15423 | (push '("\\.gif\\'" . image-mode) auto-mode-alist) | 15529 | (push '("\\.gif\\'" . image-mode) auto-mode-alist) |
| 15424 | (push '("\\.tiff?\\'" . image-mode) auto-mode-alist) | 15530 | (push '("\\.tiff?\\'" . image-mode) auto-mode-alist) |
| 15425 | (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist) | 15531 | (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist) |
| 15532 | (push '("\\.x[bp]m\\'" . c-mode) auto-mode-alist) | ||
| 15426 | (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist) | 15533 | (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist) |
| 15534 | (push '("\\.svgz?\\'" . xml-mode) auto-mode-alist) | ||
| 15535 | (push '("\\.svgz?\\'" . image-mode-maybe) auto-mode-alist) | ||
| 15427 | 15536 | ||
| 15428 | (autoload (quote image-mode) "image-mode" "\ | 15537 | (autoload 'image-mode "image-mode" "\ |
| 15429 | Major mode for image files. | 15538 | Major mode for image files. |
| 15430 | You can use \\<image-mode-map>\\[image-toggle-display] | 15539 | You can use \\<image-mode-map>\\[image-toggle-display] |
| 15431 | to toggle between display as an image and display as text. | 15540 | to toggle between display as an image and display as text. |
| 15432 | 15541 | ||
| 15433 | \(fn)" t nil) | 15542 | \(fn)" t nil) |
| 15434 | 15543 | ||
| 15435 | (autoload (quote image-minor-mode) "image-mode" "\ | 15544 | (autoload 'image-minor-mode "image-mode" "\ |
| 15436 | Toggle Image minor mode. | 15545 | Toggle Image minor mode. |
| 15437 | With arg, turn Image minor mode on if arg is positive, off otherwise. | 15546 | With arg, turn Image minor mode on if arg is positive, off otherwise. |
| 15438 | See the command `image-mode' for more information on this mode. | 15547 | See the command `image-mode' for more information on this mode. |
| 15439 | 15548 | ||
| 15440 | \(fn &optional ARG)" t nil) | 15549 | \(fn &optional ARG)" t nil) |
| 15441 | 15550 | ||
| 15442 | (autoload (quote image-mode-maybe) "image-mode" "\ | 15551 | (autoload 'image-mode-maybe "image-mode" "\ |
| 15443 | Set major or minor mode for image files. | 15552 | Set major or minor mode for image files. |
| 15444 | Set Image major mode only when there are no other major modes | 15553 | Set Image major mode only when there are no other major modes |
| 15445 | associated with a filename in `auto-mode-alist'. When an image | 15554 | associated with a filename in `auto-mode-alist'. When an image |
| @@ -15454,7 +15563,7 @@ information on these modes. | |||
| 15454 | ;;;*** | 15563 | ;;;*** |
| 15455 | 15564 | ||
| 15456 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar | 15565 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar |
| 15457 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (18104 24737)) | 15566 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (18120 34749)) |
| 15458 | ;;; Generated autoloads from imenu.el | 15567 | ;;; Generated autoloads from imenu.el |
| 15459 | 15568 | ||
| 15460 | (defvar imenu-sort-function nil "\ | 15569 | (defvar imenu-sort-function nil "\ |
| @@ -15472,7 +15581,7 @@ The function should take two arguments and return t if the first | |||
| 15472 | element should come before the second. The arguments are cons cells; | 15581 | element should come before the second. The arguments are cons cells; |
| 15473 | \(NAME . POSITION). Look at `imenu--sort-by-name' for an example.") | 15582 | \(NAME . POSITION). Look at `imenu--sort-by-name' for an example.") |
| 15474 | 15583 | ||
| 15475 | (custom-autoload (quote imenu-sort-function) "imenu" t) | 15584 | (custom-autoload 'imenu-sort-function "imenu" t) |
| 15476 | 15585 | ||
| 15477 | (defvar imenu-generic-expression nil "\ | 15586 | (defvar imenu-generic-expression nil "\ |
| 15478 | The regex pattern to use for creating a buffer index. | 15587 | The regex pattern to use for creating a buffer index. |
| @@ -15486,9 +15595,9 @@ For example, see the value of `fortran-imenu-generic-expression' used by | |||
| 15486 | characters which normally have \"symbol\" syntax \"word\" syntax | 15595 | characters which normally have \"symbol\" syntax \"word\" syntax |
| 15487 | during matching.") | 15596 | during matching.") |
| 15488 | 15597 | ||
| 15489 | (make-variable-buffer-local (quote imenu-generic-expression)) | 15598 | (make-variable-buffer-local 'imenu-generic-expression) |
| 15490 | 15599 | ||
| 15491 | (defvar imenu-create-index-function (quote imenu-default-create-index-function) "\ | 15600 | (defvar imenu-create-index-function 'imenu-default-create-index-function "\ |
| 15492 | The function to use for creating an index alist of the current buffer. | 15601 | The function to use for creating an index alist of the current buffer. |
| 15493 | 15602 | ||
| 15494 | It should be a function that takes no arguments and returns | 15603 | It should be a function that takes no arguments and returns |
| @@ -15497,9 +15606,9 @@ called within a `save-excursion'. | |||
| 15497 | 15606 | ||
| 15498 | See `imenu--index-alist' for the format of the buffer index alist.") | 15607 | See `imenu--index-alist' for the format of the buffer index alist.") |
| 15499 | 15608 | ||
| 15500 | (make-variable-buffer-local (quote imenu-create-index-function)) | 15609 | (make-variable-buffer-local 'imenu-create-index-function) |
| 15501 | 15610 | ||
| 15502 | (defvar imenu-prev-index-position-function (quote beginning-of-defun) "\ | 15611 | (defvar imenu-prev-index-position-function 'beginning-of-defun "\ |
| 15503 | Function for finding the next index position. | 15612 | Function for finding the next index position. |
| 15504 | 15613 | ||
| 15505 | If `imenu-create-index-function' is set to | 15614 | If `imenu-create-index-function' is set to |
| @@ -15510,7 +15619,7 @@ file. | |||
| 15510 | The function should leave point at the place to be connected to the | 15619 | The function should leave point at the place to be connected to the |
| 15511 | index and it should return nil when it doesn't find another index.") | 15620 | index and it should return nil when it doesn't find another index.") |
| 15512 | 15621 | ||
| 15513 | (make-variable-buffer-local (quote imenu-prev-index-position-function)) | 15622 | (make-variable-buffer-local 'imenu-prev-index-position-function) |
| 15514 | 15623 | ||
| 15515 | (defvar imenu-extract-index-name-function nil "\ | 15624 | (defvar imenu-extract-index-name-function nil "\ |
| 15516 | Function for extracting the index item name, given a position. | 15625 | Function for extracting the index item name, given a position. |
| @@ -15519,7 +15628,7 @@ This function is called after `imenu-prev-index-position-function' | |||
| 15519 | finds a position for an index item, with point at that position. | 15628 | finds a position for an index item, with point at that position. |
| 15520 | It should return the name for that index item.") | 15629 | It should return the name for that index item.") |
| 15521 | 15630 | ||
| 15522 | (make-variable-buffer-local (quote imenu-extract-index-name-function)) | 15631 | (make-variable-buffer-local 'imenu-extract-index-name-function) |
| 15523 | 15632 | ||
| 15524 | (defvar imenu-name-lookup-function nil "\ | 15633 | (defvar imenu-name-lookup-function nil "\ |
| 15525 | Function to compare string with index item. | 15634 | Function to compare string with index item. |
| @@ -15532,33 +15641,33 @@ Set this to some other function for more advanced comparisons, | |||
| 15532 | such as \"begins with\" or \"name matches and number of | 15641 | such as \"begins with\" or \"name matches and number of |
| 15533 | arguments match\".") | 15642 | arguments match\".") |
| 15534 | 15643 | ||
| 15535 | (make-variable-buffer-local (quote imenu-name-lookup-function)) | 15644 | (make-variable-buffer-local 'imenu-name-lookup-function) |
| 15536 | 15645 | ||
| 15537 | (defvar imenu-default-goto-function (quote imenu-default-goto-function) "\ | 15646 | (defvar imenu-default-goto-function 'imenu-default-goto-function "\ |
| 15538 | The default function called when selecting an Imenu item. | 15647 | The default function called when selecting an Imenu item. |
| 15539 | The function in this variable is called when selecting a normal index-item.") | 15648 | The function in this variable is called when selecting a normal index-item.") |
| 15540 | 15649 | ||
| 15541 | (make-variable-buffer-local (quote imenu-default-goto-function)) | 15650 | (make-variable-buffer-local 'imenu-default-goto-function) |
| 15542 | 15651 | ||
| 15543 | (make-variable-buffer-local (quote imenu-syntax-alist)) | 15652 | (make-variable-buffer-local 'imenu-syntax-alist) |
| 15544 | 15653 | ||
| 15545 | (make-variable-buffer-local (quote imenu-case-fold-search)) | 15654 | (make-variable-buffer-local 'imenu-case-fold-search) |
| 15546 | 15655 | ||
| 15547 | (autoload (quote imenu-add-to-menubar) "imenu" "\ | 15656 | (autoload 'imenu-add-to-menubar "imenu" "\ |
| 15548 | Add an `imenu' entry to the menu bar for the current buffer. | 15657 | Add an `imenu' entry to the menu bar for the current buffer. |
| 15549 | NAME is a string used to name the menu bar item. | 15658 | NAME is a string used to name the menu bar item. |
| 15550 | See the command `imenu' for more information. | 15659 | See the command `imenu' for more information. |
| 15551 | 15660 | ||
| 15552 | \(fn NAME)" t nil) | 15661 | \(fn NAME)" t nil) |
| 15553 | 15662 | ||
| 15554 | (autoload (quote imenu-add-menubar-index) "imenu" "\ | 15663 | (autoload 'imenu-add-menubar-index "imenu" "\ |
| 15555 | Add an Imenu \"Index\" entry on the menu bar for the current buffer. | 15664 | Add an Imenu \"Index\" entry on the menu bar for the current buffer. |
| 15556 | 15665 | ||
| 15557 | A trivial interface to `imenu-add-to-menubar' suitable for use in a hook. | 15666 | A trivial interface to `imenu-add-to-menubar' suitable for use in a hook. |
| 15558 | 15667 | ||
| 15559 | \(fn)" t nil) | 15668 | \(fn)" t nil) |
| 15560 | 15669 | ||
| 15561 | (autoload (quote imenu) "imenu" "\ | 15670 | (autoload 'imenu "imenu" "\ |
| 15562 | Jump to a place in the buffer chosen using a buffer menu or mouse menu. | 15671 | Jump to a place in the buffer chosen using a buffer menu or mouse menu. |
| 15563 | INDEX-ITEM specifies the position. See `imenu-choose-buffer-index' | 15672 | INDEX-ITEM specifies the position. See `imenu-choose-buffer-index' |
| 15564 | for more information. | 15673 | for more information. |
| @@ -15569,30 +15678,30 @@ for more information. | |||
| 15569 | 15678 | ||
| 15570 | ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion | 15679 | ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion |
| 15571 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) | 15680 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) |
| 15572 | ;;;;;; "ind-util" "language/ind-util.el" (18104 24757)) | 15681 | ;;;;;; "ind-util" "language/ind-util.el" (18088 55109)) |
| 15573 | ;;; Generated autoloads from language/ind-util.el | 15682 | ;;; Generated autoloads from language/ind-util.el |
| 15574 | 15683 | ||
| 15575 | (autoload (quote indian-compose-region) "ind-util" "\ | 15684 | (autoload 'indian-compose-region "ind-util" "\ |
| 15576 | Compose the region according to `composition-function-table'. | 15685 | Compose the region according to `composition-function-table'. |
| 15577 | 15686 | ||
| 15578 | \(fn FROM TO)" t nil) | 15687 | \(fn FROM TO)" t nil) |
| 15579 | 15688 | ||
| 15580 | (autoload (quote indian-compose-string) "ind-util" "\ | 15689 | (autoload 'indian-compose-string "ind-util" "\ |
| 15581 | Not documented | 15690 | Not documented |
| 15582 | 15691 | ||
| 15583 | \(fn STRING)" nil nil) | 15692 | \(fn STRING)" nil nil) |
| 15584 | 15693 | ||
| 15585 | (autoload (quote in-is13194-post-read-conversion) "ind-util" "\ | 15694 | (autoload 'in-is13194-post-read-conversion "ind-util" "\ |
| 15586 | Not documented | 15695 | Not documented |
| 15587 | 15696 | ||
| 15588 | \(fn LEN)" nil nil) | 15697 | \(fn LEN)" nil nil) |
| 15589 | 15698 | ||
| 15590 | (autoload (quote in-is13194-pre-write-conversion) "ind-util" "\ | 15699 | (autoload 'in-is13194-pre-write-conversion "ind-util" "\ |
| 15591 | Not documented | 15700 | Not documented |
| 15592 | 15701 | ||
| 15593 | \(fn FROM TO)" nil nil) | 15702 | \(fn FROM TO)" nil nil) |
| 15594 | 15703 | ||
| 15595 | (autoload (quote indian-glyph-char) "ind-util" "\ | 15704 | (autoload 'indian-glyph-char "ind-util" "\ |
| 15596 | Return character of charset `indian-glyph' made from glyph index INDEX. | 15705 | Return character of charset `indian-glyph' made from glyph index INDEX. |
| 15597 | The variable `indian-default-script' specifies the script of the glyph. | 15706 | The variable `indian-default-script' specifies the script of the glyph. |
| 15598 | Optional argument SCRIPT, if non-nil, overrides `indian-default-script'. | 15707 | Optional argument SCRIPT, if non-nil, overrides `indian-default-script'. |
| @@ -15600,7 +15709,7 @@ See also the function `indian-char-glyph'. | |||
| 15600 | 15709 | ||
| 15601 | \(fn INDEX &optional SCRIPT)" nil nil) | 15710 | \(fn INDEX &optional SCRIPT)" nil nil) |
| 15602 | 15711 | ||
| 15603 | (autoload (quote indian-char-glyph) "ind-util" "\ | 15712 | (autoload 'indian-char-glyph "ind-util" "\ |
| 15604 | Return information about the glyph code for CHAR of `indian-glyph' charset. | 15713 | Return information about the glyph code for CHAR of `indian-glyph' charset. |
| 15605 | The value is (INDEX . SCRIPT), where INDEX is the glyph index | 15714 | The value is (INDEX . SCRIPT), where INDEX is the glyph index |
| 15606 | in the font that Indian script name SCRIPT specifies. | 15715 | in the font that Indian script name SCRIPT specifies. |
| @@ -15612,7 +15721,7 @@ See also the function `indian-glyph-char'. | |||
| 15612 | 15721 | ||
| 15613 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command | 15722 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command |
| 15614 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" | 15723 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" |
| 15615 | ;;;;;; "progmodes/inf-lisp.el" (18104 24767)) | 15724 | ;;;;;; "progmodes/inf-lisp.el" (18088 55117)) |
| 15616 | ;;; Generated autoloads from progmodes/inf-lisp.el | 15725 | ;;; Generated autoloads from progmodes/inf-lisp.el |
| 15617 | 15726 | ||
| 15618 | (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ | 15727 | (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ |
| @@ -15621,12 +15730,12 @@ Input matching this regexp is not saved on the input history in Inferior Lisp | |||
| 15621 | mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword | 15730 | mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword |
| 15622 | \(as in :a, :c, etc.)") | 15731 | \(as in :a, :c, etc.)") |
| 15623 | 15732 | ||
| 15624 | (custom-autoload (quote inferior-lisp-filter-regexp) "inf-lisp" t) | 15733 | (custom-autoload 'inferior-lisp-filter-regexp "inf-lisp" t) |
| 15625 | 15734 | ||
| 15626 | (defvar inferior-lisp-program "lisp" "\ | 15735 | (defvar inferior-lisp-program "lisp" "\ |
| 15627 | *Program name for invoking an inferior Lisp in Inferior Lisp mode.") | 15736 | *Program name for invoking an inferior Lisp in Inferior Lisp mode.") |
| 15628 | 15737 | ||
| 15629 | (custom-autoload (quote inferior-lisp-program) "inf-lisp" t) | 15738 | (custom-autoload 'inferior-lisp-program "inf-lisp" t) |
| 15630 | 15739 | ||
| 15631 | (defvar inferior-lisp-load-command "(load \"%s\")\n" "\ | 15740 | (defvar inferior-lisp-load-command "(load \"%s\")\n" "\ |
| 15632 | *Format-string for building a Lisp expression to load a file. | 15741 | *Format-string for building a Lisp expression to load a file. |
| @@ -15637,7 +15746,7 @@ The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\n\" | |||
| 15637 | produces cosmetically superior output for this application, | 15746 | produces cosmetically superior output for this application, |
| 15638 | but it works only in Common Lisp.") | 15747 | but it works only in Common Lisp.") |
| 15639 | 15748 | ||
| 15640 | (custom-autoload (quote inferior-lisp-load-command) "inf-lisp" t) | 15749 | (custom-autoload 'inferior-lisp-load-command "inf-lisp" t) |
| 15641 | 15750 | ||
| 15642 | (defvar inferior-lisp-prompt "^[^> \n]*>+:? *" "\ | 15751 | (defvar inferior-lisp-prompt "^[^> \n]*>+:? *" "\ |
| 15643 | Regexp to recognize prompts in the Inferior Lisp mode. | 15752 | Regexp to recognize prompts in the Inferior Lisp mode. |
| @@ -15655,12 +15764,12 @@ kcl: \"^>+ *\" | |||
| 15655 | 15764 | ||
| 15656 | This is a fine thing to set in your .emacs file or through Custom.") | 15765 | This is a fine thing to set in your .emacs file or through Custom.") |
| 15657 | 15766 | ||
| 15658 | (custom-autoload (quote inferior-lisp-prompt) "inf-lisp" t) | 15767 | (custom-autoload 'inferior-lisp-prompt "inf-lisp" t) |
| 15659 | 15768 | ||
| 15660 | (defvar inferior-lisp-mode-hook (quote nil) "\ | 15769 | (defvar inferior-lisp-mode-hook 'nil "\ |
| 15661 | *Hook for customising Inferior Lisp mode.") | 15770 | *Hook for customising Inferior Lisp mode.") |
| 15662 | 15771 | ||
| 15663 | (autoload (quote inferior-lisp) "inf-lisp" "\ | 15772 | (autoload 'inferior-lisp "inf-lisp" "\ |
| 15664 | Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'. | 15773 | Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'. |
| 15665 | If there is a process already running in `*inferior-lisp*', just switch | 15774 | If there is a process already running in `*inferior-lisp*', just switch |
| 15666 | to that buffer. | 15775 | to that buffer. |
| @@ -15672,24 +15781,24 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 15672 | \(fn CMD)" t nil) | 15781 | \(fn CMD)" t nil) |
| 15673 | (add-hook 'same-window-buffer-names "*inferior-lisp*") | 15782 | (add-hook 'same-window-buffer-names "*inferior-lisp*") |
| 15674 | 15783 | ||
| 15675 | (defalias (quote run-lisp) (quote inferior-lisp)) | 15784 | (defalias 'run-lisp 'inferior-lisp) |
| 15676 | 15785 | ||
| 15677 | ;;;*** | 15786 | ;;;*** |
| 15678 | 15787 | ||
| 15679 | ;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node | 15788 | ;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node |
| 15680 | ;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index | 15789 | ;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index |
| 15681 | ;;;;;; Info-directory Info-on-current-buffer info-standalone info-emacs-manual | 15790 | ;;;;;; Info-directory Info-on-current-buffer info-standalone info-emacs-manual |
| 15682 | ;;;;;; info info-other-window) "info" "info.el" (18104 24737)) | 15791 | ;;;;;; info info-other-window) "info" "info.el" (18132 64031)) |
| 15683 | ;;; Generated autoloads from info.el | 15792 | ;;; Generated autoloads from info.el |
| 15684 | 15793 | ||
| 15685 | (autoload (quote info-other-window) "info" "\ | 15794 | (autoload 'info-other-window "info" "\ |
| 15686 | Like `info' but show the Info buffer in another window. | 15795 | Like `info' but show the Info buffer in another window. |
| 15687 | 15796 | ||
| 15688 | \(fn &optional FILE-OR-NODE)" t nil) | 15797 | \(fn &optional FILE-OR-NODE)" t nil) |
| 15689 | (add-hook 'same-window-regexps "\\*info\\*\\(\\|<[0-9]+>\\)") | 15798 | (add-hook 'same-window-regexps "\\*info\\*\\(\\|<[0-9]+>\\)") |
| 15690 | (put 'info 'info-file "emacs") | 15799 | (put 'info 'info-file "emacs") |
| 15691 | 15800 | ||
| 15692 | (autoload (quote info) "info" "\ | 15801 | (autoload 'info "info" "\ |
| 15693 | Enter Info, the documentation browser. | 15802 | Enter Info, the documentation browser. |
| 15694 | Optional argument FILE-OR-NODE specifies the file to examine; | 15803 | Optional argument FILE-OR-NODE specifies the file to examine; |
| 15695 | the default is the top-level directory of Info. | 15804 | the default is the top-level directory of Info. |
| @@ -15711,31 +15820,31 @@ in all the directories in that path. | |||
| 15711 | 15820 | ||
| 15712 | \(fn &optional FILE-OR-NODE BUFFER)" t nil) | 15821 | \(fn &optional FILE-OR-NODE BUFFER)" t nil) |
| 15713 | 15822 | ||
| 15714 | (autoload (quote info-emacs-manual) "info" "\ | 15823 | (autoload 'info-emacs-manual "info" "\ |
| 15715 | Display the Emacs manual in Info mode. | 15824 | Display the Emacs manual in Info mode. |
| 15716 | 15825 | ||
| 15717 | \(fn)" t nil) | 15826 | \(fn)" t nil) |
| 15718 | 15827 | ||
| 15719 | (autoload (quote info-standalone) "info" "\ | 15828 | (autoload 'info-standalone "info" "\ |
| 15720 | Run Emacs as a standalone Info reader. | 15829 | Run Emacs as a standalone Info reader. |
| 15721 | Usage: emacs -f info-standalone [filename] | 15830 | Usage: emacs -f info-standalone [filename] |
| 15722 | In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself. | 15831 | In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself. |
| 15723 | 15832 | ||
| 15724 | \(fn)" nil nil) | 15833 | \(fn)" nil nil) |
| 15725 | 15834 | ||
| 15726 | (autoload (quote Info-on-current-buffer) "info" "\ | 15835 | (autoload 'Info-on-current-buffer "info" "\ |
| 15727 | Use Info mode to browse the current Info buffer. | 15836 | Use Info mode to browse the current Info buffer. |
| 15728 | With a prefix arg, this queries for the node name to visit first; | 15837 | With a prefix arg, this queries for the node name to visit first; |
| 15729 | otherwise, that defaults to `Top'. | 15838 | otherwise, that defaults to `Top'. |
| 15730 | 15839 | ||
| 15731 | \(fn &optional NODENAME)" t nil) | 15840 | \(fn &optional NODENAME)" t nil) |
| 15732 | 15841 | ||
| 15733 | (autoload (quote Info-directory) "info" "\ | 15842 | (autoload 'Info-directory "info" "\ |
| 15734 | Go to the Info directory node. | 15843 | Go to the Info directory node. |
| 15735 | 15844 | ||
| 15736 | \(fn)" t nil) | 15845 | \(fn)" t nil) |
| 15737 | 15846 | ||
| 15738 | (autoload (quote Info-index) "info" "\ | 15847 | (autoload 'Info-index "info" "\ |
| 15739 | Look up a string TOPIC in the index for this manual and go to that entry. | 15848 | Look up a string TOPIC in the index for this manual and go to that entry. |
| 15740 | If there are no exact matches to the specified topic, this chooses | 15849 | If there are no exact matches to the specified topic, this chooses |
| 15741 | the first match which is a case-insensitive substring of a topic. | 15850 | the first match which is a case-insensitive substring of a topic. |
| @@ -15744,13 +15853,13 @@ Give an empty topic name to go to the Index node itself. | |||
| 15744 | 15853 | ||
| 15745 | \(fn TOPIC)" t nil) | 15854 | \(fn TOPIC)" t nil) |
| 15746 | 15855 | ||
| 15747 | (autoload (quote info-apropos) "info" "\ | 15856 | (autoload 'info-apropos "info" "\ |
| 15748 | Grovel indices of all known Info files on your system for STRING. | 15857 | Grovel indices of all known Info files on your system for STRING. |
| 15749 | Build a menu of the possible matches. | 15858 | Build a menu of the possible matches. |
| 15750 | 15859 | ||
| 15751 | \(fn STRING)" t nil) | 15860 | \(fn STRING)" t nil) |
| 15752 | 15861 | ||
| 15753 | (autoload (quote Info-mode) "info" "\ | 15862 | (autoload 'Info-mode "info" "\ |
| 15754 | Info mode provides commands for browsing through the Info documentation tree. | 15863 | Info mode provides commands for browsing through the Info documentation tree. |
| 15755 | Documentation in Info is divided into \"nodes\", each of which discusses | 15864 | Documentation in Info is divided into \"nodes\", each of which discusses |
| 15756 | one topic and contains references to other nodes which discuss related | 15865 | one topic and contains references to other nodes which discuss related |
| @@ -15815,7 +15924,7 @@ Advanced commands: | |||
| 15815 | \(fn)" nil nil) | 15924 | \(fn)" nil nil) |
| 15816 | (put 'Info-goto-emacs-command-node 'info-file "emacs") | 15925 | (put 'Info-goto-emacs-command-node 'info-file "emacs") |
| 15817 | 15926 | ||
| 15818 | (autoload (quote Info-goto-emacs-command-node) "info" "\ | 15927 | (autoload 'Info-goto-emacs-command-node "info" "\ |
| 15819 | Go to the Info node in the Emacs manual for command COMMAND. | 15928 | Go to the Info node in the Emacs manual for command COMMAND. |
| 15820 | The command is found by looking up in Emacs manual's indices | 15929 | The command is found by looking up in Emacs manual's indices |
| 15821 | or in another manual found via COMMAND's `info-file' property or | 15930 | or in another manual found via COMMAND's `info-file' property or |
| @@ -15825,7 +15934,7 @@ COMMAND must be a symbol or string. | |||
| 15825 | \(fn COMMAND)" t nil) | 15934 | \(fn COMMAND)" t nil) |
| 15826 | (put 'Info-goto-emacs-key-command-node 'info-file "emacs") | 15935 | (put 'Info-goto-emacs-key-command-node 'info-file "emacs") |
| 15827 | 15936 | ||
| 15828 | (autoload (quote Info-goto-emacs-key-command-node) "info" "\ | 15937 | (autoload 'Info-goto-emacs-key-command-node "info" "\ |
| 15829 | Go to the node in the Emacs manual which describes the command bound to KEY. | 15938 | Go to the node in the Emacs manual which describes the command bound to KEY. |
| 15830 | KEY is a string. | 15939 | KEY is a string. |
| 15831 | Interactively, if the binding is `execute-extended-command', a command is read. | 15940 | Interactively, if the binding is `execute-extended-command', a command is read. |
| @@ -15835,7 +15944,7 @@ the variable `Info-file-list-for-emacs'. | |||
| 15835 | 15944 | ||
| 15836 | \(fn KEY)" t nil) | 15945 | \(fn KEY)" t nil) |
| 15837 | 15946 | ||
| 15838 | (autoload (quote Info-speedbar-browser) "info" "\ | 15947 | (autoload 'Info-speedbar-browser "info" "\ |
| 15839 | Initialize speedbar to display an Info node browser. | 15948 | Initialize speedbar to display an Info node browser. |
| 15840 | This will add a speedbar major display mode. | 15949 | This will add a speedbar major display mode. |
| 15841 | 15950 | ||
| @@ -15845,10 +15954,10 @@ This will add a speedbar major display mode. | |||
| 15845 | 15954 | ||
| 15846 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file | 15955 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file |
| 15847 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" | 15956 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" |
| 15848 | ;;;;;; (18104 24737)) | 15957 | ;;;;;; (18120 34749)) |
| 15849 | ;;; Generated autoloads from info-look.el | 15958 | ;;; Generated autoloads from info-look.el |
| 15850 | 15959 | ||
| 15851 | (autoload (quote info-lookup-reset) "info-look" "\ | 15960 | (autoload 'info-lookup-reset "info-look" "\ |
| 15852 | Throw away all cached data. | 15961 | Throw away all cached data. |
| 15853 | This command is useful if the user wants to start at the beginning without | 15962 | This command is useful if the user wants to start at the beginning without |
| 15854 | quitting Emacs, for example, after some Info documents were updated on the | 15963 | quitting Emacs, for example, after some Info documents were updated on the |
| @@ -15857,7 +15966,7 @@ system. | |||
| 15857 | \(fn)" t nil) | 15966 | \(fn)" t nil) |
| 15858 | (put 'info-lookup-symbol 'info-file "emacs") | 15967 | (put 'info-lookup-symbol 'info-file "emacs") |
| 15859 | 15968 | ||
| 15860 | (autoload (quote info-lookup-symbol) "info-look" "\ | 15969 | (autoload 'info-lookup-symbol "info-look" "\ |
| 15861 | Display the definition of SYMBOL, as found in the relevant manual. | 15970 | Display the definition of SYMBOL, as found in the relevant manual. |
| 15862 | When this command is called interactively, it reads SYMBOL from the | 15971 | When this command is called interactively, it reads SYMBOL from the |
| 15863 | minibuffer. In the minibuffer, use M-n to yank the default argument | 15972 | minibuffer. In the minibuffer, use M-n to yank the default argument |
| @@ -15869,7 +15978,7 @@ With prefix arg a query for the symbol help mode is offered. | |||
| 15869 | \(fn SYMBOL &optional MODE)" t nil) | 15978 | \(fn SYMBOL &optional MODE)" t nil) |
| 15870 | (put 'info-lookup-file 'info-file "emacs") | 15979 | (put 'info-lookup-file 'info-file "emacs") |
| 15871 | 15980 | ||
| 15872 | (autoload (quote info-lookup-file) "info-look" "\ | 15981 | (autoload 'info-lookup-file "info-look" "\ |
| 15873 | Display the documentation of a file. | 15982 | Display the documentation of a file. |
| 15874 | When this command is called interactively, it reads FILE from the minibuffer. | 15983 | When this command is called interactively, it reads FILE from the minibuffer. |
| 15875 | In the minibuffer, use M-n to yank the default file name | 15984 | In the minibuffer, use M-n to yank the default file name |
| @@ -15880,12 +15989,12 @@ With prefix arg a query for the file help mode is offered. | |||
| 15880 | 15989 | ||
| 15881 | \(fn FILE &optional MODE)" t nil) | 15990 | \(fn FILE &optional MODE)" t nil) |
| 15882 | 15991 | ||
| 15883 | (autoload (quote info-complete-symbol) "info-look" "\ | 15992 | (autoload 'info-complete-symbol "info-look" "\ |
| 15884 | Perform completion on symbol preceding point. | 15993 | Perform completion on symbol preceding point. |
| 15885 | 15994 | ||
| 15886 | \(fn &optional MODE)" t nil) | 15995 | \(fn &optional MODE)" t nil) |
| 15887 | 15996 | ||
| 15888 | (autoload (quote info-complete-file) "info-look" "\ | 15997 | (autoload 'info-complete-file "info-look" "\ |
| 15889 | Perform completion on file preceding point. | 15998 | Perform completion on file preceding point. |
| 15890 | 15999 | ||
| 15891 | \(fn &optional MODE)" t nil) | 16000 | \(fn &optional MODE)" t nil) |
| @@ -15893,21 +16002,21 @@ Perform completion on file preceding point. | |||
| 15893 | ;;;*** | 16002 | ;;;*** |
| 15894 | 16003 | ||
| 15895 | ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all | 16004 | ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all |
| 15896 | ;;;;;; info-xref-check) "info-xref" "info-xref.el" (18104 24737)) | 16005 | ;;;;;; info-xref-check) "info-xref" "info-xref.el" (18088 55085)) |
| 15897 | ;;; Generated autoloads from info-xref.el | 16006 | ;;; Generated autoloads from info-xref.el |
| 15898 | 16007 | ||
| 15899 | (autoload (quote info-xref-check) "info-xref" "\ | 16008 | (autoload 'info-xref-check "info-xref" "\ |
| 15900 | Check external references in FILENAME, an info document. | 16009 | Check external references in FILENAME, an info document. |
| 15901 | 16010 | ||
| 15902 | \(fn FILENAME)" t nil) | 16011 | \(fn FILENAME)" t nil) |
| 15903 | 16012 | ||
| 15904 | (autoload (quote info-xref-check-all) "info-xref" "\ | 16013 | (autoload 'info-xref-check-all "info-xref" "\ |
| 15905 | Check external references in all info documents in the usual path. | 16014 | Check external references in all info documents in the usual path. |
| 15906 | The usual path is `Info-directory-list' and `Info-additional-directory-list'. | 16015 | The usual path is `Info-directory-list' and `Info-additional-directory-list'. |
| 15907 | 16016 | ||
| 15908 | \(fn)" t nil) | 16017 | \(fn)" t nil) |
| 15909 | 16018 | ||
| 15910 | (autoload (quote info-xref-check-all-custom) "info-xref" "\ | 16019 | (autoload 'info-xref-check-all-custom "info-xref" "\ |
| 15911 | Check info references in all customize groups and variables. | 16020 | Check info references in all customize groups and variables. |
| 15912 | `custom-manual' and `info-link' entries in the `custom-links' list are checked. | 16021 | `custom-manual' and `info-link' entries in the `custom-links' list are checked. |
| 15913 | 16022 | ||
| @@ -15920,15 +16029,15 @@ quite a while. | |||
| 15920 | ;;;*** | 16029 | ;;;*** |
| 15921 | 16030 | ||
| 15922 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) | 16031 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) |
| 15923 | ;;;;;; "informat" "informat.el" (18104 24737)) | 16032 | ;;;;;; "informat" "informat.el" (18088 55086)) |
| 15924 | ;;; Generated autoloads from informat.el | 16033 | ;;; Generated autoloads from informat.el |
| 15925 | 16034 | ||
| 15926 | (autoload (quote Info-tagify) "informat" "\ | 16035 | (autoload 'Info-tagify "informat" "\ |
| 15927 | Create or update Info file tag table in current buffer or in a region. | 16036 | Create or update Info file tag table in current buffer or in a region. |
| 15928 | 16037 | ||
| 15929 | \(fn &optional INPUT-BUFFER-NAME)" t nil) | 16038 | \(fn &optional INPUT-BUFFER-NAME)" t nil) |
| 15930 | 16039 | ||
| 15931 | (autoload (quote Info-split) "informat" "\ | 16040 | (autoload 'Info-split "informat" "\ |
| 15932 | Split an info file into an indirect file plus bounded-size subfiles. | 16041 | Split an info file into an indirect file plus bounded-size subfiles. |
| 15933 | Each subfile will be up to 50,000 characters plus one node. | 16042 | Each subfile will be up to 50,000 characters plus one node. |
| 15934 | 16043 | ||
| @@ -15943,13 +16052,13 @@ contains just the tag table and a directory of subfiles. | |||
| 15943 | 16052 | ||
| 15944 | \(fn)" t nil) | 16053 | \(fn)" t nil) |
| 15945 | 16054 | ||
| 15946 | (autoload (quote Info-validate) "informat" "\ | 16055 | (autoload 'Info-validate "informat" "\ |
| 15947 | Check current buffer for validity as an Info file. | 16056 | Check current buffer for validity as an Info file. |
| 15948 | Check that every node pointer points to an existing node. | 16057 | Check that every node pointer points to an existing node. |
| 15949 | 16058 | ||
| 15950 | \(fn)" t nil) | 16059 | \(fn)" t nil) |
| 15951 | 16060 | ||
| 15952 | (autoload (quote batch-info-validate) "informat" "\ | 16061 | (autoload 'batch-info-validate "informat" "\ |
| 15953 | Runs `Info-validate' on the files remaining on the command line. | 16062 | Runs `Info-validate' on the files remaining on the command line. |
| 15954 | Must be used only with -batch, and kills Emacs on completion. | 16063 | Must be used only with -batch, and kills Emacs on completion. |
| 15955 | Each file will be processed even if an error occurred previously. | 16064 | Each file will be processed even if an error occurred previously. |
| @@ -15959,33 +16068,66 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15959 | 16068 | ||
| 15960 | ;;;*** | 16069 | ;;;*** |
| 15961 | 16070 | ||
| 16071 | ;;;### (autoloads (isearch-buffers-minor-mode) "isearch-multi" "isearch-multi.el" | ||
| 16072 | ;;;;;; (18210 13714)) | ||
| 16073 | ;;; Generated autoloads from isearch-multi.el | ||
| 16074 | |||
| 16075 | (defvar isearch-buffers-current-buffer nil "\ | ||
| 16076 | The buffer where the search is currently searching. | ||
| 16077 | The value is nil when the search still is in the initial buffer.") | ||
| 16078 | |||
| 16079 | (defvar isearch-buffers-next-buffer-function nil "\ | ||
| 16080 | Function to call to get the next buffer to search. | ||
| 16081 | |||
| 16082 | When this variable is set to a function that returns a buffer, then | ||
| 16083 | after typing another C-s or C-r at a failing search, the search goes | ||
| 16084 | to the next buffer in the series and continues searching for the | ||
| 16085 | next occurrence. | ||
| 16086 | |||
| 16087 | The first argument of this function is the current buffer where the | ||
| 16088 | search is currently searching. It defines the base buffer relative to | ||
| 16089 | which this function should find the next buffer. When the isearch | ||
| 16090 | direction is backward (when isearch-forward is nil), this function | ||
| 16091 | should return the previous buffer to search. If the second argument of | ||
| 16092 | this function WRAP is non-nil, then it should return the first buffer | ||
| 16093 | in the series; and for the backward search, it should return the last | ||
| 16094 | buffer in the series.") | ||
| 16095 | |||
| 16096 | (autoload 'isearch-buffers-minor-mode "isearch-multi" "\ | ||
| 16097 | Minor mode for using isearch to search through multiple buffers. | ||
| 16098 | With arg, turn isearch-buffers minor mode on if arg is positive, off otherwise. | ||
| 16099 | |||
| 16100 | \(fn &optional ARG)" t nil) | ||
| 16101 | |||
| 16102 | ;;;*** | ||
| 16103 | |||
| 15962 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method | 16104 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method |
| 15963 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" | 16105 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" |
| 15964 | ;;;;;; (18104 24756)) | 16106 | ;;;;;; (18088 55107)) |
| 15965 | ;;; Generated autoloads from international/isearch-x.el | 16107 | ;;; Generated autoloads from international/isearch-x.el |
| 15966 | 16108 | ||
| 15967 | (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ | 16109 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ |
| 15968 | Select an input method and turn it on in interactive search. | 16110 | Select an input method and turn it on in interactive search. |
| 15969 | 16111 | ||
| 15970 | \(fn)" t nil) | 16112 | \(fn)" t nil) |
| 15971 | 16113 | ||
| 15972 | (autoload (quote isearch-toggle-input-method) "isearch-x" "\ | 16114 | (autoload 'isearch-toggle-input-method "isearch-x" "\ |
| 15973 | Toggle input method in interactive search. | 16115 | Toggle input method in interactive search. |
| 15974 | 16116 | ||
| 15975 | \(fn)" t nil) | 16117 | \(fn)" t nil) |
| 15976 | 16118 | ||
| 15977 | (autoload (quote isearch-process-search-multibyte-characters) "isearch-x" "\ | 16119 | (autoload 'isearch-process-search-multibyte-characters "isearch-x" "\ |
| 15978 | Not documented | 16120 | Not documented |
| 15979 | 16121 | ||
| 15980 | \(fn LAST-CHAR)" nil nil) | 16122 | \(fn LAST-CHAR)" nil nil) |
| 15981 | 16123 | ||
| 15982 | ;;;*** | 16124 | ;;;*** |
| 15983 | 16125 | ||
| 15984 | ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (18104 | 16126 | ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (18088 |
| 15985 | ;;;;;; 24737)) | 16127 | ;;;;;; 55086)) |
| 15986 | ;;; Generated autoloads from isearchb.el | 16128 | ;;; Generated autoloads from isearchb.el |
| 15987 | 16129 | ||
| 15988 | (autoload (quote isearchb-activate) "isearchb" "\ | 16130 | (autoload 'isearchb-activate "isearchb" "\ |
| 15989 | Active isearchb mode for subsequent alphanumeric keystrokes. | 16131 | Active isearchb mode for subsequent alphanumeric keystrokes. |
| 15990 | Executing this command again will terminate the search; or, if | 16132 | Executing this command again will terminate the search; or, if |
| 15991 | the search has not yet begun, will toggle to the last buffer | 16133 | the search has not yet begun, will toggle to the last buffer |
| @@ -15995,117 +16137,86 @@ accessed via isearchb. | |||
| 15995 | 16137 | ||
| 15996 | ;;;*** | 16138 | ;;;*** |
| 15997 | 16139 | ||
| 15998 | ;;;### (autoloads (iso-accents-mode) "iso-acc" "obsolete/iso-acc.el" | ||
| 15999 | ;;;;;; (18104 24760)) | ||
| 16000 | ;;; Generated autoloads from obsolete/iso-acc.el | ||
| 16001 | |||
| 16002 | (autoload (quote iso-accents-mode) "iso-acc" "\ | ||
| 16003 | Toggle ISO Accents mode, in which accents modify the following letter. | ||
| 16004 | This permits easy insertion of accented characters according to ISO-8859-1. | ||
| 16005 | When Iso-accents mode is enabled, accent character keys | ||
| 16006 | \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following | ||
| 16007 | letter key so that it inserts an ISO accented letter. | ||
| 16008 | |||
| 16009 | You can customize ISO Accents mode to a particular language | ||
| 16010 | with the command `iso-accents-customize'. | ||
| 16011 | |||
| 16012 | Special combinations: ~c gives a c with cedilla, | ||
| 16013 | ~d gives an Icelandic eth (d with dash). | ||
| 16014 | ~t gives an Icelandic thorn. | ||
| 16015 | \"s gives German sharp s. | ||
| 16016 | /a gives a with ring. | ||
| 16017 | /e gives an a-e ligature. | ||
| 16018 | ~< and ~> give guillemots. | ||
| 16019 | ~! gives an inverted exclamation mark. | ||
| 16020 | ~? gives an inverted question mark. | ||
| 16021 | |||
| 16022 | With an argument, a positive argument enables ISO Accents mode, | ||
| 16023 | and a negative argument disables it. | ||
| 16024 | |||
| 16025 | \(fn &optional ARG)" t nil) | ||
| 16026 | |||
| 16027 | ;;;*** | ||
| 16028 | |||
| 16029 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only | 16140 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only |
| 16030 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso | 16141 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso |
| 16031 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" | 16142 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" |
| 16032 | ;;;;;; "international/iso-cvt.el" (18104 24756)) | 16143 | ;;;;;; "international/iso-cvt.el" (18088 55107)) |
| 16033 | ;;; Generated autoloads from international/iso-cvt.el | 16144 | ;;; Generated autoloads from international/iso-cvt.el |
| 16034 | 16145 | ||
| 16035 | (autoload (quote iso-spanish) "iso-cvt" "\ | 16146 | (autoload 'iso-spanish "iso-cvt" "\ |
| 16036 | Translate net conventions for Spanish to ISO 8859-1. | 16147 | Translate net conventions for Spanish to ISO 8859-1. |
| 16037 | The region between FROM and TO is translated using the table TRANS-TAB. | 16148 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16038 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16149 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16039 | 16150 | ||
| 16040 | \(fn FROM TO &optional BUFFER)" t nil) | 16151 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16041 | 16152 | ||
| 16042 | (autoload (quote iso-german) "iso-cvt" "\ | 16153 | (autoload 'iso-german "iso-cvt" "\ |
| 16043 | Translate net conventions for German to ISO 8859-1. | 16154 | Translate net conventions for German to ISO 8859-1. |
| 16044 | The region between FROM and TO is translated using the table TRANS-TAB. | 16155 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16045 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16156 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16046 | 16157 | ||
| 16047 | \(fn FROM TO &optional BUFFER)" t nil) | 16158 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16048 | 16159 | ||
| 16049 | (autoload (quote iso-iso2tex) "iso-cvt" "\ | 16160 | (autoload 'iso-iso2tex "iso-cvt" "\ |
| 16050 | Translate ISO 8859-1 characters to TeX sequences. | 16161 | Translate ISO 8859-1 characters to TeX sequences. |
| 16051 | The region between FROM and TO is translated using the table TRANS-TAB. | 16162 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16052 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16163 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16053 | 16164 | ||
| 16054 | \(fn FROM TO &optional BUFFER)" t nil) | 16165 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16055 | 16166 | ||
| 16056 | (autoload (quote iso-tex2iso) "iso-cvt" "\ | 16167 | (autoload 'iso-tex2iso "iso-cvt" "\ |
| 16057 | Translate TeX sequences to ISO 8859-1 characters. | 16168 | Translate TeX sequences to ISO 8859-1 characters. |
| 16058 | The region between FROM and TO is translated using the table TRANS-TAB. | 16169 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16059 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16170 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16060 | 16171 | ||
| 16061 | \(fn FROM TO &optional BUFFER)" t nil) | 16172 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16062 | 16173 | ||
| 16063 | (autoload (quote iso-gtex2iso) "iso-cvt" "\ | 16174 | (autoload 'iso-gtex2iso "iso-cvt" "\ |
| 16064 | Translate German TeX sequences to ISO 8859-1 characters. | 16175 | Translate German TeX sequences to ISO 8859-1 characters. |
| 16065 | The region between FROM and TO is translated using the table TRANS-TAB. | 16176 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16066 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16177 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16067 | 16178 | ||
| 16068 | \(fn FROM TO &optional BUFFER)" t nil) | 16179 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16069 | 16180 | ||
| 16070 | (autoload (quote iso-iso2gtex) "iso-cvt" "\ | 16181 | (autoload 'iso-iso2gtex "iso-cvt" "\ |
| 16071 | Translate ISO 8859-1 characters to German TeX sequences. | 16182 | Translate ISO 8859-1 characters to German TeX sequences. |
| 16072 | The region between FROM and TO is translated using the table TRANS-TAB. | 16183 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16073 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16184 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16074 | 16185 | ||
| 16075 | \(fn FROM TO &optional BUFFER)" t nil) | 16186 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16076 | 16187 | ||
| 16077 | (autoload (quote iso-iso2duden) "iso-cvt" "\ | 16188 | (autoload 'iso-iso2duden "iso-cvt" "\ |
| 16078 | Translate ISO 8859-1 characters to German TeX sequences. | 16189 | Translate ISO 8859-1 characters to German TeX sequences. |
| 16079 | The region between FROM and TO is translated using the table TRANS-TAB. | 16190 | The region between FROM and TO is translated using the table TRANS-TAB. |
| 16080 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16191 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16081 | 16192 | ||
| 16082 | \(fn FROM TO &optional BUFFER)" t nil) | 16193 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16083 | 16194 | ||
| 16084 | (autoload (quote iso-iso2sgml) "iso-cvt" "\ | 16195 | (autoload 'iso-iso2sgml "iso-cvt" "\ |
| 16085 | Translate ISO 8859-1 characters in the region to SGML entities. | 16196 | Translate ISO 8859-1 characters in the region to SGML entities. |
| 16086 | The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\". | 16197 | The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\". |
| 16087 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16198 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16088 | 16199 | ||
| 16089 | \(fn FROM TO &optional BUFFER)" t nil) | 16200 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16090 | 16201 | ||
| 16091 | (autoload (quote iso-sgml2iso) "iso-cvt" "\ | 16202 | (autoload 'iso-sgml2iso "iso-cvt" "\ |
| 16092 | Translate SGML entities in the region to ISO 8859-1 characters. | 16203 | Translate SGML entities in the region to ISO 8859-1 characters. |
| 16093 | The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\". | 16204 | The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\". |
| 16094 | Optional arg BUFFER is ignored (for use in `format-alist'). | 16205 | Optional arg BUFFER is ignored (for use in `format-alist'). |
| 16095 | 16206 | ||
| 16096 | \(fn FROM TO &optional BUFFER)" t nil) | 16207 | \(fn FROM TO &optional BUFFER)" t nil) |
| 16097 | 16208 | ||
| 16098 | (autoload (quote iso-cvt-read-only) "iso-cvt" "\ | 16209 | (autoload 'iso-cvt-read-only "iso-cvt" "\ |
| 16099 | Warn that format is read-only. | 16210 | Warn that format is read-only. |
| 16100 | 16211 | ||
| 16101 | \(fn &rest IGNORE)" t nil) | 16212 | \(fn &rest IGNORE)" t nil) |
| 16102 | 16213 | ||
| 16103 | (autoload (quote iso-cvt-write-only) "iso-cvt" "\ | 16214 | (autoload 'iso-cvt-write-only "iso-cvt" "\ |
| 16104 | Warn that format is write-only. | 16215 | Warn that format is write-only. |
| 16105 | 16216 | ||
| 16106 | \(fn &rest IGNORE)" t nil) | 16217 | \(fn &rest IGNORE)" t nil) |
| 16107 | 16218 | ||
| 16108 | (autoload (quote iso-cvt-define-menu) "iso-cvt" "\ | 16219 | (autoload 'iso-cvt-define-menu "iso-cvt" "\ |
| 16109 | Add submenus to the File menu, to convert to and from various formats. | 16220 | Add submenus to the File menu, to convert to and from various formats. |
| 16110 | 16221 | ||
| 16111 | \(fn)" t nil) | 16222 | \(fn)" t nil) |
| @@ -16113,7 +16224,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 16113 | ;;;*** | 16224 | ;;;*** |
| 16114 | 16225 | ||
| 16115 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" | 16226 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" |
| 16116 | ;;;;;; (18104 24756)) | 16227 | ;;;;;; (18088 55107)) |
| 16117 | ;;; Generated autoloads from international/iso-transl.el | 16228 | ;;; Generated autoloads from international/iso-transl.el |
| 16118 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) | 16229 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) |
| 16119 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 16230 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| @@ -16126,7 +16237,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 16126 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell | 16237 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell |
| 16127 | ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist | 16238 | ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist |
| 16128 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" | 16239 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" |
| 16129 | ;;;;;; (18104 24771)) | 16240 | ;;;;;; (18200 51267)) |
| 16130 | ;;; Generated autoloads from textmodes/ispell.el | 16241 | ;;; Generated autoloads from textmodes/ispell.el |
| 16131 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) | 16242 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) |
| 16132 | 16243 | ||
| @@ -16135,7 +16246,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 16135 | If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, | 16246 | If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, |
| 16136 | where DICTNAME is the name of your default dictionary.") | 16247 | where DICTNAME is the name of your default dictionary.") |
| 16137 | 16248 | ||
| 16138 | (custom-autoload (quote ispell-personal-dictionary) "ispell" t) | 16249 | (custom-autoload 'ispell-personal-dictionary "ispell" t) |
| 16139 | (put 'ispell-local-dictionary 'safe-local-variable 'string-or-null-p) | 16250 | (put 'ispell-local-dictionary 'safe-local-variable 'string-or-null-p) |
| 16140 | 16251 | ||
| 16141 | (defvar ispell-local-dictionary-alist nil "\ | 16252 | (defvar ispell-local-dictionary-alist nil "\ |
| @@ -16146,19 +16257,19 @@ To make permanent changes to your dictionary definitions, you | |||
| 16146 | will need to make your changes in this variable, save, and then | 16257 | will need to make your changes in this variable, save, and then |
| 16147 | re-start Emacs.") | 16258 | re-start Emacs.") |
| 16148 | 16259 | ||
| 16149 | (custom-autoload (quote ispell-local-dictionary-alist) "ispell" t) | 16260 | (custom-autoload 'ispell-local-dictionary-alist "ispell" t) |
| 16150 | 16261 | ||
| 16151 | (setq ispell-dictionary-alist-1 (quote ((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("american" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("brasileiro" "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[']" nil nil nil iso-8859-1) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("castellano" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B") "~tex" iso-8859-1) ("castellano8" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B" "-d" "castellano") "~latin1" iso-8859-1)))) | 16262 | (setq ispell-dictionary-alist-1 '((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("american" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("brasileiro" "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[']" nil nil nil iso-8859-1) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("castellano" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B") "~tex" iso-8859-1) ("castellano8" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B" "-d" "castellano") "~latin1" iso-8859-1))) |
| 16152 | 16263 | ||
| 16153 | (setq ispell-dictionary-alist-2 (quote (("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)))) | 16264 | (setq ispell-dictionary-alist-2 '(("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1))) |
| 16154 | 16265 | ||
| 16155 | (setq ispell-dictionary-alist-3 (quote (("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-3) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-3) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^-]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-'.@]" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\".@]" t nil "~tex" iso-8859-1)))) | 16266 | (setq ispell-dictionary-alist-3 '(("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-3) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-3) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^-]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-'.@]" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\".@]" t nil "~tex" iso-8859-1))) |
| 16156 | 16267 | ||
| 16157 | (setq ispell-dictionary-alist-4 (quote (("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1)))) | 16268 | (setq ispell-dictionary-alist-4 '(("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1))) |
| 16158 | 16269 | ||
| 16159 | (setq ispell-dictionary-alist-5 (quote (("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[.]" nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1)))) | 16270 | (setq ispell-dictionary-alist-5 '(("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[.]" nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1))) |
| 16160 | 16271 | ||
| 16161 | (setq ispell-dictionary-alist-6 (quote (("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1)))) | 16272 | (setq ispell-dictionary-alist-6 '(("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1))) |
| 16162 | 16273 | ||
| 16163 | (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2 ispell-dictionary-alist-3 ispell-dictionary-alist-4 ispell-dictionary-alist-5 ispell-dictionary-alist-6) "\ | 16274 | (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2 ispell-dictionary-alist-3 ispell-dictionary-alist-4 ispell-dictionary-alist-5 ispell-dictionary-alist-6) "\ |
| 16164 | An alist of dictionaries and their associated parameters. | 16275 | An alist of dictionaries and their associated parameters. |
| @@ -16221,15 +16332,15 @@ Spelling menu for XEmacs. | |||
| 16221 | If nil when package is loaded, a standard menu will be set, | 16332 | If nil when package is loaded, a standard menu will be set, |
| 16222 | and added as a submenu of the \"Edit\" menu.") | 16333 | and added as a submenu of the \"Edit\" menu.") |
| 16223 | 16334 | ||
| 16224 | (defvar ispell-menu-map-needed (and (not ispell-menu-map) (not (featurep (quote xemacs))) (quote reload))) | 16335 | (defvar ispell-menu-map-needed (and (not ispell-menu-map) (not (featurep 'xemacs)) 'reload)) |
| 16225 | 16336 | ||
| 16226 | (if ispell-menu-map-needed (progn (setq ispell-menu-map (make-sparse-keymap "Spell")) (define-key ispell-menu-map [ispell-change-dictionary] (quote (menu-item "Change Dictionary..." ispell-change-dictionary :help "Supply explicit dictionary file name"))) (define-key ispell-menu-map [ispell-kill-ispell] (quote (menu-item "Kill Process" ispell-kill-ispell :enable (and (boundp (quote ispell-process)) ispell-process (eq (ispell-process-status) (quote run))) :help "Terminate Ispell subprocess"))) (define-key ispell-menu-map [ispell-pdict-save] (quote (menu-item "Save Dictionary" (lambda nil (interactive) (ispell-pdict-save t t)) :help "Save personal dictionary"))) (define-key ispell-menu-map [ispell-customize] (quote (menu-item "Customize..." (lambda nil (interactive) (customize-group (quote ispell))) :help "Customize spell checking options"))) (define-key ispell-menu-map [ispell-help] (quote (menu-item "Help" (lambda nil (interactive) (describe-function (quote ispell-help))) :help "Show standard Ispell keybindings and commands"))) (define-key ispell-menu-map [flyspell-mode] (quote (menu-item "Automatic spell checking (Flyspell)" flyspell-mode :help "Check spelling while you edit the text" :button (:toggle bound-and-true-p flyspell-mode)))) (define-key ispell-menu-map [ispell-complete-word] (quote (menu-item "Complete Word" ispell-complete-word :help "Complete word at cursor using dictionary"))) (define-key ispell-menu-map [ispell-complete-word-interior-frag] (quote (menu-item "Complete Word Fragment" ispell-complete-word-interior-frag :help "Complete word fragment at cursor"))))) | 16337 | (if ispell-menu-map-needed (progn (setq ispell-menu-map (make-sparse-keymap "Spell")) (define-key ispell-menu-map [ispell-change-dictionary] '(menu-item "Change Dictionary..." ispell-change-dictionary :help "Supply explicit dictionary file name")) (define-key ispell-menu-map [ispell-kill-ispell] '(menu-item "Kill Process" ispell-kill-ispell :enable (and (boundp 'ispell-process) ispell-process (eq (ispell-process-status) 'run)) :help "Terminate Ispell subprocess")) (define-key ispell-menu-map [ispell-pdict-save] '(menu-item "Save Dictionary" (lambda nil (interactive) (ispell-pdict-save t t)) :help "Save personal dictionary")) (define-key ispell-menu-map [ispell-customize] '(menu-item "Customize..." (lambda nil (interactive) (customize-group 'ispell)) :help "Customize spell checking options")) (define-key ispell-menu-map [ispell-help] '(menu-item "Help" (lambda nil (interactive) (describe-function 'ispell-help)) :help "Show standard Ispell keybindings and commands")) (define-key ispell-menu-map [flyspell-mode] '(menu-item "Automatic spell checking (Flyspell)" flyspell-mode :help "Check spelling while you edit the text" :button (:toggle bound-and-true-p flyspell-mode))) (define-key ispell-menu-map [ispell-complete-word] '(menu-item "Complete Word" ispell-complete-word :help "Complete word at cursor using dictionary")) (define-key ispell-menu-map [ispell-complete-word-interior-frag] '(menu-item "Complete Word Fragment" ispell-complete-word-interior-frag :help "Complete word fragment at cursor")))) |
| 16227 | 16338 | ||
| 16228 | (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] (quote (menu-item "Continue Spell-Checking" ispell-continue :enable (and (boundp (quote ispell-region-end)) (marker-position ispell-region-end) (equal (marker-buffer ispell-region-end) (current-buffer))) :help "Continue spell checking last region"))) (define-key ispell-menu-map [ispell-word] (quote (menu-item "Spell-Check Word" ispell-word :help "Spell-check word at cursor"))) (define-key ispell-menu-map [ispell-comments-and-strings] (quote (menu-item "Spell-Check Comments" ispell-comments-and-strings :help "Spell-check only comments and strings"))))) | 16339 | (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] '(menu-item "Continue Spell-Checking" ispell-continue :enable (and (boundp 'ispell-region-end) (marker-position ispell-region-end) (equal (marker-buffer ispell-region-end) (current-buffer))) :help "Continue spell checking last region")) (define-key ispell-menu-map [ispell-word] '(menu-item "Spell-Check Word" ispell-word :help "Spell-check word at cursor")) (define-key ispell-menu-map [ispell-comments-and-strings] '(menu-item "Spell-Check Comments" ispell-comments-and-strings :help "Spell-check only comments and strings")))) |
| 16229 | 16340 | ||
| 16230 | (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-region] (quote (menu-item "Spell-Check Region" ispell-region :enable mark-active :help "Spell-check text in marked region"))) (define-key ispell-menu-map [ispell-message] (quote (menu-item "Spell-Check Message" ispell-message :visible (eq major-mode (quote mail-mode)) :help "Skip headers and included message text"))) (define-key ispell-menu-map [ispell-buffer] (quote (menu-item "Spell-Check Buffer" ispell-buffer :help "Check spelling of selected buffer"))) (fset (quote ispell-menu-map) (symbol-value (quote ispell-menu-map))))) | 16341 | (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-region] '(menu-item "Spell-Check Region" ispell-region :enable mark-active :help "Spell-check text in marked region")) (define-key ispell-menu-map [ispell-message] '(menu-item "Spell-Check Message" ispell-message :visible (eq major-mode 'mail-mode) :help "Skip headers and included message text")) (define-key ispell-menu-map [ispell-buffer] '(menu-item "Spell-Check Buffer" ispell-buffer :help "Check spelling of selected buffer")) (fset 'ispell-menu-map (symbol-value 'ispell-menu-map)))) |
| 16231 | 16342 | ||
| 16232 | (defvar ispell-skip-region-alist (quote ((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) ("^---*BEGIN PGP [A-Z ]*--*" . "^---*END PGP [A-Z ]*--*") ("^begin [0-9][0-9][0-9] [^ ]+$" . "\nend\n") ("^%!PS-Adobe-[123].0" . "\n%%EOF\n") ("^---* \\(Start of \\)?[Ff]orwarded [Mm]essage" . "^---* End of [Ff]orwarded [Mm]essage") ("\\(--+\\|_+\\|\\(/\\w\\|\\(\\(\\w\\|[-_]\\)+[.:@]\\)\\)\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_~=?&]\\)+\\)+\\)"))) "\ | 16343 | (defvar ispell-skip-region-alist '((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) ("^---*BEGIN PGP [A-Z ]*--*" . "^---*END PGP [A-Z ]*--*") ("^begin [0-9][0-9][0-9] [^ ]+$" . "\nend\n") ("^%!PS-Adobe-[123].0" . "\n%%EOF\n") ("^---* \\(Start of \\)?[Ff]orwarded [Mm]essage" . "^---* End of [Ff]orwarded [Mm]essage") ("\\(--+\\|_+\\|\\(/\\w\\|\\(\\(\\w\\|[-_]\\)+[.:@]\\)\\)\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_~=?&]\\)+\\)+\\)")) "\ |
| 16233 | Alist expressing beginning and end of regions not to spell check. | 16344 | Alist expressing beginning and end of regions not to spell check. |
| 16234 | The alist key must be a regular expression. | 16345 | The alist key must be a regular expression. |
| 16235 | Valid forms include: | 16346 | Valid forms include: |
| @@ -16238,7 +16349,7 @@ Valid forms include: | |||
| 16238 | (KEY REGEXP) - skip to end of REGEXP. REGEXP must be a string. | 16349 | (KEY REGEXP) - skip to end of REGEXP. REGEXP must be a string. |
| 16239 | (KEY FUNCTION ARGS) - FUNCTION called with ARGS returns end of region.") | 16350 | (KEY FUNCTION ARGS) - FUNCTION called with ARGS returns end of region.") |
| 16240 | 16351 | ||
| 16241 | (defvar ispell-tex-skip-alists (quote ((("\\\\addcontentsline" ispell-tex-arg-end 2) ("\\\\add\\(tocontents\\|vspace\\)" ispell-tex-arg-end) ("\\\\\\([aA]lph\\|arabic\\)" ispell-tex-arg-end) ("\\\\bibliographystyle" ispell-tex-arg-end) ("\\\\makebox" ispell-tex-arg-end 0) ("\\\\e?psfig" ispell-tex-arg-end) ("\\\\document\\(class\\|style\\)" . "\\\\begin[ \n]*{[ \n]*document[ \n]*}")) (("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0) ("list" ispell-tex-arg-end 2) ("program" . "\\\\end[ \n]*{[ \n]*program[ \n]*}") ("verbatim\\*?" . "\\\\end[ \n]*{[ \n]*verbatim\\*?[ \n]*}")))) "\ | 16352 | (defvar ispell-tex-skip-alists '((("\\\\addcontentsline" ispell-tex-arg-end 2) ("\\\\add\\(tocontents\\|vspace\\)" ispell-tex-arg-end) ("\\\\\\([aA]lph\\|arabic\\)" ispell-tex-arg-end) ("\\\\bibliographystyle" ispell-tex-arg-end) ("\\\\makebox" ispell-tex-arg-end 0) ("\\\\e?psfig" ispell-tex-arg-end) ("\\\\document\\(class\\|style\\)" . "\\\\begin[ \n]*{[ \n]*document[ \n]*}")) (("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0) ("list" ispell-tex-arg-end 2) ("program" . "\\\\end[ \n]*{[ \n]*program[ \n]*}") ("verbatim\\*?" . "\\\\end[ \n]*{[ \n]*verbatim\\*?[ \n]*}"))) "\ |
| 16242 | *Lists of regions to be skipped in TeX mode. | 16353 | *Lists of regions to be skipped in TeX mode. |
| 16243 | First list is used raw. | 16354 | First list is used raw. |
| 16244 | Second list has key placed inside \\begin{}. | 16355 | Second list has key placed inside \\begin{}. |
| @@ -16246,14 +16357,14 @@ Second list has key placed inside \\begin{}. | |||
| 16246 | Delete or add any regions you want to be automatically selected | 16357 | Delete or add any regions you want to be automatically selected |
| 16247 | for skipping in latex mode.") | 16358 | for skipping in latex mode.") |
| 16248 | 16359 | ||
| 16249 | (defvar ispell-html-skip-alists (quote (("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>") ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>") ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>") ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>") ("<[tT][tT]/" "/") ("<[^ \n>]" ">") ("&[^ \n;]" "[; \n]"))) "\ | 16360 | (defvar ispell-html-skip-alists '(("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>") ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>") ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>") ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>") ("<[tT][tT]/" "/") ("<[^ \n>]" ">") ("&[^ \n;]" "[; \n]")) "\ |
| 16250 | *Lists of start and end keys to skip in HTML buffers. | 16361 | *Lists of start and end keys to skip in HTML buffers. |
| 16251 | Same format as `ispell-skip-region-alist' | 16362 | Same format as `ispell-skip-region-alist' |
| 16252 | Note - substrings of other matches must come last | 16363 | Note - substrings of other matches must come last |
| 16253 | (e.g. \"<[tT][tT]/\" and \"<[^ \\t\\n>]\").") | 16364 | (e.g. \"<[tT][tT]/\" and \"<[^ \\t\\n>]\").") |
| 16254 | (define-key esc-map "$" 'ispell-word) | 16365 | (define-key esc-map "$" 'ispell-word) |
| 16255 | 16366 | ||
| 16256 | (autoload (quote ispell-word) "ispell" "\ | 16367 | (autoload 'ispell-word "ispell" "\ |
| 16257 | Check spelling of word under or before the cursor. | 16368 | Check spelling of word under or before the cursor. |
| 16258 | If the word is not found in dictionary, display possible corrections | 16369 | If the word is not found in dictionary, display possible corrections |
| 16259 | in a window allowing you to choose one. | 16370 | in a window allowing you to choose one. |
| @@ -16267,6 +16378,9 @@ when called interactively, non-corrective messages are suppressed. | |||
| 16267 | With a prefix argument (or if CONTINUE is non-nil), | 16378 | With a prefix argument (or if CONTINUE is non-nil), |
| 16268 | resume interrupted spell-checking of a buffer or region. | 16379 | resume interrupted spell-checking of a buffer or region. |
| 16269 | 16380 | ||
| 16381 | Interactively, in Transient Mark mode when the mark is active, call | ||
| 16382 | `ispell-region' to check the active region for spelling errors. | ||
| 16383 | |||
| 16270 | Word syntax is controlled by the definition of the chosen dictionary, | 16384 | Word syntax is controlled by the definition of the chosen dictionary, |
| 16271 | which is in `ispell-local-dictionary-alist' or `ispell-dictionary-alist'. | 16385 | which is in `ispell-local-dictionary-alist' or `ispell-dictionary-alist'. |
| 16272 | 16386 | ||
| @@ -16280,15 +16394,15 @@ nil word is correct or spelling is accepted. | |||
| 16280 | \(\"word\" arg) word is hand entered. | 16394 | \(\"word\" arg) word is hand entered. |
| 16281 | quit spell session exited. | 16395 | quit spell session exited. |
| 16282 | 16396 | ||
| 16283 | \(fn &optional FOLLOWING QUIETLY CONTINUE)" t nil) | 16397 | \(fn &optional FOLLOWING QUIETLY CONTINUE REGION)" t nil) |
| 16284 | 16398 | ||
| 16285 | (autoload (quote ispell-pdict-save) "ispell" "\ | 16399 | (autoload 'ispell-pdict-save "ispell" "\ |
| 16286 | Check to see if the personal dictionary has been modified. | 16400 | Check to see if the personal dictionary has been modified. |
| 16287 | If so, ask if it needs to be saved. | 16401 | If so, ask if it needs to be saved. |
| 16288 | 16402 | ||
| 16289 | \(fn &optional NO-QUERY FORCE-SAVE)" t nil) | 16403 | \(fn &optional NO-QUERY FORCE-SAVE)" t nil) |
| 16290 | 16404 | ||
| 16291 | (autoload (quote ispell-help) "ispell" "\ | 16405 | (autoload 'ispell-help "ispell" "\ |
| 16292 | Display a list of the options available when a misspelling is encountered. | 16406 | Display a list of the options available when a misspelling is encountered. |
| 16293 | 16407 | ||
| 16294 | Selections are: | 16408 | Selections are: |
| @@ -16314,13 +16428,13 @@ SPC: Accept word this time. | |||
| 16314 | 16428 | ||
| 16315 | \(fn)" nil nil) | 16429 | \(fn)" nil nil) |
| 16316 | 16430 | ||
| 16317 | (autoload (quote ispell-kill-ispell) "ispell" "\ | 16431 | (autoload 'ispell-kill-ispell "ispell" "\ |
| 16318 | Kill current Ispell process (so that you may start a fresh one). | 16432 | Kill current Ispell process (so that you may start a fresh one). |
| 16319 | With NO-ERROR, just return non-nil if there was no Ispell running. | 16433 | With NO-ERROR, just return non-nil if there was no Ispell running. |
| 16320 | 16434 | ||
| 16321 | \(fn &optional NO-ERROR)" t nil) | 16435 | \(fn &optional NO-ERROR)" t nil) |
| 16322 | 16436 | ||
| 16323 | (autoload (quote ispell-change-dictionary) "ispell" "\ | 16437 | (autoload 'ispell-change-dictionary "ispell" "\ |
| 16324 | Change to dictionary DICT for Ispell. | 16438 | Change to dictionary DICT for Ispell. |
| 16325 | With a prefix arg, set it \"globally\", for all buffers. | 16439 | With a prefix arg, set it \"globally\", for all buffers. |
| 16326 | Without a prefix arg, set it \"locally\", just for this buffer. | 16440 | Without a prefix arg, set it \"locally\", just for this buffer. |
| @@ -16329,29 +16443,29 @@ By just answering RET you can find out what the current dictionary is. | |||
| 16329 | 16443 | ||
| 16330 | \(fn DICT &optional ARG)" t nil) | 16444 | \(fn DICT &optional ARG)" t nil) |
| 16331 | 16445 | ||
| 16332 | (autoload (quote ispell-region) "ispell" "\ | 16446 | (autoload 'ispell-region "ispell" "\ |
| 16333 | Interactively check a region for spelling errors. | 16447 | Interactively check a region for spelling errors. |
| 16334 | Return nil if spell session is quit, | 16448 | Return nil if spell session is quit, |
| 16335 | otherwise returns shift offset amount for last line processed. | 16449 | otherwise returns shift offset amount for last line processed. |
| 16336 | 16450 | ||
| 16337 | \(fn REG-START REG-END &optional RECHECKP SHIFT)" t nil) | 16451 | \(fn REG-START REG-END &optional RECHECKP SHIFT)" t nil) |
| 16338 | 16452 | ||
| 16339 | (autoload (quote ispell-comments-and-strings) "ispell" "\ | 16453 | (autoload 'ispell-comments-and-strings "ispell" "\ |
| 16340 | Check comments and strings in the current buffer for spelling errors. | 16454 | Check comments and strings in the current buffer for spelling errors. |
| 16341 | 16455 | ||
| 16342 | \(fn)" t nil) | 16456 | \(fn)" t nil) |
| 16343 | 16457 | ||
| 16344 | (autoload (quote ispell-buffer) "ispell" "\ | 16458 | (autoload 'ispell-buffer "ispell" "\ |
| 16345 | Check the current buffer for spelling errors interactively. | 16459 | Check the current buffer for spelling errors interactively. |
| 16346 | 16460 | ||
| 16347 | \(fn)" t nil) | 16461 | \(fn)" t nil) |
| 16348 | 16462 | ||
| 16349 | (autoload (quote ispell-continue) "ispell" "\ | 16463 | (autoload 'ispell-continue "ispell" "\ |
| 16350 | Continue a halted spelling session beginning with the current word. | 16464 | Continue a halted spelling session beginning with the current word. |
| 16351 | 16465 | ||
| 16352 | \(fn)" t nil) | 16466 | \(fn)" t nil) |
| 16353 | 16467 | ||
| 16354 | (autoload (quote ispell-complete-word) "ispell" "\ | 16468 | (autoload 'ispell-complete-word "ispell" "\ |
| 16355 | Try to complete the word before or under point (see `lookup-words'). | 16469 | Try to complete the word before or under point (see `lookup-words'). |
| 16356 | If optional INTERIOR-FRAG is non-nil then the word may be a character | 16470 | If optional INTERIOR-FRAG is non-nil then the word may be a character |
| 16357 | sequence inside of a word. | 16471 | sequence inside of a word. |
| @@ -16360,12 +16474,12 @@ Standard ispell choices are then available. | |||
| 16360 | 16474 | ||
| 16361 | \(fn &optional INTERIOR-FRAG)" t nil) | 16475 | \(fn &optional INTERIOR-FRAG)" t nil) |
| 16362 | 16476 | ||
| 16363 | (autoload (quote ispell-complete-word-interior-frag) "ispell" "\ | 16477 | (autoload 'ispell-complete-word-interior-frag "ispell" "\ |
| 16364 | Completes word matching character sequence inside a word. | 16478 | Completes word matching character sequence inside a word. |
| 16365 | 16479 | ||
| 16366 | \(fn)" t nil) | 16480 | \(fn)" t nil) |
| 16367 | 16481 | ||
| 16368 | (autoload (quote ispell) "ispell" "\ | 16482 | (autoload 'ispell "ispell" "\ |
| 16369 | Interactively check a region or buffer for spelling errors. | 16483 | Interactively check a region or buffer for spelling errors. |
| 16370 | If `transient-mark-mode' is on, and a region is active, spell-check | 16484 | If `transient-mark-mode' is on, and a region is active, spell-check |
| 16371 | that region. Otherwise spell-check the buffer. | 16485 | that region. Otherwise spell-check the buffer. |
| @@ -16377,9 +16491,10 @@ available on the net. | |||
| 16377 | 16491 | ||
| 16378 | \(fn)" t nil) | 16492 | \(fn)" t nil) |
| 16379 | 16493 | ||
| 16380 | (autoload (quote ispell-minor-mode) "ispell" "\ | 16494 | (autoload 'ispell-minor-mode "ispell" "\ |
| 16381 | Toggle Ispell minor mode. | 16495 | Toggle Ispell minor mode. |
| 16382 | With prefix arg, turn Ispell minor mode on iff arg is positive. | 16496 | With prefix argument ARG, turn Ispell minor mode on if ARG is positive, |
| 16497 | otherwise turn it off. | ||
| 16383 | 16498 | ||
| 16384 | In Ispell minor mode, pressing SPC or RET | 16499 | In Ispell minor mode, pressing SPC or RET |
| 16385 | warns you if the previous word is incorrectly spelled. | 16500 | warns you if the previous word is incorrectly spelled. |
| @@ -16389,7 +16504,7 @@ them into the running ispell process, type \\[ispell-word] SPC. | |||
| 16389 | 16504 | ||
| 16390 | \(fn &optional ARG)" t nil) | 16505 | \(fn &optional ARG)" t nil) |
| 16391 | 16506 | ||
| 16392 | (autoload (quote ispell-message) "ispell" "\ | 16507 | (autoload 'ispell-message "ispell" "\ |
| 16393 | Check the spelling of a mail message or news post. | 16508 | Check the spelling of a mail message or news post. |
| 16394 | Don't check spelling of message headers except the Subject field. | 16509 | Don't check spelling of message headers except the Subject field. |
| 16395 | Don't check included messages. | 16510 | Don't check included messages. |
| @@ -16413,8 +16528,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 16413 | 16528 | ||
| 16414 | ;;;*** | 16529 | ;;;*** |
| 16415 | 16530 | ||
| 16416 | ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (18104 | 16531 | ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (18120 |
| 16417 | ;;;;;; 24737)) | 16532 | ;;;;;; 34749)) |
| 16418 | ;;; Generated autoloads from iswitchb.el | 16533 | ;;; Generated autoloads from iswitchb.el |
| 16419 | 16534 | ||
| 16420 | (defvar iswitchb-mode nil "\ | 16535 | (defvar iswitchb-mode nil "\ |
| @@ -16424,11 +16539,11 @@ Setting this variable directly does not take effect; | |||
| 16424 | either customize it (see the info node `Easy Customization') | 16539 | either customize it (see the info node `Easy Customization') |
| 16425 | or call the function `iswitchb-mode'.") | 16540 | or call the function `iswitchb-mode'.") |
| 16426 | 16541 | ||
| 16427 | (custom-autoload (quote iswitchb-mode) "iswitchb" nil) | 16542 | (custom-autoload 'iswitchb-mode "iswitchb" nil) |
| 16428 | 16543 | ||
| 16429 | (autoload (quote iswitchb-mode) "iswitchb" "\ | 16544 | (autoload 'iswitchb-mode "iswitchb" "\ |
| 16430 | Toggle Iswitchb global minor mode. | 16545 | Toggle Iswitchb global minor mode. |
| 16431 | With arg, turn Iswitchb mode on if and only iff ARG is positive. | 16546 | With arg, turn Iswitchb mode on if ARG is positive, otherwise turn it off. |
| 16432 | This mode enables switching between buffers using substrings. See | 16547 | This mode enables switching between buffers using substrings. See |
| 16433 | `iswitchb' for details. | 16548 | `iswitchb' for details. |
| 16434 | 16549 | ||
| @@ -16439,15 +16554,15 @@ This mode enables switching between buffers using substrings. See | |||
| 16439 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region | 16554 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region |
| 16440 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku | 16555 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku |
| 16441 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) | 16556 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) |
| 16442 | ;;;;;; "japan-util" "language/japan-util.el" (18104 24757)) | 16557 | ;;;;;; "japan-util" "language/japan-util.el" (18088 55109)) |
| 16443 | ;;; Generated autoloads from language/japan-util.el | 16558 | ;;; Generated autoloads from language/japan-util.el |
| 16444 | 16559 | ||
| 16445 | (autoload (quote setup-japanese-environment-internal) "japan-util" "\ | 16560 | (autoload 'setup-japanese-environment-internal "japan-util" "\ |
| 16446 | Not documented | 16561 | Not documented |
| 16447 | 16562 | ||
| 16448 | \(fn)" nil nil) | 16563 | \(fn)" nil nil) |
| 16449 | 16564 | ||
| 16450 | (autoload (quote japanese-katakana) "japan-util" "\ | 16565 | (autoload 'japanese-katakana "japan-util" "\ |
| 16451 | Convert argument to Katakana and return that. | 16566 | Convert argument to Katakana and return that. |
| 16452 | The argument may be a character or string. The result has the same type. | 16567 | The argument may be a character or string. The result has the same type. |
| 16453 | The argument object is not altered--the value is a copy. | 16568 | The argument object is not altered--the value is a copy. |
| @@ -16458,14 +16573,14 @@ Optional argument HANKAKU t means to convert to `hankaku' Katakana | |||
| 16458 | 16573 | ||
| 16459 | \(fn OBJ &optional HANKAKU)" nil nil) | 16574 | \(fn OBJ &optional HANKAKU)" nil nil) |
| 16460 | 16575 | ||
| 16461 | (autoload (quote japanese-hiragana) "japan-util" "\ | 16576 | (autoload 'japanese-hiragana "japan-util" "\ |
| 16462 | Convert argument to Hiragana and return that. | 16577 | Convert argument to Hiragana and return that. |
| 16463 | The argument may be a character or string. The result has the same type. | 16578 | The argument may be a character or string. The result has the same type. |
| 16464 | The argument object is not altered--the value is a copy. | 16579 | The argument object is not altered--the value is a copy. |
| 16465 | 16580 | ||
| 16466 | \(fn OBJ)" nil nil) | 16581 | \(fn OBJ)" nil nil) |
| 16467 | 16582 | ||
| 16468 | (autoload (quote japanese-hankaku) "japan-util" "\ | 16583 | (autoload 'japanese-hankaku "japan-util" "\ |
| 16469 | Convert argument to `hankaku' and return that. | 16584 | Convert argument to `hankaku' and return that. |
| 16470 | The argument may be a character or string. The result has the same type. | 16585 | The argument may be a character or string. The result has the same type. |
| 16471 | The argument object is not altered--the value is a copy. | 16586 | The argument object is not altered--the value is a copy. |
| @@ -16473,26 +16588,26 @@ Optional argument ASCII-ONLY non-nil means to return only ASCII character. | |||
| 16473 | 16588 | ||
| 16474 | \(fn OBJ &optional ASCII-ONLY)" nil nil) | 16589 | \(fn OBJ &optional ASCII-ONLY)" nil nil) |
| 16475 | 16590 | ||
| 16476 | (autoload (quote japanese-zenkaku) "japan-util" "\ | 16591 | (autoload 'japanese-zenkaku "japan-util" "\ |
| 16477 | Convert argument to `zenkaku' and return that. | 16592 | Convert argument to `zenkaku' and return that. |
| 16478 | The argument may be a character or string. The result has the same type. | 16593 | The argument may be a character or string. The result has the same type. |
| 16479 | The argument object is not altered--the value is a copy. | 16594 | The argument object is not altered--the value is a copy. |
| 16480 | 16595 | ||
| 16481 | \(fn OBJ)" nil nil) | 16596 | \(fn OBJ)" nil nil) |
| 16482 | 16597 | ||
| 16483 | (autoload (quote japanese-katakana-region) "japan-util" "\ | 16598 | (autoload 'japanese-katakana-region "japan-util" "\ |
| 16484 | Convert Japanese `hiragana' chars in the region to `katakana' chars. | 16599 | Convert Japanese `hiragana' chars in the region to `katakana' chars. |
| 16485 | Optional argument HANKAKU t means to convert to `hankaku katakana' character | 16600 | Optional argument HANKAKU t means to convert to `hankaku katakana' character |
| 16486 | of which charset is `japanese-jisx0201-kana'. | 16601 | of which charset is `japanese-jisx0201-kana'. |
| 16487 | 16602 | ||
| 16488 | \(fn FROM TO &optional HANKAKU)" t nil) | 16603 | \(fn FROM TO &optional HANKAKU)" t nil) |
| 16489 | 16604 | ||
| 16490 | (autoload (quote japanese-hiragana-region) "japan-util" "\ | 16605 | (autoload 'japanese-hiragana-region "japan-util" "\ |
| 16491 | Convert Japanese `katakana' chars in the region to `hiragana' chars. | 16606 | Convert Japanese `katakana' chars in the region to `hiragana' chars. |
| 16492 | 16607 | ||
| 16493 | \(fn FROM TO)" t nil) | 16608 | \(fn FROM TO)" t nil) |
| 16494 | 16609 | ||
| 16495 | (autoload (quote japanese-hankaku-region) "japan-util" "\ | 16610 | (autoload 'japanese-hankaku-region "japan-util" "\ |
| 16496 | Convert Japanese `zenkaku' chars in the region to `hankaku' chars. | 16611 | Convert Japanese `zenkaku' chars in the region to `hankaku' chars. |
| 16497 | `Zenkaku' chars belong to `japanese-jisx0208' | 16612 | `Zenkaku' chars belong to `japanese-jisx0208' |
| 16498 | `Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'. | 16613 | `Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'. |
| @@ -16500,7 +16615,7 @@ Optional argument ASCII-ONLY non-nil means to convert only to ASCII char. | |||
| 16500 | 16615 | ||
| 16501 | \(fn FROM TO &optional ASCII-ONLY)" t nil) | 16616 | \(fn FROM TO &optional ASCII-ONLY)" t nil) |
| 16502 | 16617 | ||
| 16503 | (autoload (quote japanese-zenkaku-region) "japan-util" "\ | 16618 | (autoload 'japanese-zenkaku-region "japan-util" "\ |
| 16504 | Convert hankaku' chars in the region to Japanese `zenkaku' chars. | 16619 | Convert hankaku' chars in the region to Japanese `zenkaku' chars. |
| 16505 | `Zenkaku' chars belong to `japanese-jisx0208' | 16620 | `Zenkaku' chars belong to `japanese-jisx0208' |
| 16506 | `Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'. | 16621 | `Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'. |
| @@ -16508,7 +16623,7 @@ Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char. | |||
| 16508 | 16623 | ||
| 16509 | \(fn FROM TO &optional KATAKANA-ONLY)" t nil) | 16624 | \(fn FROM TO &optional KATAKANA-ONLY)" t nil) |
| 16510 | 16625 | ||
| 16511 | (autoload (quote read-hiragana-string) "japan-util" "\ | 16626 | (autoload 'read-hiragana-string "japan-util" "\ |
| 16512 | Read a Hiragana string from the minibuffer, prompting with string PROMPT. | 16627 | Read a Hiragana string from the minibuffer, prompting with string PROMPT. |
| 16513 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | 16628 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. |
| 16514 | 16629 | ||
| @@ -16517,7 +16632,7 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | |||
| 16517 | ;;;*** | 16632 | ;;;*** |
| 16518 | 16633 | ||
| 16519 | ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" | 16634 | ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" |
| 16520 | ;;;;;; "jka-compr.el" (18104 24737)) | 16635 | ;;;;;; "jka-compr.el" (18088 55086)) |
| 16521 | ;;; Generated autoloads from jka-compr.el | 16636 | ;;; Generated autoloads from jka-compr.el |
| 16522 | 16637 | ||
| 16523 | (defvar jka-compr-inhibit nil "\ | 16638 | (defvar jka-compr-inhibit nil "\ |
| @@ -16525,12 +16640,12 @@ Non-nil means inhibit automatic uncompression temporarily. | |||
| 16525 | Lisp programs can bind this to t to do that. | 16640 | Lisp programs can bind this to t to do that. |
| 16526 | It is not recommended to set this variable permanently to anything but nil.") | 16641 | It is not recommended to set this variable permanently to anything but nil.") |
| 16527 | 16642 | ||
| 16528 | (autoload (quote jka-compr-handler) "jka-compr" "\ | 16643 | (autoload 'jka-compr-handler "jka-compr" "\ |
| 16529 | Not documented | 16644 | Not documented |
| 16530 | 16645 | ||
| 16531 | \(fn OPERATION &rest ARGS)" nil nil) | 16646 | \(fn OPERATION &rest ARGS)" nil nil) |
| 16532 | 16647 | ||
| 16533 | (autoload (quote jka-compr-uninstall) "jka-compr" "\ | 16648 | (autoload 'jka-compr-uninstall "jka-compr" "\ |
| 16534 | Uninstall jka-compr. | 16649 | Uninstall jka-compr. |
| 16535 | This removes the entries in `file-name-handler-alist' and `auto-mode-alist' | 16650 | This removes the entries in `file-name-handler-alist' and `auto-mode-alist' |
| 16536 | and `inhibit-first-line-modes-suffixes' that were added | 16651 | and `inhibit-first-line-modes-suffixes' that were added |
| @@ -16542,7 +16657,7 @@ by `jka-compr-installed'. | |||
| 16542 | 16657 | ||
| 16543 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup | 16658 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup |
| 16544 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" | 16659 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" |
| 16545 | ;;;;;; (18104 24748)) | 16660 | ;;;;;; (18088 55097)) |
| 16546 | ;;; Generated autoloads from emulation/keypad.el | 16661 | ;;; Generated autoloads from emulation/keypad.el |
| 16547 | 16662 | ||
| 16548 | (defvar keypad-setup nil "\ | 16663 | (defvar keypad-setup nil "\ |
| @@ -16550,30 +16665,30 @@ Specifies the keypad setup for unshifted keypad keys when NumLock is off. | |||
| 16550 | When selecting the plain numeric keypad setup, the character returned by the | 16665 | When selecting the plain numeric keypad setup, the character returned by the |
| 16551 | decimal key must be specified.") | 16666 | decimal key must be specified.") |
| 16552 | 16667 | ||
| 16553 | (custom-autoload (quote keypad-setup) "keypad" nil) | 16668 | (custom-autoload 'keypad-setup "keypad" nil) |
| 16554 | 16669 | ||
| 16555 | (defvar keypad-numlock-setup nil "\ | 16670 | (defvar keypad-numlock-setup nil "\ |
| 16556 | Specifies the keypad setup for unshifted keypad keys when NumLock is on. | 16671 | Specifies the keypad setup for unshifted keypad keys when NumLock is on. |
| 16557 | When selecting the plain numeric keypad setup, the character returned by the | 16672 | When selecting the plain numeric keypad setup, the character returned by the |
| 16558 | decimal key must be specified.") | 16673 | decimal key must be specified.") |
| 16559 | 16674 | ||
| 16560 | (custom-autoload (quote keypad-numlock-setup) "keypad" nil) | 16675 | (custom-autoload 'keypad-numlock-setup "keypad" nil) |
| 16561 | 16676 | ||
| 16562 | (defvar keypad-shifted-setup nil "\ | 16677 | (defvar keypad-shifted-setup nil "\ |
| 16563 | Specifies the keypad setup for shifted keypad keys when NumLock is off. | 16678 | Specifies the keypad setup for shifted keypad keys when NumLock is off. |
| 16564 | When selecting the plain numeric keypad setup, the character returned by the | 16679 | When selecting the plain numeric keypad setup, the character returned by the |
| 16565 | decimal key must be specified.") | 16680 | decimal key must be specified.") |
| 16566 | 16681 | ||
| 16567 | (custom-autoload (quote keypad-shifted-setup) "keypad" nil) | 16682 | (custom-autoload 'keypad-shifted-setup "keypad" nil) |
| 16568 | 16683 | ||
| 16569 | (defvar keypad-numlock-shifted-setup nil "\ | 16684 | (defvar keypad-numlock-shifted-setup nil "\ |
| 16570 | Specifies the keypad setup for shifted keypad keys when NumLock is off. | 16685 | Specifies the keypad setup for shifted keypad keys when NumLock is off. |
| 16571 | When selecting the plain numeric keypad setup, the character returned by the | 16686 | When selecting the plain numeric keypad setup, the character returned by the |
| 16572 | decimal key must be specified.") | 16687 | decimal key must be specified.") |
| 16573 | 16688 | ||
| 16574 | (custom-autoload (quote keypad-numlock-shifted-setup) "keypad" nil) | 16689 | (custom-autoload 'keypad-numlock-shifted-setup "keypad" nil) |
| 16575 | 16690 | ||
| 16576 | (autoload (quote keypad-setup) "keypad" "\ | 16691 | (autoload 'keypad-setup "keypad" "\ |
| 16577 | Set keypad bindings in `function-key-map' according to SETUP. | 16692 | Set keypad bindings in `function-key-map' according to SETUP. |
| 16578 | If optional second argument NUMLOCK is non-nil, the NumLock On bindings | 16693 | If optional second argument NUMLOCK is non-nil, the NumLock On bindings |
| 16579 | are changed. Otherwise, the NumLock Off bindings are changed. | 16694 | are changed. Otherwise, the NumLock Off bindings are changed. |
| @@ -16598,10 +16713,10 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' | |||
| 16598 | ;;;*** | 16713 | ;;;*** |
| 16599 | 16714 | ||
| 16600 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" | 16715 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" |
| 16601 | ;;;;;; (18104 24756)) | 16716 | ;;;;;; (18088 55107)) |
| 16602 | ;;; Generated autoloads from international/kinsoku.el | 16717 | ;;; Generated autoloads from international/kinsoku.el |
| 16603 | 16718 | ||
| 16604 | (autoload (quote kinsoku) "kinsoku" "\ | 16719 | (autoload 'kinsoku "kinsoku" "\ |
| 16605 | Go to a line breaking position near point by doing `kinsoku' processing. | 16720 | Go to a line breaking position near point by doing `kinsoku' processing. |
| 16606 | LINEBEG is a buffer position we can't break a line before. | 16721 | LINEBEG is a buffer position we can't break a line before. |
| 16607 | 16722 | ||
| @@ -16619,8 +16734,8 @@ the context of text formatting. | |||
| 16619 | 16734 | ||
| 16620 | ;;;*** | 16735 | ;;;*** |
| 16621 | 16736 | ||
| 16622 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (18104 | 16737 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (18088 |
| 16623 | ;;;;;; 24757)) | 16738 | ;;;;;; 55107)) |
| 16624 | ;;; Generated autoloads from international/kkc.el | 16739 | ;;; Generated autoloads from international/kkc.el |
| 16625 | 16740 | ||
| 16626 | (defvar kkc-after-update-conversion-functions nil "\ | 16741 | (defvar kkc-after-update-conversion-functions nil "\ |
| @@ -16630,7 +16745,7 @@ candidate list. Each time he changes the selection, functions in this | |||
| 16630 | list are called with two arguments; starting and ending buffer | 16745 | list are called with two arguments; starting and ending buffer |
| 16631 | positions that contains the current selection.") | 16746 | positions that contains the current selection.") |
| 16632 | 16747 | ||
| 16633 | (autoload (quote kkc-region) "kkc" "\ | 16748 | (autoload 'kkc-region "kkc" "\ |
| 16634 | Convert Kana string in the current region to Kanji-Kana mixed string. | 16749 | Convert Kana string in the current region to Kanji-Kana mixed string. |
| 16635 | Users can select a desirable conversion interactively. | 16750 | Users can select a desirable conversion interactively. |
| 16636 | When called from a program, expects two arguments, | 16751 | When called from a program, expects two arguments, |
| @@ -16645,7 +16760,7 @@ and the return value is the length of the conversion. | |||
| 16645 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro | 16760 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro |
| 16646 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter | 16761 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter |
| 16647 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" | 16762 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" |
| 16648 | ;;;;;; "kmacro.el" (18104 24737)) | 16763 | ;;;;;; "kmacro.el" (18088 55086)) |
| 16649 | ;;; Generated autoloads from kmacro.el | 16764 | ;;; Generated autoloads from kmacro.el |
| 16650 | (global-set-key "\C-x(" 'kmacro-start-macro) | 16765 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 16651 | (global-set-key "\C-x)" 'kmacro-end-macro) | 16766 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -16655,7 +16770,7 @@ and the return value is the length of the conversion. | |||
| 16655 | (global-set-key "\C-x\C-k" 'kmacro-keymap) | 16770 | (global-set-key "\C-x\C-k" 'kmacro-keymap) |
| 16656 | (autoload 'kmacro-keymap "kmacro" "Keymap for keyboard macro commands." t 'keymap) | 16771 | (autoload 'kmacro-keymap "kmacro" "Keymap for keyboard macro commands." t 'keymap) |
| 16657 | 16772 | ||
| 16658 | (autoload (quote kmacro-start-macro) "kmacro" "\ | 16773 | (autoload 'kmacro-start-macro "kmacro" "\ |
| 16659 | Record subsequent keyboard input, defining a keyboard macro. | 16774 | Record subsequent keyboard input, defining a keyboard macro. |
| 16660 | The commands are recorded even as they are executed. | 16775 | The commands are recorded even as they are executed. |
| 16661 | Use \\[kmacro-end-macro] to finish recording and make the macro available. | 16776 | Use \\[kmacro-end-macro] to finish recording and make the macro available. |
| @@ -16679,7 +16794,7 @@ Use \\[kmacro-bind-to-key] to bind it to a key sequence. | |||
| 16679 | 16794 | ||
| 16680 | \(fn ARG)" t nil) | 16795 | \(fn ARG)" t nil) |
| 16681 | 16796 | ||
| 16682 | (autoload (quote kmacro-end-macro) "kmacro" "\ | 16797 | (autoload 'kmacro-end-macro "kmacro" "\ |
| 16683 | Finish defining a keyboard macro. | 16798 | Finish defining a keyboard macro. |
| 16684 | The definition was started by \\[kmacro-start-macro]. | 16799 | The definition was started by \\[kmacro-start-macro]. |
| 16685 | The macro is now available for use via \\[kmacro-call-macro], | 16800 | The macro is now available for use via \\[kmacro-call-macro], |
| @@ -16692,7 +16807,7 @@ An argument of zero means repeat until error. | |||
| 16692 | 16807 | ||
| 16693 | \(fn ARG)" t nil) | 16808 | \(fn ARG)" t nil) |
| 16694 | 16809 | ||
| 16695 | (autoload (quote kmacro-call-macro) "kmacro" "\ | 16810 | (autoload 'kmacro-call-macro "kmacro" "\ |
| 16696 | Call the last keyboard macro that you defined with \\[kmacro-start-macro]. | 16811 | Call the last keyboard macro that you defined with \\[kmacro-start-macro]. |
| 16697 | A prefix argument serves as a repeat count. Zero means repeat until error. | 16812 | A prefix argument serves as a repeat count. Zero means repeat until error. |
| 16698 | 16813 | ||
| @@ -16706,7 +16821,7 @@ others, use \\[kmacro-name-last-macro]. | |||
| 16706 | 16821 | ||
| 16707 | \(fn ARG &optional NO-REPEAT END-MACRO)" t nil) | 16822 | \(fn ARG &optional NO-REPEAT END-MACRO)" t nil) |
| 16708 | 16823 | ||
| 16709 | (autoload (quote kmacro-start-macro-or-insert-counter) "kmacro" "\ | 16824 | (autoload 'kmacro-start-macro-or-insert-counter "kmacro" "\ |
| 16710 | Record subsequent keyboard input, defining a keyboard macro. | 16825 | Record subsequent keyboard input, defining a keyboard macro. |
| 16711 | The commands are recorded even as they are executed. | 16826 | The commands are recorded even as they are executed. |
| 16712 | 16827 | ||
| @@ -16725,14 +16840,14 @@ The format of the counter can be modified via \\[kmacro-set-format]. | |||
| 16725 | 16840 | ||
| 16726 | \(fn ARG)" t nil) | 16841 | \(fn ARG)" t nil) |
| 16727 | 16842 | ||
| 16728 | (autoload (quote kmacro-end-or-call-macro) "kmacro" "\ | 16843 | (autoload 'kmacro-end-or-call-macro "kmacro" "\ |
| 16729 | End kbd macro if currently being defined; else call last kbd macro. | 16844 | End kbd macro if currently being defined; else call last kbd macro. |
| 16730 | With numeric prefix ARG, repeat macro that many times. | 16845 | With numeric prefix ARG, repeat macro that many times. |
| 16731 | With \\[universal-argument], call second macro in macro ring. | 16846 | With \\[universal-argument], call second macro in macro ring. |
| 16732 | 16847 | ||
| 16733 | \(fn ARG &optional NO-REPEAT)" t nil) | 16848 | \(fn ARG &optional NO-REPEAT)" t nil) |
| 16734 | 16849 | ||
| 16735 | (autoload (quote kmacro-end-and-call-macro) "kmacro" "\ | 16850 | (autoload 'kmacro-end-and-call-macro "kmacro" "\ |
| 16736 | Call last keyboard macro, ending it first if currently being defined. | 16851 | Call last keyboard macro, ending it first if currently being defined. |
| 16737 | With numeric prefix ARG, repeat macro that many times. | 16852 | With numeric prefix ARG, repeat macro that many times. |
| 16738 | Zero argument means repeat until there is an error. | 16853 | Zero argument means repeat until there is an error. |
| @@ -16742,7 +16857,7 @@ even after defining other macros, use \\[kmacro-name-last-macro]. | |||
| 16742 | 16857 | ||
| 16743 | \(fn ARG &optional NO-REPEAT)" t nil) | 16858 | \(fn ARG &optional NO-REPEAT)" t nil) |
| 16744 | 16859 | ||
| 16745 | (autoload (quote kmacro-end-call-mouse) "kmacro" "\ | 16860 | (autoload 'kmacro-end-call-mouse "kmacro" "\ |
| 16746 | Move point to the position clicked with the mouse and call last kbd macro. | 16861 | Move point to the position clicked with the mouse and call last kbd macro. |
| 16747 | If kbd macro currently being defined end it before activating it. | 16862 | If kbd macro currently being defined end it before activating it. |
| 16748 | 16863 | ||
| @@ -16752,22 +16867,22 @@ If kbd macro currently being defined end it before activating it. | |||
| 16752 | 16867 | ||
| 16753 | ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string | 16868 | ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string |
| 16754 | ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" | 16869 | ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" |
| 16755 | ;;;;;; (18104 24757)) | 16870 | ;;;;;; (18088 55109)) |
| 16756 | ;;; Generated autoloads from language/knd-util.el | 16871 | ;;; Generated autoloads from language/knd-util.el |
| 16757 | 16872 | ||
| 16758 | (defconst kannada-consonant "[\x51f75-\x51fb9]") | 16873 | (defconst kannada-consonant "[\x51f75-\x51fb9]") |
| 16759 | 16874 | ||
| 16760 | (autoload (quote kannada-compose-region) "knd-util" "\ | 16875 | (autoload 'kannada-compose-region "knd-util" "\ |
| 16761 | Not documented | 16876 | Not documented |
| 16762 | 16877 | ||
| 16763 | \(fn FROM TO)" t nil) | 16878 | \(fn FROM TO)" t nil) |
| 16764 | 16879 | ||
| 16765 | (autoload (quote kannada-compose-string) "knd-util" "\ | 16880 | (autoload 'kannada-compose-string "knd-util" "\ |
| 16766 | Not documented | 16881 | Not documented |
| 16767 | 16882 | ||
| 16768 | \(fn STRING)" nil nil) | 16883 | \(fn STRING)" nil nil) |
| 16769 | 16884 | ||
| 16770 | (autoload (quote kannada-post-read-conversion) "knd-util" "\ | 16885 | (autoload 'kannada-post-read-conversion "knd-util" "\ |
| 16771 | Not documented | 16886 | Not documented |
| 16772 | 16887 | ||
| 16773 | \(fn LEN)" nil nil) | 16888 | \(fn LEN)" nil nil) |
| @@ -16775,14 +16890,14 @@ Not documented | |||
| 16775 | ;;;*** | 16890 | ;;;*** |
| 16776 | 16891 | ||
| 16777 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" | 16892 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" |
| 16778 | ;;;;;; "language/korea-util.el" (18104 24757)) | 16893 | ;;;;;; "language/korea-util.el" (18088 55109)) |
| 16779 | ;;; Generated autoloads from language/korea-util.el | 16894 | ;;; Generated autoloads from language/korea-util.el |
| 16780 | 16895 | ||
| 16781 | (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ | 16896 | (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ |
| 16782 | *The kind of Korean keyboard for Korean input method. | 16897 | *The kind of Korean keyboard for Korean input method. |
| 16783 | \"\" for 2, \"3\" for 3.") | 16898 | \"\" for 2, \"3\" for 3.") |
| 16784 | 16899 | ||
| 16785 | (autoload (quote setup-korean-environment-internal) "korea-util" "\ | 16900 | (autoload 'setup-korean-environment-internal "korea-util" "\ |
| 16786 | Not documented | 16901 | Not documented |
| 16787 | 16902 | ||
| 16788 | \(fn)" nil nil) | 16903 | \(fn)" nil nil) |
| @@ -16790,19 +16905,19 @@ Not documented | |||
| 16790 | ;;;*** | 16905 | ;;;*** |
| 16791 | 16906 | ||
| 16792 | ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" | 16907 | ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" |
| 16793 | ;;;;;; (18104 24762)) | 16908 | ;;;;;; (18202 4002)) |
| 16794 | ;;; Generated autoloads from play/landmark.el | 16909 | ;;; Generated autoloads from play/landmark.el |
| 16795 | 16910 | ||
| 16796 | (defalias (quote landmark-repeat) (quote lm-test-run)) | 16911 | (defalias 'landmark-repeat 'lm-test-run) |
| 16797 | 16912 | ||
| 16798 | (autoload (quote lm-test-run) "landmark" "\ | 16913 | (autoload 'lm-test-run "landmark" "\ |
| 16799 | Run 100 Lm games, each time saving the weights from the previous game. | 16914 | Run 100 Lm games, each time saving the weights from the previous game. |
| 16800 | 16915 | ||
| 16801 | \(fn)" t nil) | 16916 | \(fn)" t nil) |
| 16802 | 16917 | ||
| 16803 | (defalias (quote landmark) (quote lm)) | 16918 | (defalias 'landmark 'lm) |
| 16804 | 16919 | ||
| 16805 | (autoload (quote lm) "landmark" "\ | 16920 | (autoload 'lm "landmark" "\ |
| 16806 | Start or resume an Lm game. | 16921 | Start or resume an Lm game. |
| 16807 | If a game is in progress, this command allows you to resume it. | 16922 | If a game is in progress, this command allows you to resume it. |
| 16808 | Here is the relation between prefix args and game options: | 16923 | Here is the relation between prefix args and game options: |
| @@ -16824,16 +16939,16 @@ Use \\[describe-mode] for more info. | |||
| 16824 | 16939 | ||
| 16825 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion | 16940 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion |
| 16826 | ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao | 16941 | ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao |
| 16827 | ;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (18104 | 16942 | ;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (18088 |
| 16828 | ;;;;;; 24757)) | 16943 | ;;;;;; 55109)) |
| 16829 | ;;; Generated autoloads from language/lao-util.el | 16944 | ;;; Generated autoloads from language/lao-util.el |
| 16830 | 16945 | ||
| 16831 | (autoload (quote lao-compose-string) "lao-util" "\ | 16946 | (autoload 'lao-compose-string "lao-util" "\ |
| 16832 | Not documented | 16947 | Not documented |
| 16833 | 16948 | ||
| 16834 | \(fn STR)" nil nil) | 16949 | \(fn STR)" nil nil) |
| 16835 | 16950 | ||
| 16836 | (autoload (quote lao-transcribe-single-roman-syllable-to-lao) "lao-util" "\ | 16951 | (autoload 'lao-transcribe-single-roman-syllable-to-lao "lao-util" "\ |
| 16837 | Transcribe a Romanized Lao syllable in the region FROM and TO to Lao string. | 16952 | Transcribe a Romanized Lao syllable in the region FROM and TO to Lao string. |
| 16838 | Only the first syllable is transcribed. | 16953 | Only the first syllable is transcribed. |
| 16839 | The value has the form: (START END LAO-STRING), where | 16954 | The value has the form: (START END LAO-STRING), where |
| @@ -16845,17 +16960,17 @@ syllable. In that case, FROM and TO are indexes to STR. | |||
| 16845 | 16960 | ||
| 16846 | \(fn FROM TO &optional STR)" nil nil) | 16961 | \(fn FROM TO &optional STR)" nil nil) |
| 16847 | 16962 | ||
| 16848 | (autoload (quote lao-transcribe-roman-to-lao-string) "lao-util" "\ | 16963 | (autoload 'lao-transcribe-roman-to-lao-string "lao-util" "\ |
| 16849 | Transcribe Romanized Lao string STR to Lao character string. | 16964 | Transcribe Romanized Lao string STR to Lao character string. |
| 16850 | 16965 | ||
| 16851 | \(fn STR)" nil nil) | 16966 | \(fn STR)" nil nil) |
| 16852 | 16967 | ||
| 16853 | (autoload (quote lao-post-read-conversion) "lao-util" "\ | 16968 | (autoload 'lao-post-read-conversion "lao-util" "\ |
| 16854 | Not documented | 16969 | Not documented |
| 16855 | 16970 | ||
| 16856 | \(fn LEN)" nil nil) | 16971 | \(fn LEN)" nil nil) |
| 16857 | 16972 | ||
| 16858 | (autoload (quote lao-composition-function) "lao-util" "\ | 16973 | (autoload 'lao-composition-function "lao-util" "\ |
| 16859 | Compose Lao text in the region FROM and TO. | 16974 | Compose Lao text in the region FROM and TO. |
| 16860 | The text matches the regular expression PATTERN. | 16975 | The text matches the regular expression PATTERN. |
| 16861 | Optional 4th argument STRING, if non-nil, is a string containing text | 16976 | Optional 4th argument STRING, if non-nil, is a string containing text |
| @@ -16865,7 +16980,7 @@ The return value is number of composed characters. | |||
| 16865 | 16980 | ||
| 16866 | \(fn FROM TO PATTERN &optional STRING)" nil nil) | 16981 | \(fn FROM TO PATTERN &optional STRING)" nil nil) |
| 16867 | 16982 | ||
| 16868 | (autoload (quote lao-compose-region) "lao-util" "\ | 16983 | (autoload 'lao-compose-region "lao-util" "\ |
| 16869 | Not documented | 16984 | Not documented |
| 16870 | 16985 | ||
| 16871 | \(fn FROM TO)" t nil) | 16986 | \(fn FROM TO)" t nil) |
| @@ -16874,29 +16989,29 @@ Not documented | |||
| 16874 | 16989 | ||
| 16875 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc | 16990 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc |
| 16876 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) | 16991 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) |
| 16877 | ;;;;;; "latexenc" "international/latexenc.el" (18104 24757)) | 16992 | ;;;;;; "latexenc" "international/latexenc.el" (18088 55107)) |
| 16878 | ;;; Generated autoloads from international/latexenc.el | 16993 | ;;; Generated autoloads from international/latexenc.el |
| 16879 | 16994 | ||
| 16880 | (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))) "\ | 16995 | (defvar latex-inputenc-coding-alist '(("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)) "\ |
| 16881 | Mapping from LaTeX encodings in \"inputenc.sty\" to Emacs coding systems. | 16996 | Mapping from LaTeX encodings in \"inputenc.sty\" to Emacs coding systems. |
| 16882 | LaTeX encodings are specified with \"\\usepackage[encoding]{inputenc}\". | 16997 | LaTeX encodings are specified with \"\\usepackage[encoding]{inputenc}\". |
| 16883 | Used by the function `latexenc-find-file-coding-system'.") | 16998 | Used by the function `latexenc-find-file-coding-system'.") |
| 16884 | 16999 | ||
| 16885 | (custom-autoload (quote latex-inputenc-coding-alist) "latexenc" t) | 17000 | (custom-autoload 'latex-inputenc-coding-alist "latexenc" t) |
| 16886 | 17001 | ||
| 16887 | (autoload (quote latexenc-inputenc-to-coding-system) "latexenc" "\ | 17002 | (autoload 'latexenc-inputenc-to-coding-system "latexenc" "\ |
| 16888 | Return the corresponding coding-system for the specified input encoding. | 17003 | Return the corresponding coding-system for the specified input encoding. |
| 16889 | Return nil if no matching coding system can be found. | 17004 | Return nil if no matching coding system can be found. |
| 16890 | 17005 | ||
| 16891 | \(fn INPUTENC)" nil nil) | 17006 | \(fn INPUTENC)" nil nil) |
| 16892 | 17007 | ||
| 16893 | (autoload (quote latexenc-coding-system-to-inputenc) "latexenc" "\ | 17008 | (autoload 'latexenc-coding-system-to-inputenc "latexenc" "\ |
| 16894 | Return the corresponding input encoding for the specified coding system. | 17009 | Return the corresponding input encoding for the specified coding system. |
| 16895 | Return nil if no matching input encoding can be found. | 17010 | Return nil if no matching input encoding can be found. |
| 16896 | 17011 | ||
| 16897 | \(fn CS)" nil nil) | 17012 | \(fn CS)" nil nil) |
| 16898 | 17013 | ||
| 16899 | (autoload (quote latexenc-find-file-coding-system) "latexenc" "\ | 17014 | (autoload 'latexenc-find-file-coding-system "latexenc" "\ |
| 16900 | Determine the coding system of a LaTeX file if it uses \"inputenc.sty\". | 17015 | Determine the coding system of a LaTeX file if it uses \"inputenc.sty\". |
| 16901 | The mapping from LaTeX's \"inputenc.sty\" encoding names to Emacs | 17016 | The mapping from LaTeX's \"inputenc.sty\" encoding names to Emacs |
| 16902 | coding system names is determined from `latex-inputenc-coding-alist'. | 17017 | coding system names is determined from `latex-inputenc-coding-alist'. |
| @@ -16906,7 +17021,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. | |||
| 16906 | ;;;*** | 17021 | ;;;*** |
| 16907 | 17022 | ||
| 16908 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) | 17023 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) |
| 16909 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (18104 24757)) | 17024 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (18120 34751)) |
| 16910 | ;;; Generated autoloads from international/latin1-disp.el | 17025 | ;;; Generated autoloads from international/latin1-disp.el |
| 16911 | 17026 | ||
| 16912 | (defvar latin1-display nil "\ | 17027 | (defvar latin1-display nil "\ |
| @@ -16924,9 +17039,9 @@ charsets if you don't have a Unicode font with which to display them. | |||
| 16924 | Setting this variable directly does not take effect; | 17039 | Setting this variable directly does not take effect; |
| 16925 | use either \\[customize] or the function `latin1-display'.") | 17040 | use either \\[customize] or the function `latin1-display'.") |
| 16926 | 17041 | ||
| 16927 | (custom-autoload (quote latin1-display) "latin1-disp" nil) | 17042 | (custom-autoload 'latin1-display "latin1-disp" nil) |
| 16928 | 17043 | ||
| 16929 | (autoload (quote latin1-display) "latin1-disp" "\ | 17044 | (autoload 'latin1-display "latin1-disp" "\ |
| 16930 | Set up Latin-1/ASCII display for the arguments character SETS. | 17045 | Set up Latin-1/ASCII display for the arguments character SETS. |
| 16931 | See option `latin1-display' for the method. The members of the list | 17046 | See option `latin1-display' for the method. The members of the list |
| 16932 | must be in `latin1-display-sets'. With no arguments, reset the | 17047 | must be in `latin1-display-sets'. With no arguments, reset the |
| @@ -16945,87 +17060,19 @@ changed if the display can render Unicode characters. | |||
| 16945 | Setting this variable directly does not take effect; | 17060 | Setting this variable directly does not take effect; |
| 16946 | use either \\[customize] or the function `latin1-display'.") | 17061 | use either \\[customize] or the function `latin1-display'.") |
| 16947 | 17062 | ||
| 16948 | (custom-autoload (quote latin1-display-ucs-per-lynx) "latin1-disp" nil) | 17063 | (custom-autoload 'latin1-display-ucs-per-lynx "latin1-disp" nil) |
| 16949 | |||
| 16950 | ;;;*** | ||
| 16951 | |||
| 16952 | ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" | ||
| 16953 | ;;;;;; "obsolete/lazy-lock.el" (18104 24760)) | ||
| 16954 | ;;; Generated autoloads from obsolete/lazy-lock.el | ||
| 16955 | |||
| 16956 | (autoload (quote lazy-lock-mode) "lazy-lock" "\ | ||
| 16957 | Toggle Lazy Lock mode. | ||
| 16958 | With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it | ||
| 16959 | automatically in your `~/.emacs' by: | ||
| 16960 | |||
| 16961 | (setq font-lock-support-mode 'lazy-lock-mode) | ||
| 16962 | |||
| 16963 | For a newer font-lock support mode with similar functionality, see | ||
| 16964 | `jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in | ||
| 16965 | JIT Lock's favor. | ||
| 16966 | |||
| 16967 | When Lazy Lock mode is enabled, fontification can be lazy in a number of ways: | ||
| 16968 | |||
| 16969 | - Demand-driven buffer fontification if `lazy-lock-minimum-size' is non-nil. | ||
| 16970 | This means initial fontification does not occur if the buffer is greater than | ||
| 16971 | `lazy-lock-minimum-size' characters in length. Instead, fontification occurs | ||
| 16972 | when necessary, such as when scrolling through the buffer would otherwise | ||
| 16973 | reveal unfontified areas. This is useful if buffer fontification is too slow | ||
| 16974 | for large buffers. | ||
| 16975 | |||
| 16976 | - Deferred scroll fontification if `lazy-lock-defer-on-scrolling' is non-nil. | ||
| 16977 | This means demand-driven fontification does not occur as you scroll. | ||
| 16978 | Instead, fontification is deferred until after `lazy-lock-defer-time' seconds | ||
| 16979 | of Emacs idle time, while Emacs remains idle. This is useful if | ||
| 16980 | fontification is too slow to keep up with scrolling. | ||
| 16981 | |||
| 16982 | - Deferred on-the-fly fontification if `lazy-lock-defer-on-the-fly' is non-nil. | ||
| 16983 | This means on-the-fly fontification does not occur as you type. Instead, | ||
| 16984 | fontification is deferred until after `lazy-lock-defer-time' seconds of Emacs | ||
| 16985 | idle time, while Emacs remains idle. This is useful if fontification is too | ||
| 16986 | slow to keep up with your typing. | ||
| 16987 | |||
| 16988 | - Deferred context fontification if `lazy-lock-defer-contextually' is non-nil. | ||
| 16989 | This means fontification updates the buffer corresponding to true syntactic | ||
| 16990 | context, after `lazy-lock-defer-time' seconds of Emacs idle time, while Emacs | ||
| 16991 | remains idle. Otherwise, fontification occurs on modified lines only, and | ||
| 16992 | subsequent lines can remain fontified corresponding to previous syntactic | ||
| 16993 | contexts. This is useful where strings or comments span lines. | ||
| 16994 | |||
| 16995 | - Stealthy buffer fontification if `lazy-lock-stealth-time' is non-nil. | ||
| 16996 | This means remaining unfontified areas of buffers are fontified if Emacs has | ||
| 16997 | been idle for `lazy-lock-stealth-time' seconds, while Emacs remains idle. | ||
| 16998 | This is useful if any buffer has any deferred fontification. | ||
| 16999 | |||
| 17000 | Basic Font Lock mode on-the-fly fontification behavior fontifies modified | ||
| 17001 | lines only. Thus, if `lazy-lock-defer-contextually' is non-nil, Lazy Lock mode | ||
| 17002 | on-the-fly fontification may fontify differently, albeit correctly. In any | ||
| 17003 | event, to refontify some lines you can use \\[font-lock-fontify-block]. | ||
| 17004 | |||
| 17005 | Stealth fontification only occurs while the system remains unloaded. | ||
| 17006 | If the system load rises above `lazy-lock-stealth-load' percent, stealth | ||
| 17007 | fontification is suspended. Stealth fontification intensity is controlled via | ||
| 17008 | the variable `lazy-lock-stealth-nice' and `lazy-lock-stealth-lines', and | ||
| 17009 | verbosity is controlled via the variable `lazy-lock-stealth-verbose'. | ||
| 17010 | |||
| 17011 | \(fn &optional ARG)" t nil) | ||
| 17012 | |||
| 17013 | (autoload (quote turn-on-lazy-lock) "lazy-lock" "\ | ||
| 17014 | Unconditionally turn on Lazy Lock mode. | ||
| 17015 | |||
| 17016 | \(fn)" nil nil) | ||
| 17017 | 17064 | ||
| 17018 | ;;;*** | 17065 | ;;;*** |
| 17019 | 17066 | ||
| 17020 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" | 17067 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" |
| 17021 | ;;;;;; (18104 24767)) | 17068 | ;;;;;; (18088 55117)) |
| 17022 | ;;; Generated autoloads from progmodes/ld-script.el | 17069 | ;;; Generated autoloads from progmodes/ld-script.el |
| 17023 | 17070 | ||
| 17024 | (add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) | 17071 | (add-to-list 'auto-mode-alist '("\\.ld[si]?\\>" . ld-script-mode)) |
| 17025 | 17072 | ||
| 17026 | (add-to-list (quote auto-mode-alist) (quote ("\\.x[bdsru]?[cn]?\\'" . ld-script-mode))) | 17073 | (add-to-list 'auto-mode-alist '("\\.x[bdsru]?[cn]?\\'" . ld-script-mode)) |
| 17027 | 17074 | ||
| 17028 | (autoload (quote ld-script-mode) "ld-script" "\ | 17075 | (autoload 'ld-script-mode "ld-script" "\ |
| 17029 | A major mode to edit GNU ld script files | 17076 | A major mode to edit GNU ld script files |
| 17030 | 17077 | ||
| 17031 | \(fn)" t nil) | 17078 | \(fn)" t nil) |
| @@ -17033,7 +17080,7 @@ A major mode to edit GNU ld script files | |||
| 17033 | ;;;*** | 17080 | ;;;*** |
| 17034 | 17081 | ||
| 17035 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" | 17082 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" |
| 17036 | ;;;;;; (18104 24737)) | 17083 | ;;;;;; (18088 55086)) |
| 17037 | ;;; Generated autoloads from ledit.el | 17084 | ;;; Generated autoloads from ledit.el |
| 17038 | 17085 | ||
| 17039 | (defconst ledit-save-files t "\ | 17086 | (defconst ledit-save-files t "\ |
| @@ -17045,7 +17092,7 @@ A major mode to edit GNU ld script files | |||
| 17045 | (defconst ledit-go-to-liszt-string "%?liszt" "\ | 17092 | (defconst ledit-go-to-liszt-string "%?liszt" "\ |
| 17046 | *Shell commands to execute to resume Lisp compiler job.") | 17093 | *Shell commands to execute to resume Lisp compiler job.") |
| 17047 | 17094 | ||
| 17048 | (autoload (quote ledit-mode) "ledit" "\ | 17095 | (autoload 'ledit-mode "ledit" "\ |
| 17049 | \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. | 17096 | \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. |
| 17050 | Like Lisp mode, plus these special commands: | 17097 | Like Lisp mode, plus these special commands: |
| 17051 | \\[ledit-save-defun] -- record defun at or after point | 17098 | \\[ledit-save-defun] -- record defun at or after point |
| @@ -17061,17 +17108,17 @@ do (setq lisp-mode-hook 'ledit-from-lisp-mode) | |||
| 17061 | 17108 | ||
| 17062 | \(fn)" t nil) | 17109 | \(fn)" t nil) |
| 17063 | 17110 | ||
| 17064 | (autoload (quote ledit-from-lisp-mode) "ledit" "\ | 17111 | (autoload 'ledit-from-lisp-mode "ledit" "\ |
| 17065 | Not documented | 17112 | Not documented |
| 17066 | 17113 | ||
| 17067 | \(fn)" nil nil) | 17114 | \(fn)" nil nil) |
| 17068 | 17115 | ||
| 17069 | ;;;*** | 17116 | ;;;*** |
| 17070 | 17117 | ||
| 17071 | ;;;### (autoloads (life) "life" "play/life.el" (18104 24762)) | 17118 | ;;;### (autoloads (life) "life" "play/life.el" (18088 55114)) |
| 17072 | ;;; Generated autoloads from play/life.el | 17119 | ;;; Generated autoloads from play/life.el |
| 17073 | 17120 | ||
| 17074 | (autoload (quote life) "life" "\ | 17121 | (autoload 'life "life" "\ |
| 17075 | Run Conway's Life simulation. | 17122 | Run Conway's Life simulation. |
| 17076 | The starting pattern is randomly selected. Prefix arg (optional first | 17123 | The starting pattern is randomly selected. Prefix arg (optional first |
| 17077 | arg non-nil from a program) is the number of seconds to sleep between | 17124 | arg non-nil from a program) is the number of seconds to sleep between |
| @@ -17081,40 +17128,49 @@ generations (this defaults to 1). | |||
| 17081 | 17128 | ||
| 17082 | ;;;*** | 17129 | ;;;*** |
| 17083 | 17130 | ||
| 17084 | ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (18104 | 17131 | ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (18213 |
| 17085 | ;;;;;; 24737)) | 17132 | ;;;;;; 13926)) |
| 17086 | ;;; Generated autoloads from loadhist.el | 17133 | ;;; Generated autoloads from loadhist.el |
| 17087 | 17134 | ||
| 17088 | (autoload (quote unload-feature) "loadhist" "\ | 17135 | (autoload 'unload-feature "loadhist" "\ |
| 17089 | Unload the library that provided FEATURE, restoring all its autoloads. | 17136 | Unload the library that provided FEATURE. |
| 17090 | If the feature is required by any other loaded code, and prefix arg FORCE | 17137 | If the feature is required by any other loaded code, and prefix arg FORCE |
| 17091 | is nil, raise an error. | 17138 | is nil, raise an error. |
| 17092 | 17139 | ||
| 17093 | This function tries to undo modifications made by the package to | 17140 | Standard unloading activities include restoring old autoloads for |
| 17094 | hooks. Packages may define a hook FEATURE-unload-hook that is called | 17141 | functions defined by the library, undoing any additions that the |
| 17095 | instead of the normal heuristics for doing this. Such a hook should | 17142 | library has made to hook variables or to `auto-mode-alist', undoing |
| 17096 | undo all the relevant global state changes that may have been made by | 17143 | ELP profiling of functions in that library, unproviding any features |
| 17097 | loading the package or executing functions in it. It has access to | 17144 | provided by the library, and canceling timers held in variables |
| 17098 | the package's feature list (before anything is unbound) in the | 17145 | defined by the library. |
| 17099 | variable `unload-hook-features-list' and could remove features from it | 17146 | |
| 17100 | in the event that the package has done something normally-ill-advised, | 17147 | If a function `FEATURE-unload-function' is defined, this function |
| 17101 | such as redefining an Emacs function. | 17148 | calls it with no arguments, before doing anything else. That function |
| 17149 | can do whatever is appropriate to undo the loading of the library. If | ||
| 17150 | `FEATURE-unload-function' returns non-nil, that suppresses the | ||
| 17151 | standard unloading of the library. Otherwise the standard unloading | ||
| 17152 | proceeds. | ||
| 17153 | |||
| 17154 | `FEATURE-unload-function' has access to the package's list of | ||
| 17155 | definitions in the variable `unload-function-defs-list' and could | ||
| 17156 | remove symbols from it in the event that the package has done | ||
| 17157 | something strange, such as redefining an Emacs function. | ||
| 17102 | 17158 | ||
| 17103 | \(fn FEATURE &optional FORCE)" t nil) | 17159 | \(fn FEATURE &optional FORCE)" t nil) |
| 17104 | 17160 | ||
| 17105 | ;;;*** | 17161 | ;;;*** |
| 17106 | 17162 | ||
| 17107 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) | 17163 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) |
| 17108 | ;;;;;; "locate" "locate.el" (18104 24737)) | 17164 | ;;;;;; "locate" "locate.el" (18126 18420)) |
| 17109 | ;;; Generated autoloads from locate.el | 17165 | ;;; Generated autoloads from locate.el |
| 17110 | 17166 | ||
| 17111 | (defvar locate-ls-subdir-switches "-al" "\ | 17167 | (defvar locate-ls-subdir-switches "-al" "\ |
| 17112 | `ls' switches for inserting subdirectories in `*Locate*' buffers. | 17168 | `ls' switches for inserting subdirectories in `*Locate*' buffers. |
| 17113 | This should contain the \"-l\" switch, but not the \"-F\" or \"-b\" switches.") | 17169 | This should contain the \"-l\" switch, but not the \"-F\" or \"-b\" switches.") |
| 17114 | 17170 | ||
| 17115 | (custom-autoload (quote locate-ls-subdir-switches) "locate" t) | 17171 | (custom-autoload 'locate-ls-subdir-switches "locate" t) |
| 17116 | 17172 | ||
| 17117 | (autoload (quote locate) "locate" "\ | 17173 | (autoload 'locate "locate" "\ |
| 17118 | Run the program `locate', putting results in `*Locate*' buffer. | 17174 | Run the program `locate', putting results in `*Locate*' buffer. |
| 17119 | Pass it SEARCH-STRING as argument. Interactively, prompt for SEARCH-STRING. | 17175 | Pass it SEARCH-STRING as argument. Interactively, prompt for SEARCH-STRING. |
| 17120 | With prefix arg, prompt for the exact shell command to run instead. | 17176 | With prefix arg, prompt for the exact shell command to run instead. |
| @@ -17137,7 +17193,7 @@ ARG is the interactive prefix arg. | |||
| 17137 | 17193 | ||
| 17138 | \(fn SEARCH-STRING &optional FILTER ARG)" t nil) | 17194 | \(fn SEARCH-STRING &optional FILTER ARG)" t nil) |
| 17139 | 17195 | ||
| 17140 | (autoload (quote locate-with-filter) "locate" "\ | 17196 | (autoload 'locate-with-filter "locate" "\ |
| 17141 | Run the executable program `locate' with a filter. | 17197 | Run the executable program `locate' with a filter. |
| 17142 | This function is similar to the function `locate', which see. | 17198 | This function is similar to the function `locate', which see. |
| 17143 | The difference is that, when invoked interactively, the present function | 17199 | The difference is that, when invoked interactively, the present function |
| @@ -17156,10 +17212,10 @@ except that FILTER is not optional. | |||
| 17156 | 17212 | ||
| 17157 | ;;;*** | 17213 | ;;;*** |
| 17158 | 17214 | ||
| 17159 | ;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (18104 24738)) | 17215 | ;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (18120 34749)) |
| 17160 | ;;; Generated autoloads from log-edit.el | 17216 | ;;; Generated autoloads from log-edit.el |
| 17161 | 17217 | ||
| 17162 | (autoload (quote log-edit) "log-edit" "\ | 17218 | (autoload 'log-edit "log-edit" "\ |
| 17163 | Setup a buffer to enter a log message. | 17219 | Setup a buffer to enter a log message. |
| 17164 | \\<log-edit-mode-map>The buffer will be put in `log-edit-mode'. | 17220 | \\<log-edit-mode-map>The buffer will be put in `log-edit-mode'. |
| 17165 | If SETUP is non-nil, the buffer is then erased and `log-edit-hook' is run. | 17221 | If SETUP is non-nil, the buffer is then erased and `log-edit-hook' is run. |
| @@ -17177,22 +17233,22 @@ If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the | |||
| 17177 | 17233 | ||
| 17178 | ;;;*** | 17234 | ;;;*** |
| 17179 | 17235 | ||
| 17180 | ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (18104 | 17236 | ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (18202 |
| 17181 | ;;;;;; 24738)) | 17237 | ;;;;;; 3995)) |
| 17182 | ;;; Generated autoloads from log-view.el | 17238 | ;;; Generated autoloads from log-view.el |
| 17183 | 17239 | ||
| 17184 | (autoload (quote log-view-mode) "log-view" "\ | 17240 | (autoload 'log-view-mode "log-view" "\ |
| 17185 | Major mode for browsing CVS log output. | 17241 | Major mode for browsing CVS log output. |
| 17186 | 17242 | ||
| 17187 | \(fn)" t nil) | 17243 | \(fn)" t nil) |
| 17188 | 17244 | ||
| 17189 | ;;;*** | 17245 | ;;;*** |
| 17190 | 17246 | ||
| 17191 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (18104 | 17247 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (18214 |
| 17192 | ;;;;;; 24738)) | 17248 | ;;;;;; 4763)) |
| 17193 | ;;; Generated autoloads from longlines.el | 17249 | ;;; Generated autoloads from longlines.el |
| 17194 | 17250 | ||
| 17195 | (autoload (quote longlines-mode) "longlines" "\ | 17251 | (autoload 'longlines-mode "longlines" "\ |
| 17196 | Toggle Long Lines mode. | 17252 | Toggle Long Lines mode. |
| 17197 | In Long Lines mode, long lines are wrapped if they extend beyond | 17253 | In Long Lines mode, long lines are wrapped if they extend beyond |
| 17198 | `fill-column'. The soft newlines used for line wrapping will not | 17254 | `fill-column'. The soft newlines used for line wrapping will not |
| @@ -17210,13 +17266,13 @@ are indicated with a symbol. | |||
| 17210 | ;;;*** | 17266 | ;;;*** |
| 17211 | 17267 | ||
| 17212 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer | 17268 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer |
| 17213 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (18104 | 17269 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (18088 |
| 17214 | ;;;;;; 24738)) | 17270 | ;;;;;; 55086)) |
| 17215 | ;;; Generated autoloads from lpr.el | 17271 | ;;; Generated autoloads from lpr.el |
| 17216 | 17272 | ||
| 17217 | (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) | 17273 | (defvar lpr-windows-system (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt))) |
| 17218 | 17274 | ||
| 17219 | (defvar lpr-lp-system (memq system-type (quote (usg-unix-v dgux hpux irix)))) | 17275 | (defvar lpr-lp-system (memq system-type '(usg-unix-v dgux hpux irix))) |
| 17220 | 17276 | ||
| 17221 | (defvar printer-name (and lpr-windows-system "PRN") "\ | 17277 | (defvar printer-name (and lpr-windows-system "PRN") "\ |
| 17222 | *The name of a local printer to which data is sent for printing. | 17278 | *The name of a local printer to which data is sent for printing. |
| @@ -17233,7 +17289,7 @@ printers, or \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or | |||
| 17233 | it to the name of a file, in which case the output gets appended to that | 17289 | it to the name of a file, in which case the output gets appended to that |
| 17234 | file. If you want to discard the printed output, set this to \"NUL\".") | 17290 | file. If you want to discard the printed output, set this to \"NUL\".") |
| 17235 | 17291 | ||
| 17236 | (custom-autoload (quote printer-name) "lpr" t) | 17292 | (custom-autoload 'printer-name "lpr" t) |
| 17237 | 17293 | ||
| 17238 | (defvar lpr-switches nil "\ | 17294 | (defvar lpr-switches nil "\ |
| 17239 | *List of strings to pass as extra options for the printer program. | 17295 | *List of strings to pass as extra options for the printer program. |
| @@ -17241,7 +17297,7 @@ It is recommended to set `printer-name' instead of including an explicit | |||
| 17241 | switch on this list. | 17297 | switch on this list. |
| 17242 | See `lpr-command'.") | 17298 | See `lpr-command'.") |
| 17243 | 17299 | ||
| 17244 | (custom-autoload (quote lpr-switches) "lpr" t) | 17300 | (custom-autoload 'lpr-switches "lpr" t) |
| 17245 | 17301 | ||
| 17246 | (defvar lpr-command (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")) "\ | 17302 | (defvar lpr-command (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")) "\ |
| 17247 | *Name of program for printing a file. | 17303 | *Name of program for printing a file. |
| @@ -17254,16 +17310,16 @@ Windows NT and Novell Netware respectively) are handled specially, using | |||
| 17254 | treated like `lpr' except that an explicit filename is given as the last | 17310 | treated like `lpr' except that an explicit filename is given as the last |
| 17255 | argument.") | 17311 | argument.") |
| 17256 | 17312 | ||
| 17257 | (custom-autoload (quote lpr-command) "lpr" t) | 17313 | (custom-autoload 'lpr-command "lpr" t) |
| 17258 | 17314 | ||
| 17259 | (autoload (quote lpr-buffer) "lpr" "\ | 17315 | (autoload 'lpr-buffer "lpr" "\ |
| 17260 | Print buffer contents without pagination or page headers. | 17316 | Print buffer contents without pagination or page headers. |
| 17261 | See the variables `lpr-switches' and `lpr-command' | 17317 | See the variables `lpr-switches' and `lpr-command' |
| 17262 | for customization of the printer command. | 17318 | for customization of the printer command. |
| 17263 | 17319 | ||
| 17264 | \(fn)" t nil) | 17320 | \(fn)" t nil) |
| 17265 | 17321 | ||
| 17266 | (autoload (quote print-buffer) "lpr" "\ | 17322 | (autoload 'print-buffer "lpr" "\ |
| 17267 | Paginate and print buffer contents. | 17323 | Paginate and print buffer contents. |
| 17268 | 17324 | ||
| 17269 | The variable `lpr-headers-switches' controls how to paginate. | 17325 | The variable `lpr-headers-switches' controls how to paginate. |
| @@ -17279,14 +17335,14 @@ for further customization of the printer command. | |||
| 17279 | 17335 | ||
| 17280 | \(fn)" t nil) | 17336 | \(fn)" t nil) |
| 17281 | 17337 | ||
| 17282 | (autoload (quote lpr-region) "lpr" "\ | 17338 | (autoload 'lpr-region "lpr" "\ |
| 17283 | Print region contents without pagination or page headers. | 17339 | Print region contents without pagination or page headers. |
| 17284 | See the variables `lpr-switches' and `lpr-command' | 17340 | See the variables `lpr-switches' and `lpr-command' |
| 17285 | for customization of the printer command. | 17341 | for customization of the printer command. |
| 17286 | 17342 | ||
| 17287 | \(fn START END)" t nil) | 17343 | \(fn START END)" t nil) |
| 17288 | 17344 | ||
| 17289 | (autoload (quote print-region) "lpr" "\ | 17345 | (autoload 'print-region "lpr" "\ |
| 17290 | Paginate and print the region contents. | 17346 | Paginate and print the region contents. |
| 17291 | 17347 | ||
| 17292 | The variable `lpr-headers-switches' controls how to paginate. | 17348 | The variable `lpr-headers-switches' controls how to paginate. |
| @@ -17305,22 +17361,22 @@ for further customization of the printer command. | |||
| 17305 | ;;;*** | 17361 | ;;;*** |
| 17306 | 17362 | ||
| 17307 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" | 17363 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" |
| 17308 | ;;;;;; (18104 24738)) | 17364 | ;;;;;; (18088 55086)) |
| 17309 | ;;; Generated autoloads from ls-lisp.el | 17365 | ;;; Generated autoloads from ls-lisp.el |
| 17310 | 17366 | ||
| 17311 | (defvar ls-lisp-support-shell-wildcards t "\ | 17367 | (defvar ls-lisp-support-shell-wildcards t "\ |
| 17312 | *Non-nil means ls-lisp treats file patterns as shell wildcards. | 17368 | *Non-nil means ls-lisp treats file patterns as shell wildcards. |
| 17313 | Otherwise they are treated as Emacs regexps (for backward compatibility).") | 17369 | Otherwise they are treated as Emacs regexps (for backward compatibility).") |
| 17314 | 17370 | ||
| 17315 | (custom-autoload (quote ls-lisp-support-shell-wildcards) "ls-lisp" t) | 17371 | (custom-autoload 'ls-lisp-support-shell-wildcards "ls-lisp" t) |
| 17316 | 17372 | ||
| 17317 | ;;;*** | 17373 | ;;;*** |
| 17318 | 17374 | ||
| 17319 | ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (18104 | 17375 | ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (18088 |
| 17320 | ;;;;;; 24745)) | 17376 | ;;;;;; 55094)) |
| 17321 | ;;; Generated autoloads from calendar/lunar.el | 17377 | ;;; Generated autoloads from calendar/lunar.el |
| 17322 | 17378 | ||
| 17323 | (autoload (quote phases-of-moon) "lunar" "\ | 17379 | (autoload 'phases-of-moon "lunar" "\ |
| 17324 | Display the quarters of the moon for last month, this month, and next month. | 17380 | Display the quarters of the moon for last month, this month, and next month. |
| 17325 | If called with an optional prefix argument, prompts for month and year. | 17381 | If called with an optional prefix argument, prompts for month and year. |
| 17326 | 17382 | ||
| @@ -17330,11 +17386,11 @@ This function is suitable for execution in a .emacs file. | |||
| 17330 | 17386 | ||
| 17331 | ;;;*** | 17387 | ;;;*** |
| 17332 | 17388 | ||
| 17333 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (18104 | 17389 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (18088 |
| 17334 | ;;;;;; 24767)) | 17390 | ;;;;;; 55117)) |
| 17335 | ;;; Generated autoloads from progmodes/m4-mode.el | 17391 | ;;; Generated autoloads from progmodes/m4-mode.el |
| 17336 | 17392 | ||
| 17337 | (autoload (quote m4-mode) "m4-mode" "\ | 17393 | (autoload 'm4-mode "m4-mode" "\ |
| 17338 | A major mode to edit m4 macro files. | 17394 | A major mode to edit m4 macro files. |
| 17339 | \\{m4-mode-map} | 17395 | \\{m4-mode-map} |
| 17340 | 17396 | ||
| @@ -17343,10 +17399,10 @@ A major mode to edit m4 macro files. | |||
| 17343 | ;;;*** | 17399 | ;;;*** |
| 17344 | 17400 | ||
| 17345 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" | 17401 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" |
| 17346 | ;;;;;; (18104 24748)) | 17402 | ;;;;;; (18088 55096)) |
| 17347 | ;;; Generated autoloads from emacs-lisp/macroexp.el | 17403 | ;;; Generated autoloads from emacs-lisp/macroexp.el |
| 17348 | 17404 | ||
| 17349 | (autoload (quote macroexpand-all) "macroexp" "\ | 17405 | (autoload 'macroexpand-all "macroexp" "\ |
| 17350 | Return result of expanding macros at all levels in FORM. | 17406 | Return result of expanding macros at all levels in FORM. |
| 17351 | If no macros are expanded, FORM is returned unchanged. | 17407 | If no macros are expanded, FORM is returned unchanged. |
| 17352 | The second optional arg ENVIRONMENT specifies an environment of macro | 17408 | The second optional arg ENVIRONMENT specifies an environment of macro |
| @@ -17357,10 +17413,10 @@ definitions to shadow the loaded ones for use in file byte-compilation. | |||
| 17357 | ;;;*** | 17413 | ;;;*** |
| 17358 | 17414 | ||
| 17359 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro | 17415 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro |
| 17360 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (18104 24738)) | 17416 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (18088 55086)) |
| 17361 | ;;; Generated autoloads from macros.el | 17417 | ;;; Generated autoloads from macros.el |
| 17362 | 17418 | ||
| 17363 | (autoload (quote name-last-kbd-macro) "macros" "\ | 17419 | (autoload 'name-last-kbd-macro "macros" "\ |
| 17364 | Assign a name to the last keyboard macro defined. | 17420 | Assign a name to the last keyboard macro defined. |
| 17365 | Argument SYMBOL is the name to define. | 17421 | Argument SYMBOL is the name to define. |
| 17366 | The symbol's function definition becomes the keyboard macro string. | 17422 | The symbol's function definition becomes the keyboard macro string. |
| @@ -17368,7 +17424,7 @@ Such a \"function\" cannot be called from Lisp, but it is a valid editor command | |||
| 17368 | 17424 | ||
| 17369 | \(fn SYMBOL)" t nil) | 17425 | \(fn SYMBOL)" t nil) |
| 17370 | 17426 | ||
| 17371 | (autoload (quote insert-kbd-macro) "macros" "\ | 17427 | (autoload 'insert-kbd-macro "macros" "\ |
| 17372 | Insert in buffer the definition of kbd macro NAME, as Lisp code. | 17428 | Insert in buffer the definition of kbd macro NAME, as Lisp code. |
| 17373 | Optional second arg KEYS means also record the keys it is on | 17429 | Optional second arg KEYS means also record the keys it is on |
| 17374 | \(this is the prefix argument, when calling interactively). | 17430 | \(this is the prefix argument, when calling interactively). |
| @@ -17384,7 +17440,7 @@ use this command, and then save the file. | |||
| 17384 | 17440 | ||
| 17385 | \(fn MACRONAME &optional KEYS)" t nil) | 17441 | \(fn MACRONAME &optional KEYS)" t nil) |
| 17386 | 17442 | ||
| 17387 | (autoload (quote kbd-macro-query) "macros" "\ | 17443 | (autoload 'kbd-macro-query "macros" "\ |
| 17388 | Query user during kbd macro execution. | 17444 | Query user during kbd macro execution. |
| 17389 | With prefix argument, enters recursive edit, reading keyboard | 17445 | With prefix argument, enters recursive edit, reading keyboard |
| 17390 | commands even within a kbd macro. You can give different commands | 17446 | commands even within a kbd macro. You can give different commands |
| @@ -17399,7 +17455,7 @@ Your options are: \\<query-replace-map> | |||
| 17399 | 17455 | ||
| 17400 | \(fn FLAG)" t nil) | 17456 | \(fn FLAG)" t nil) |
| 17401 | 17457 | ||
| 17402 | (autoload (quote apply-macro-to-region-lines) "macros" "\ | 17458 | (autoload 'apply-macro-to-region-lines "macros" "\ |
| 17403 | Apply last keyboard macro to all lines in the region. | 17459 | Apply last keyboard macro to all lines in the region. |
| 17404 | For each line that begins in the region, move to the beginning of | 17460 | For each line that begins in the region, move to the beginning of |
| 17405 | the line, and run the last keyboard macro. | 17461 | the line, and run the last keyboard macro. |
| @@ -17446,10 +17502,10 @@ and then select the region of un-tablified names and use | |||
| 17446 | ;;;*** | 17502 | ;;;*** |
| 17447 | 17503 | ||
| 17448 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" | 17504 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" |
| 17449 | ;;;;;; "mail/mail-extr.el" (18104 24758)) | 17505 | ;;;;;; "mail/mail-extr.el" (18088 55109)) |
| 17450 | ;;; Generated autoloads from mail/mail-extr.el | 17506 | ;;; Generated autoloads from mail/mail-extr.el |
| 17451 | 17507 | ||
| 17452 | (autoload (quote mail-extract-address-components) "mail-extr" "\ | 17508 | (autoload 'mail-extract-address-components "mail-extr" "\ |
| 17453 | Given an RFC-822 address ADDRESS, extract full name and canonical address. | 17509 | Given an RFC-822 address ADDRESS, extract full name and canonical address. |
| 17454 | Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no | 17510 | Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no |
| 17455 | name can be extracted, FULL-NAME will be nil. Also see | 17511 | name can be extracted, FULL-NAME will be nil. Also see |
| @@ -17469,7 +17525,7 @@ consing a string.) | |||
| 17469 | 17525 | ||
| 17470 | \(fn ADDRESS &optional ALL)" nil nil) | 17526 | \(fn ADDRESS &optional ALL)" nil nil) |
| 17471 | 17527 | ||
| 17472 | (autoload (quote what-domain) "mail-extr" "\ | 17528 | (autoload 'what-domain "mail-extr" "\ |
| 17473 | Convert mail domain DOMAIN to the country it corresponds to. | 17529 | Convert mail domain DOMAIN to the country it corresponds to. |
| 17474 | 17530 | ||
| 17475 | \(fn DOMAIN)" t nil) | 17531 | \(fn DOMAIN)" t nil) |
| @@ -17478,15 +17534,15 @@ Convert mail domain DOMAIN to the country it corresponds to. | |||
| 17478 | 17534 | ||
| 17479 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history | 17535 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history |
| 17480 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" | 17536 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" |
| 17481 | ;;;;;; (18104 24758)) | 17537 | ;;;;;; (18088 55110)) |
| 17482 | ;;; Generated autoloads from mail/mail-hist.el | 17538 | ;;; Generated autoloads from mail/mail-hist.el |
| 17483 | 17539 | ||
| 17484 | (autoload (quote mail-hist-define-keys) "mail-hist" "\ | 17540 | (autoload 'mail-hist-define-keys "mail-hist" "\ |
| 17485 | Define keys for accessing mail header history. For use in hooks. | 17541 | Define keys for accessing mail header history. For use in hooks. |
| 17486 | 17542 | ||
| 17487 | \(fn)" nil nil) | 17543 | \(fn)" nil nil) |
| 17488 | 17544 | ||
| 17489 | (autoload (quote mail-hist-enable) "mail-hist" "\ | 17545 | (autoload 'mail-hist-enable "mail-hist" "\ |
| 17490 | Not documented | 17546 | Not documented |
| 17491 | 17547 | ||
| 17492 | \(fn)" nil nil) | 17548 | \(fn)" nil nil) |
| @@ -17494,9 +17550,9 @@ Not documented | |||
| 17494 | (defvar mail-hist-keep-history t "\ | 17550 | (defvar mail-hist-keep-history t "\ |
| 17495 | *Non-nil means keep a history for headers and text of outgoing mail.") | 17551 | *Non-nil means keep a history for headers and text of outgoing mail.") |
| 17496 | 17552 | ||
| 17497 | (custom-autoload (quote mail-hist-keep-history) "mail-hist" t) | 17553 | (custom-autoload 'mail-hist-keep-history "mail-hist" t) |
| 17498 | 17554 | ||
| 17499 | (autoload (quote mail-hist-put-headers-into-history) "mail-hist" "\ | 17555 | (autoload 'mail-hist-put-headers-into-history "mail-hist" "\ |
| 17500 | Put headers and contents of this message into mail header history. | 17556 | Put headers and contents of this message into mail header history. |
| 17501 | Each header has its own independent history, as does the body of the | 17557 | Each header has its own independent history, as does the body of the |
| 17502 | message. | 17558 | message. |
| @@ -17509,8 +17565,8 @@ This function normally would be called when the message is sent. | |||
| 17509 | 17565 | ||
| 17510 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region | 17566 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region |
| 17511 | ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p | 17567 | ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p |
| 17512 | ;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (18104 | 17568 | ;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (18088 |
| 17513 | ;;;;;; 24758)) | 17569 | ;;;;;; 55110)) |
| 17514 | ;;; Generated autoloads from mail/mail-utils.el | 17570 | ;;; Generated autoloads from mail/mail-utils.el |
| 17515 | 17571 | ||
| 17516 | (defvar mail-use-rfc822 nil "\ | 17572 | (defvar mail-use-rfc822 nil "\ |
| @@ -17518,28 +17574,28 @@ This function normally would be called when the message is sent. | |||
| 17518 | Otherwise, (the default) use a smaller, somewhat faster, and | 17574 | Otherwise, (the default) use a smaller, somewhat faster, and |
| 17519 | often correct parser.") | 17575 | often correct parser.") |
| 17520 | 17576 | ||
| 17521 | (custom-autoload (quote mail-use-rfc822) "mail-utils" t) | 17577 | (custom-autoload 'mail-use-rfc822 "mail-utils" t) |
| 17522 | 17578 | ||
| 17523 | (autoload (quote mail-file-babyl-p) "mail-utils" "\ | 17579 | (autoload 'mail-file-babyl-p "mail-utils" "\ |
| 17524 | Not documented | 17580 | Not documented |
| 17525 | 17581 | ||
| 17526 | \(fn FILE)" nil nil) | 17582 | \(fn FILE)" nil nil) |
| 17527 | 17583 | ||
| 17528 | (autoload (quote mail-quote-printable) "mail-utils" "\ | 17584 | (autoload 'mail-quote-printable "mail-utils" "\ |
| 17529 | Convert a string to the \"quoted printable\" Q encoding. | 17585 | Convert a string to the \"quoted printable\" Q encoding. |
| 17530 | If the optional argument WRAPPER is non-nil, | 17586 | If the optional argument WRAPPER is non-nil, |
| 17531 | we add the wrapper characters =?ISO-8859-1?Q?....?=. | 17587 | we add the wrapper characters =?ISO-8859-1?Q?....?=. |
| 17532 | 17588 | ||
| 17533 | \(fn STRING &optional WRAPPER)" nil nil) | 17589 | \(fn STRING &optional WRAPPER)" nil nil) |
| 17534 | 17590 | ||
| 17535 | (autoload (quote mail-unquote-printable) "mail-utils" "\ | 17591 | (autoload 'mail-unquote-printable "mail-utils" "\ |
| 17536 | Undo the \"quoted printable\" encoding. | 17592 | Undo the \"quoted printable\" encoding. |
| 17537 | If the optional argument WRAPPER is non-nil, | 17593 | If the optional argument WRAPPER is non-nil, |
| 17538 | we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=. | 17594 | we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=. |
| 17539 | 17595 | ||
| 17540 | \(fn STRING &optional WRAPPER)" nil nil) | 17596 | \(fn STRING &optional WRAPPER)" nil nil) |
| 17541 | 17597 | ||
| 17542 | (autoload (quote mail-unquote-printable-region) "mail-utils" "\ | 17598 | (autoload 'mail-unquote-printable-region "mail-utils" "\ |
| 17543 | Undo the \"quoted printable\" encoding in buffer from BEG to END. | 17599 | Undo the \"quoted printable\" encoding in buffer from BEG to END. |
| 17544 | If the optional argument WRAPPER is non-nil, | 17600 | If the optional argument WRAPPER is non-nil, |
| 17545 | we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=. | 17601 | we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=. |
| @@ -17550,7 +17606,7 @@ as Rmail does. | |||
| 17550 | 17606 | ||
| 17551 | \(fn BEG END &optional WRAPPER NOERROR UNIBYTE)" t nil) | 17607 | \(fn BEG END &optional WRAPPER NOERROR UNIBYTE)" t nil) |
| 17552 | 17608 | ||
| 17553 | (autoload (quote mail-fetch-field) "mail-utils" "\ | 17609 | (autoload 'mail-fetch-field "mail-utils" "\ |
| 17554 | Return the value of the header field whose type is FIELD-NAME. | 17610 | Return the value of the header field whose type is FIELD-NAME. |
| 17555 | The buffer is expected to be narrowed to just the header of the message. | 17611 | The buffer is expected to be narrowed to just the header of the message. |
| 17556 | If second arg LAST is non-nil, use the last field of type FIELD-NAME. | 17612 | If second arg LAST is non-nil, use the last field of type FIELD-NAME. |
| @@ -17562,21 +17618,21 @@ If 4th arg LIST is non-nil, return a list of all such fields. | |||
| 17562 | ;;;*** | 17618 | ;;;*** |
| 17563 | 17619 | ||
| 17564 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) | 17620 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) |
| 17565 | ;;;;;; "mailabbrev" "mail/mailabbrev.el" (18104 24758)) | 17621 | ;;;;;; "mailabbrev" "mail/mailabbrev.el" (18120 34751)) |
| 17566 | ;;; Generated autoloads from mail/mailabbrev.el | 17622 | ;;; Generated autoloads from mail/mailabbrev.el |
| 17567 | 17623 | ||
| 17568 | (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ | 17624 | (autoload 'mail-abbrevs-setup "mailabbrev" "\ |
| 17569 | Initialize use of the `mailabbrev' package. | 17625 | Initialize use of the `mailabbrev' package. |
| 17570 | 17626 | ||
| 17571 | \(fn)" nil nil) | 17627 | \(fn)" nil nil) |
| 17572 | 17628 | ||
| 17573 | (autoload (quote build-mail-abbrevs) "mailabbrev" "\ | 17629 | (autoload 'build-mail-abbrevs "mailabbrev" "\ |
| 17574 | Read mail aliases from personal mail alias file and set `mail-abbrevs'. | 17630 | Read mail aliases from personal mail alias file and set `mail-abbrevs'. |
| 17575 | By default this is the file specified by `mail-personal-alias-file'. | 17631 | By default this is the file specified by `mail-personal-alias-file'. |
| 17576 | 17632 | ||
| 17577 | \(fn &optional FILE RECURSIVEP)" nil nil) | 17633 | \(fn &optional FILE RECURSIVEP)" nil nil) |
| 17578 | 17634 | ||
| 17579 | (autoload (quote define-mail-abbrev) "mailabbrev" "\ | 17635 | (autoload 'define-mail-abbrev "mailabbrev" "\ |
| 17580 | Define NAME as a mail alias abbrev that translates to DEFINITION. | 17636 | Define NAME as a mail alias abbrev that translates to DEFINITION. |
| 17581 | If DEFINITION contains multiple addresses, separate them with commas. | 17637 | If DEFINITION contains multiple addresses, separate them with commas. |
| 17582 | 17638 | ||
| @@ -17585,11 +17641,11 @@ If DEFINITION contains multiple addresses, separate them with commas. | |||
| 17585 | ;;;*** | 17641 | ;;;*** |
| 17586 | 17642 | ||
| 17587 | ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases | 17643 | ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases |
| 17588 | ;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (18104 | 17644 | ;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (18088 |
| 17589 | ;;;;;; 24758)) | 17645 | ;;;;;; 55110)) |
| 17590 | ;;; Generated autoloads from mail/mailalias.el | 17646 | ;;; Generated autoloads from mail/mailalias.el |
| 17591 | 17647 | ||
| 17592 | (defvar mail-complete-style (quote angles) "\ | 17648 | (defvar mail-complete-style 'angles "\ |
| 17593 | *Specifies how \\[mail-complete] formats the full name when it completes. | 17649 | *Specifies how \\[mail-complete] formats the full name when it completes. |
| 17594 | If `nil', they contain just the return address like: | 17650 | If `nil', they contain just the return address like: |
| 17595 | king@grassland.com | 17651 | king@grassland.com |
| @@ -17598,9 +17654,9 @@ If `parens', they look like: | |||
| 17598 | If `angles', they look like: | 17654 | If `angles', they look like: |
| 17599 | Elvis Parsley <king@grassland.com>") | 17655 | Elvis Parsley <king@grassland.com>") |
| 17600 | 17656 | ||
| 17601 | (custom-autoload (quote mail-complete-style) "mailalias" t) | 17657 | (custom-autoload 'mail-complete-style "mailalias" t) |
| 17602 | 17658 | ||
| 17603 | (autoload (quote expand-mail-aliases) "mailalias" "\ | 17659 | (autoload 'expand-mail-aliases "mailalias" "\ |
| 17604 | Expand all mail aliases in suitable header fields found between BEG and END. | 17660 | Expand all mail aliases in suitable header fields found between BEG and END. |
| 17605 | If interactive, expand in header fields. | 17661 | If interactive, expand in header fields. |
| 17606 | Suitable header fields are `To', `From', `CC' and `BCC', `Reply-to', and | 17662 | Suitable header fields are `To', `From', `CC' and `BCC', `Reply-to', and |
| @@ -17611,7 +17667,7 @@ removed from alias expansions. | |||
| 17611 | 17667 | ||
| 17612 | \(fn BEG END &optional EXCLUDE)" t nil) | 17668 | \(fn BEG END &optional EXCLUDE)" t nil) |
| 17613 | 17669 | ||
| 17614 | (autoload (quote define-mail-alias) "mailalias" "\ | 17670 | (autoload 'define-mail-alias "mailalias" "\ |
| 17615 | Define NAME as a mail alias that translates to DEFINITION. | 17671 | Define NAME as a mail alias that translates to DEFINITION. |
| 17616 | This means that sending a message to NAME will actually send to DEFINITION. | 17672 | This means that sending a message to NAME will actually send to DEFINITION. |
| 17617 | 17673 | ||
| @@ -17622,7 +17678,7 @@ if it is quoted with double-quotes. | |||
| 17622 | 17678 | ||
| 17623 | \(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil) | 17679 | \(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil) |
| 17624 | 17680 | ||
| 17625 | (autoload (quote mail-complete) "mailalias" "\ | 17681 | (autoload 'mail-complete "mailalias" "\ |
| 17626 | Perform completion on header field or word preceding point. | 17682 | Perform completion on header field or word preceding point. |
| 17627 | Completable headers are according to `mail-complete-alist'. If none matches | 17683 | Completable headers are according to `mail-complete-alist'. If none matches |
| 17628 | current header, calls `mail-complete-function' and passes prefix arg if any. | 17684 | current header, calls `mail-complete-function' and passes prefix arg if any. |
| @@ -17632,10 +17688,10 @@ current header, calls `mail-complete-function' and passes prefix arg if any. | |||
| 17632 | ;;;*** | 17688 | ;;;*** |
| 17633 | 17689 | ||
| 17634 | ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" | 17690 | ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" |
| 17635 | ;;;;;; (18104 24758)) | 17691 | ;;;;;; (18088 55110)) |
| 17636 | ;;; Generated autoloads from mail/mailclient.el | 17692 | ;;; Generated autoloads from mail/mailclient.el |
| 17637 | 17693 | ||
| 17638 | (autoload (quote mailclient-send-it) "mailclient" "\ | 17694 | (autoload 'mailclient-send-it "mailclient" "\ |
| 17639 | Pass current buffer on to the system's mail client. | 17695 | Pass current buffer on to the system's mail client. |
| 17640 | Suitable value for `send-mail-function'. | 17696 | Suitable value for `send-mail-function'. |
| 17641 | The mail client is taken to be the handler of mailto URLs. | 17697 | The mail client is taken to be the handler of mailto URLs. |
| @@ -17646,10 +17702,10 @@ The mail client is taken to be the handler of mailto URLs. | |||
| 17646 | 17702 | ||
| 17647 | ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode | 17703 | ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode |
| 17648 | ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) | 17704 | ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) |
| 17649 | ;;;;;; "make-mode" "progmodes/make-mode.el" (18104 24767)) | 17705 | ;;;;;; "make-mode" "progmodes/make-mode.el" (18088 55117)) |
| 17650 | ;;; Generated autoloads from progmodes/make-mode.el | 17706 | ;;; Generated autoloads from progmodes/make-mode.el |
| 17651 | 17707 | ||
| 17652 | (autoload (quote makefile-mode) "make-mode" "\ | 17708 | (autoload 'makefile-mode "make-mode" "\ |
| 17653 | Major mode for editing standard Makefiles. | 17709 | Major mode for editing standard Makefiles. |
| 17654 | 17710 | ||
| 17655 | If you are editing a file for a different make, try one of the | 17711 | If you are editing a file for a different make, try one of the |
| @@ -17736,38 +17792,38 @@ Makefile mode can be configured by modifying the following variables: | |||
| 17736 | 17792 | ||
| 17737 | \(fn)" t nil) | 17793 | \(fn)" t nil) |
| 17738 | 17794 | ||
| 17739 | (autoload (quote makefile-automake-mode) "make-mode" "\ | 17795 | (autoload 'makefile-automake-mode "make-mode" "\ |
| 17740 | An adapted `makefile-mode' that knows about automake. | 17796 | An adapted `makefile-mode' that knows about automake. |
| 17741 | 17797 | ||
| 17742 | \(fn)" t nil) | 17798 | \(fn)" t nil) |
| 17743 | 17799 | ||
| 17744 | (autoload (quote makefile-gmake-mode) "make-mode" "\ | 17800 | (autoload 'makefile-gmake-mode "make-mode" "\ |
| 17745 | An adapted `makefile-mode' that knows about gmake. | 17801 | An adapted `makefile-mode' that knows about gmake. |
| 17746 | 17802 | ||
| 17747 | \(fn)" t nil) | 17803 | \(fn)" t nil) |
| 17748 | 17804 | ||
| 17749 | (autoload (quote makefile-makepp-mode) "make-mode" "\ | 17805 | (autoload 'makefile-makepp-mode "make-mode" "\ |
| 17750 | An adapted `makefile-mode' that knows about makepp. | 17806 | An adapted `makefile-mode' that knows about makepp. |
| 17751 | 17807 | ||
| 17752 | \(fn)" t nil) | 17808 | \(fn)" t nil) |
| 17753 | 17809 | ||
| 17754 | (autoload (quote makefile-bsdmake-mode) "make-mode" "\ | 17810 | (autoload 'makefile-bsdmake-mode "make-mode" "\ |
| 17755 | An adapted `makefile-mode' that knows about BSD make. | 17811 | An adapted `makefile-mode' that knows about BSD make. |
| 17756 | 17812 | ||
| 17757 | \(fn)" t nil) | 17813 | \(fn)" t nil) |
| 17758 | 17814 | ||
| 17759 | (autoload (quote makefile-imake-mode) "make-mode" "\ | 17815 | (autoload 'makefile-imake-mode "make-mode" "\ |
| 17760 | An adapted `makefile-mode' that knows about imake. | 17816 | An adapted `makefile-mode' that knows about imake. |
| 17761 | 17817 | ||
| 17762 | \(fn)" t nil) | 17818 | \(fn)" t nil) |
| 17763 | 17819 | ||
| 17764 | ;;;*** | 17820 | ;;;*** |
| 17765 | 17821 | ||
| 17766 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (18104 | 17822 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (18088 |
| 17767 | ;;;;;; 24738)) | 17823 | ;;;;;; 55086)) |
| 17768 | ;;; Generated autoloads from makesum.el | 17824 | ;;; Generated autoloads from makesum.el |
| 17769 | 17825 | ||
| 17770 | (autoload (quote make-command-summary) "makesum" "\ | 17826 | (autoload 'make-command-summary "makesum" "\ |
| 17771 | Make a summary of current key bindings in the buffer *Summary*. | 17827 | Make a summary of current key bindings in the buffer *Summary*. |
| 17772 | Previous contents of that buffer are killed first. | 17828 | Previous contents of that buffer are killed first. |
| 17773 | 17829 | ||
| @@ -17775,12 +17831,12 @@ Previous contents of that buffer are killed first. | |||
| 17775 | 17831 | ||
| 17776 | ;;;*** | 17832 | ;;;*** |
| 17777 | 17833 | ||
| 17778 | ;;;### (autoloads (man-follow man) "man" "man.el" (18104 24738)) | 17834 | ;;;### (autoloads (man-follow man) "man" "man.el" (18153 31207)) |
| 17779 | ;;; Generated autoloads from man.el | 17835 | ;;; Generated autoloads from man.el |
| 17780 | 17836 | ||
| 17781 | (defalias (quote manual-entry) (quote man)) | 17837 | (defalias 'manual-entry 'man) |
| 17782 | 17838 | ||
| 17783 | (autoload (quote man) "man" "\ | 17839 | (autoload 'man "man" "\ |
| 17784 | Get a Un*x manual page and put it in a buffer. | 17840 | Get a Un*x manual page and put it in a buffer. |
| 17785 | This command is the top-level command in the man package. It runs a Un*x | 17841 | This command is the top-level command in the man package. It runs a Un*x |
| 17786 | command to retrieve and clean a manpage in the background and places the | 17842 | command to retrieve and clean a manpage in the background and places the |
| @@ -17795,17 +17851,17 @@ all sections related to a subject, put something appropriate into the | |||
| 17795 | 17851 | ||
| 17796 | \(fn MAN-ARGS)" t nil) | 17852 | \(fn MAN-ARGS)" t nil) |
| 17797 | 17853 | ||
| 17798 | (autoload (quote man-follow) "man" "\ | 17854 | (autoload 'man-follow "man" "\ |
| 17799 | Get a Un*x manual page of the item under point and put it in a buffer. | 17855 | Get a Un*x manual page of the item under point and put it in a buffer. |
| 17800 | 17856 | ||
| 17801 | \(fn MAN-ARGS)" t nil) | 17857 | \(fn MAN-ARGS)" t nil) |
| 17802 | 17858 | ||
| 17803 | ;;;*** | 17859 | ;;;*** |
| 17804 | 17860 | ||
| 17805 | ;;;### (autoloads (master-mode) "master" "master.el" (18104 24738)) | 17861 | ;;;### (autoloads (master-mode) "master" "master.el" (18088 55086)) |
| 17806 | ;;; Generated autoloads from master.el | 17862 | ;;; Generated autoloads from master.el |
| 17807 | 17863 | ||
| 17808 | (autoload (quote master-mode) "master" "\ | 17864 | (autoload 'master-mode "master" "\ |
| 17809 | Toggle Master mode. | 17865 | Toggle Master mode. |
| 17810 | With no argument, this command toggles the mode. | 17866 | With no argument, this command toggles the mode. |
| 17811 | Non-null prefix argument turns on the mode. | 17867 | Non-null prefix argument turns on the mode. |
| @@ -17825,7 +17881,7 @@ yourself the value of `master-of' by calling `master-show-slave'. | |||
| 17825 | ;;;*** | 17881 | ;;;*** |
| 17826 | 17882 | ||
| 17827 | ;;;### (autoloads (minibuffer-indicate-depth-mode) "mb-depth" "mb-depth.el" | 17883 | ;;;### (autoloads (minibuffer-indicate-depth-mode) "mb-depth" "mb-depth.el" |
| 17828 | ;;;;;; (18104 24738)) | 17884 | ;;;;;; (18187 36839)) |
| 17829 | ;;; Generated autoloads from mb-depth.el | 17885 | ;;; Generated autoloads from mb-depth.el |
| 17830 | 17886 | ||
| 17831 | (defvar minibuffer-indicate-depth-mode nil "\ | 17887 | (defvar minibuffer-indicate-depth-mode nil "\ |
| @@ -17835,9 +17891,9 @@ Setting this variable directly does not take effect; | |||
| 17835 | either customize it (see the info node `Easy Customization') | 17891 | either customize it (see the info node `Easy Customization') |
| 17836 | or call the function `minibuffer-indicate-depth-mode'.") | 17892 | or call the function `minibuffer-indicate-depth-mode'.") |
| 17837 | 17893 | ||
| 17838 | (custom-autoload (quote minibuffer-indicate-depth-mode) "mb-depth" nil) | 17894 | (custom-autoload 'minibuffer-indicate-depth-mode "mb-depth" nil) |
| 17839 | 17895 | ||
| 17840 | (autoload (quote minibuffer-indicate-depth-mode) "mb-depth" "\ | 17896 | (autoload 'minibuffer-indicate-depth-mode "mb-depth" "\ |
| 17841 | Toggle Minibuffer Indicate Depth mode. | 17897 | Toggle Minibuffer Indicate Depth mode. |
| 17842 | When active, any recursive use of the minibuffer will show | 17898 | When active, any recursive use of the minibuffer will show |
| 17843 | the recursion depth in the minibuffer prompt. This is only | 17899 | the recursion depth in the minibuffer prompt. This is only |
| @@ -17850,11 +17906,11 @@ Returns non-nil if the new state is enabled. | |||
| 17850 | 17906 | ||
| 17851 | ;;;*** | 17907 | ;;;*** |
| 17852 | 17908 | ||
| 17853 | ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (18104 | 17909 | ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (18211 |
| 17854 | ;;;;;; 24738)) | 17910 | ;;;;;; 32385)) |
| 17855 | ;;; Generated autoloads from menu-bar.el | 17911 | ;;; Generated autoloads from menu-bar.el |
| 17856 | 17912 | ||
| 17857 | (put (quote menu-bar-mode) (quote standard-value) (quote (t))) | 17913 | (put 'menu-bar-mode 'standard-value '(t)) |
| 17858 | 17914 | ||
| 17859 | (defvar menu-bar-mode nil "\ | 17915 | (defvar menu-bar-mode nil "\ |
| 17860 | Non-nil if Menu-Bar mode is enabled. | 17916 | Non-nil if Menu-Bar mode is enabled. |
| @@ -17863,9 +17919,9 @@ Setting this variable directly does not take effect; | |||
| 17863 | either customize it (see the info node `Easy Customization') | 17919 | either customize it (see the info node `Easy Customization') |
| 17864 | or call the function `menu-bar-mode'.") | 17920 | or call the function `menu-bar-mode'.") |
| 17865 | 17921 | ||
| 17866 | (custom-autoload (quote menu-bar-mode) "menu-bar" nil) | 17922 | (custom-autoload 'menu-bar-mode "menu-bar" nil) |
| 17867 | 17923 | ||
| 17868 | (autoload (quote menu-bar-mode) "menu-bar" "\ | 17924 | (autoload 'menu-bar-mode "menu-bar" "\ |
| 17869 | Toggle display of a menu bar on each frame. | 17925 | Toggle display of a menu bar on each frame. |
| 17870 | This command applies to all frames that exist and frames to be | 17926 | This command applies to all frames that exist and frames to be |
| 17871 | created in the future. | 17927 | created in the future. |
| @@ -17876,113 +17932,18 @@ turn on menu bars; otherwise, turn off menu bars. | |||
| 17876 | 17932 | ||
| 17877 | ;;;*** | 17933 | ;;;*** |
| 17878 | 17934 | ||
| 17879 | ;;;### (autoloads (unbold-region bold-region message-news-other-frame | 17935 | ;;;### (autoloads (message-unbold-region message-bold-region message-news-other-frame |
| 17880 | ;;;;;; message-news-other-window message-mail-other-frame message-mail-other-window | 17936 | ;;;;;; message-news-other-window message-mail-other-frame message-mail-other-window |
| 17881 | ;;;;;; message-bounce message-resend message-insinuate-rmail message-forward-rmail-make-body | 17937 | ;;;;;; message-bounce message-resend message-insinuate-rmail message-forward-rmail-make-body |
| 17882 | ;;;;;; message-forward-make-body message-forward message-recover | 17938 | ;;;;;; message-forward-make-body message-forward message-recover |
| 17883 | ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply | 17939 | ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply |
| 17884 | ;;;;;; message-reply message-news message-mail message-mode message-signature-insert-empty-line | 17940 | ;;;;;; message-reply message-news message-mail message-mode) "message" |
| 17885 | ;;;;;; message-signature-file message-signature message-indent-citation-function | 17941 | ;;;;;; "gnus/message.el" (18212 46007)) |
| 17886 | ;;;;;; message-cite-function message-yank-prefix message-citation-line-function | ||
| 17887 | ;;;;;; message-send-mail-function message-user-organization-file | ||
| 17888 | ;;;;;; message-signature-separator message-from-style) "message" | ||
| 17889 | ;;;;;; "gnus/message.el" (18104 24751)) | ||
| 17890 | ;;; Generated autoloads from gnus/message.el | 17942 | ;;; Generated autoloads from gnus/message.el |
| 17891 | 17943 | ||
| 17892 | (defvar message-from-style (quote default) "\ | 17944 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| 17893 | *Specifies how \"From\" headers look. | ||
| 17894 | |||
| 17895 | If nil, they contain just the return address like: | ||
| 17896 | king@grassland.com | ||
| 17897 | If `parens', they look like: | ||
| 17898 | king@grassland.com (Elvis Parsley) | ||
| 17899 | If `angles', they look like: | ||
| 17900 | Elvis Parsley <king@grassland.com> | ||
| 17901 | |||
| 17902 | Otherwise, most addresses look like `angles', but they look like | ||
| 17903 | `parens' if `angles' would need quoting and `parens' would not.") | ||
| 17904 | |||
| 17905 | (custom-autoload (quote message-from-style) "message" t) | ||
| 17906 | |||
| 17907 | (defvar message-signature-separator "^-- *$" "\ | ||
| 17908 | Regexp matching the signature separator.") | ||
| 17909 | |||
| 17910 | (custom-autoload (quote message-signature-separator) "message" t) | ||
| 17911 | |||
| 17912 | (defvar message-user-organization-file "/usr/lib/news/organization" "\ | ||
| 17913 | *Local news organization file.") | ||
| 17914 | |||
| 17915 | (custom-autoload (quote message-user-organization-file) "message" t) | ||
| 17916 | |||
| 17917 | (defvar message-send-mail-function (quote message-send-mail-with-sendmail) "\ | ||
| 17918 | Function to call to send the current buffer as mail. | ||
| 17919 | The headers should be delimited by a line whose contents match the | ||
| 17920 | variable `mail-header-separator'. | ||
| 17921 | |||
| 17922 | Valid values include `message-send-mail-with-sendmail' (the default), | ||
| 17923 | `message-send-mail-with-mh', `message-send-mail-with-qmail', | ||
| 17924 | `message-smtpmail-send-it', `smtpmail-send-it' and `feedmail-send-it'. | ||
| 17925 | 17945 | ||
| 17926 | See also `send-mail-function'.") | 17946 | (autoload 'message-mode "message" "\ |
| 17927 | |||
| 17928 | (custom-autoload (quote message-send-mail-function) "message" t) | ||
| 17929 | |||
| 17930 | (defvar message-citation-line-function (quote message-insert-citation-line) "\ | ||
| 17931 | *Function called to insert the \"Whomever writes:\" line. | ||
| 17932 | |||
| 17933 | Note that Gnus provides a feature where the reader can click on | ||
| 17934 | `writes:' to hide the cited text. If you change this line too much, | ||
| 17935 | people who read your message will have to change their Gnus | ||
| 17936 | configuration. See the variable `gnus-cite-attribution-suffix'.") | ||
| 17937 | |||
| 17938 | (custom-autoload (quote message-citation-line-function) "message" t) | ||
| 17939 | |||
| 17940 | (defvar message-yank-prefix "> " "\ | ||
| 17941 | *Prefix inserted on the lines of yanked messages. | ||
| 17942 | Fix `message-cite-prefix-regexp' if it is set to an abnormal value. | ||
| 17943 | See also `message-yank-cited-prefix'.") | ||
| 17944 | |||
| 17945 | (custom-autoload (quote message-yank-prefix) "message" t) | ||
| 17946 | |||
| 17947 | (defvar message-cite-function (quote message-cite-original) "\ | ||
| 17948 | *Function for citing an original message. | ||
| 17949 | Predefined functions include `message-cite-original' and | ||
| 17950 | `message-cite-original-without-signature'. | ||
| 17951 | Note that `message-cite-original' uses `mail-citation-hook' if that is non-nil.") | ||
| 17952 | |||
| 17953 | (custom-autoload (quote message-cite-function) "message" t) | ||
| 17954 | |||
| 17955 | (defvar message-indent-citation-function (quote message-indent-citation) "\ | ||
| 17956 | *Function for modifying a citation just inserted in the mail buffer. | ||
| 17957 | This can also be a list of functions. Each function can find the | ||
| 17958 | citation between (point) and (mark t). And each function should leave | ||
| 17959 | point and mark around the citation text as modified.") | ||
| 17960 | |||
| 17961 | (custom-autoload (quote message-indent-citation-function) "message" t) | ||
| 17962 | |||
| 17963 | (defvar message-signature t "\ | ||
| 17964 | *String to be inserted at the end of the message buffer. | ||
| 17965 | If t, the `message-signature-file' file will be inserted instead. | ||
| 17966 | If a function, the result from the function will be used instead. | ||
| 17967 | If a form, the result from the form will be used instead.") | ||
| 17968 | |||
| 17969 | (custom-autoload (quote message-signature) "message" t) | ||
| 17970 | |||
| 17971 | (defvar message-signature-file "~/.signature" "\ | ||
| 17972 | *Name of file containing the text inserted at end of message buffer. | ||
| 17973 | Ignored if the named file doesn't exist. | ||
| 17974 | If nil, don't insert a signature.") | ||
| 17975 | |||
| 17976 | (custom-autoload (quote message-signature-file) "message" t) | ||
| 17977 | |||
| 17978 | (defvar message-signature-insert-empty-line t "\ | ||
| 17979 | *If non-nil, insert an empty line before the signature separator.") | ||
| 17980 | |||
| 17981 | (custom-autoload (quote message-signature-insert-empty-line) "message" t) | ||
| 17982 | |||
| 17983 | (define-mail-user-agent (quote message-user-agent) (quote message-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook)) | ||
| 17984 | |||
| 17985 | (autoload (quote message-mode) "message" "\ | ||
| 17986 | Major mode for editing mail and news to be sent. | 17947 | Major mode for editing mail and news to be sent. |
| 17987 | Like Text Mode but with these additional commands:\\<message-mode-map> | 17948 | Like Text Mode but with these additional commands:\\<message-mode-map> |
| 17988 | C-c C-s `message-send' (send the message) C-c C-c `message-send-and-exit' | 17949 | C-c C-s `message-send' (send the message) C-c C-c `message-send-and-exit' |
| @@ -17993,9 +17954,10 @@ C-c C-f move to a header field (and create it if there isn't): | |||
| 17993 | C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To | 17954 | C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To |
| 17994 | C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups | 17955 | C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups |
| 17995 | C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution | 17956 | C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution |
| 17996 | C-c C-f C-o move to From (\"Originator\") | 17957 | C-c C-f C-o move to From (\"Originator\") |
| 17997 | C-c C-f C-f move to Followup-To | 17958 | C-c C-f C-f move to Followup-To |
| 17998 | C-c C-f C-m move to Mail-Followup-To | 17959 | C-c C-f C-m move to Mail-Followup-To |
| 17960 | C-c C-f C-e move to Expires | ||
| 17999 | C-c C-f C-i cycle through Importance values | 17961 | C-c C-f C-i cycle through Importance values |
| 18000 | C-c C-f s change subject and append \"(was: <Old Subject>)\" | 17962 | C-c C-f s change subject and append \"(was: <Old Subject>)\" |
| 18001 | C-c C-f x crossposting with FollowUp-To header and note in body | 17963 | C-c C-f x crossposting with FollowUp-To header and note in body |
| @@ -18022,7 +17984,7 @@ M-RET `message-newline-and-reformat' (break the line and reformat). | |||
| 18022 | 17984 | ||
| 18023 | \(fn)" t nil) | 17985 | \(fn)" t nil) |
| 18024 | 17986 | ||
| 18025 | (autoload (quote message-mail) "message" "\ | 17987 | (autoload 'message-mail "message" "\ |
| 18026 | Start editing a mail message to be sent. | 17988 | Start editing a mail message to be sent. |
| 18027 | OTHER-HEADERS is an alist of header/value pairs. CONTINUE says whether | 17989 | OTHER-HEADERS is an alist of header/value pairs. CONTINUE says whether |
| 18028 | to continue editing a message already being composed. SWITCH-FUNCTION | 17990 | to continue editing a message already being composed. SWITCH-FUNCTION |
| @@ -18030,73 +17992,73 @@ is a function used to switch to and display the mail buffer. | |||
| 18030 | 17992 | ||
| 18031 | \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" t nil) | 17993 | \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" t nil) |
| 18032 | 17994 | ||
| 18033 | (autoload (quote message-news) "message" "\ | 17995 | (autoload 'message-news "message" "\ |
| 18034 | Start editing a news article to be sent. | 17996 | Start editing a news article to be sent. |
| 18035 | 17997 | ||
| 18036 | \(fn &optional NEWSGROUPS SUBJECT)" t nil) | 17998 | \(fn &optional NEWSGROUPS SUBJECT)" t nil) |
| 18037 | 17999 | ||
| 18038 | (autoload (quote message-reply) "message" "\ | 18000 | (autoload 'message-reply "message" "\ |
| 18039 | Start editing a reply to the article in the current buffer. | 18001 | Start editing a reply to the article in the current buffer. |
| 18040 | 18002 | ||
| 18041 | \(fn &optional TO-ADDRESS WIDE)" t nil) | 18003 | \(fn &optional TO-ADDRESS WIDE)" t nil) |
| 18042 | 18004 | ||
| 18043 | (autoload (quote message-wide-reply) "message" "\ | 18005 | (autoload 'message-wide-reply "message" "\ |
| 18044 | Make a \"wide\" reply to the message in the current buffer. | 18006 | Make a \"wide\" reply to the message in the current buffer. |
| 18045 | 18007 | ||
| 18046 | \(fn &optional TO-ADDRESS)" t nil) | 18008 | \(fn &optional TO-ADDRESS)" t nil) |
| 18047 | 18009 | ||
| 18048 | (autoload (quote message-followup) "message" "\ | 18010 | (autoload 'message-followup "message" "\ |
| 18049 | Follow up to the message in the current buffer. | 18011 | Follow up to the message in the current buffer. |
| 18050 | If TO-NEWSGROUPS, use that as the new Newsgroups line. | 18012 | If TO-NEWSGROUPS, use that as the new Newsgroups line. |
| 18051 | 18013 | ||
| 18052 | \(fn &optional TO-NEWSGROUPS)" t nil) | 18014 | \(fn &optional TO-NEWSGROUPS)" t nil) |
| 18053 | 18015 | ||
| 18054 | (autoload (quote message-cancel-news) "message" "\ | 18016 | (autoload 'message-cancel-news "message" "\ |
| 18055 | Cancel an article you posted. | 18017 | Cancel an article you posted. |
| 18056 | If ARG, allow editing of the cancellation message. | 18018 | If ARG, allow editing of the cancellation message. |
| 18057 | 18019 | ||
| 18058 | \(fn &optional ARG)" t nil) | 18020 | \(fn &optional ARG)" t nil) |
| 18059 | 18021 | ||
| 18060 | (autoload (quote message-supersede) "message" "\ | 18022 | (autoload 'message-supersede "message" "\ |
| 18061 | Start composing a message to supersede the current message. | 18023 | Start composing a message to supersede the current message. |
| 18062 | This is done simply by taking the old article and adding a Supersedes | 18024 | This is done simply by taking the old article and adding a Supersedes |
| 18063 | header line with the old Message-ID. | 18025 | header line with the old Message-ID. |
| 18064 | 18026 | ||
| 18065 | \(fn)" t nil) | 18027 | \(fn)" t nil) |
| 18066 | 18028 | ||
| 18067 | (autoload (quote message-recover) "message" "\ | 18029 | (autoload 'message-recover "message" "\ |
| 18068 | Reread contents of current buffer from its last auto-save file. | 18030 | Reread contents of current buffer from its last auto-save file. |
| 18069 | 18031 | ||
| 18070 | \(fn)" t nil) | 18032 | \(fn)" t nil) |
| 18071 | 18033 | ||
| 18072 | (autoload (quote message-forward) "message" "\ | 18034 | (autoload 'message-forward "message" "\ |
| 18073 | Forward the current message via mail. | 18035 | Forward the current message via mail. |
| 18074 | Optional NEWS will use news to forward instead of mail. | 18036 | Optional NEWS will use news to forward instead of mail. |
| 18075 | Optional DIGEST will use digest to forward. | 18037 | Optional DIGEST will use digest to forward. |
| 18076 | 18038 | ||
| 18077 | \(fn &optional NEWS DIGEST)" t nil) | 18039 | \(fn &optional NEWS DIGEST)" t nil) |
| 18078 | 18040 | ||
| 18079 | (autoload (quote message-forward-make-body) "message" "\ | 18041 | (autoload 'message-forward-make-body "message" "\ |
| 18080 | Not documented | 18042 | Not documented |
| 18081 | 18043 | ||
| 18082 | \(fn FORWARD-BUFFER &optional DIGEST)" nil nil) | 18044 | \(fn FORWARD-BUFFER &optional DIGEST)" nil nil) |
| 18083 | 18045 | ||
| 18084 | (autoload (quote message-forward-rmail-make-body) "message" "\ | 18046 | (autoload 'message-forward-rmail-make-body "message" "\ |
| 18085 | Not documented | 18047 | Not documented |
| 18086 | 18048 | ||
| 18087 | \(fn FORWARD-BUFFER)" nil nil) | 18049 | \(fn FORWARD-BUFFER)" nil nil) |
| 18088 | 18050 | ||
| 18089 | (autoload (quote message-insinuate-rmail) "message" "\ | 18051 | (autoload 'message-insinuate-rmail "message" "\ |
| 18090 | Let RMAIL use message to forward. | 18052 | Let RMAIL use message to forward. |
| 18091 | 18053 | ||
| 18092 | \(fn)" t nil) | 18054 | \(fn)" t nil) |
| 18093 | 18055 | ||
| 18094 | (autoload (quote message-resend) "message" "\ | 18056 | (autoload 'message-resend "message" "\ |
| 18095 | Resend the current article to ADDRESS. | 18057 | Resend the current article to ADDRESS. |
| 18096 | 18058 | ||
| 18097 | \(fn ADDRESS)" t nil) | 18059 | \(fn ADDRESS)" t nil) |
| 18098 | 18060 | ||
| 18099 | (autoload (quote message-bounce) "message" "\ | 18061 | (autoload 'message-bounce "message" "\ |
| 18100 | Re-mail the current message. | 18062 | Re-mail the current message. |
| 18101 | This only makes sense if the current message is a bounce message that | 18063 | This only makes sense if the current message is a bounce message that |
| 18102 | contains some mail you have written which has been bounced back to | 18064 | contains some mail you have written which has been bounced back to |
| @@ -18104,27 +18066,27 @@ you. | |||
| 18104 | 18066 | ||
| 18105 | \(fn)" t nil) | 18067 | \(fn)" t nil) |
| 18106 | 18068 | ||
| 18107 | (autoload (quote message-mail-other-window) "message" "\ | 18069 | (autoload 'message-mail-other-window "message" "\ |
| 18108 | Like `message-mail' command, but display mail buffer in another window. | 18070 | Like `message-mail' command, but display mail buffer in another window. |
| 18109 | 18071 | ||
| 18110 | \(fn &optional TO SUBJECT)" t nil) | 18072 | \(fn &optional TO SUBJECT)" t nil) |
| 18111 | 18073 | ||
| 18112 | (autoload (quote message-mail-other-frame) "message" "\ | 18074 | (autoload 'message-mail-other-frame "message" "\ |
| 18113 | Like `message-mail' command, but display mail buffer in another frame. | 18075 | Like `message-mail' command, but display mail buffer in another frame. |
| 18114 | 18076 | ||
| 18115 | \(fn &optional TO SUBJECT)" t nil) | 18077 | \(fn &optional TO SUBJECT)" t nil) |
| 18116 | 18078 | ||
| 18117 | (autoload (quote message-news-other-window) "message" "\ | 18079 | (autoload 'message-news-other-window "message" "\ |
| 18118 | Start editing a news article to be sent. | 18080 | Start editing a news article to be sent. |
| 18119 | 18081 | ||
| 18120 | \(fn &optional NEWSGROUPS SUBJECT)" t nil) | 18082 | \(fn &optional NEWSGROUPS SUBJECT)" t nil) |
| 18121 | 18083 | ||
| 18122 | (autoload (quote message-news-other-frame) "message" "\ | 18084 | (autoload 'message-news-other-frame "message" "\ |
| 18123 | Start editing a news article to be sent. | 18085 | Start editing a news article to be sent. |
| 18124 | 18086 | ||
| 18125 | \(fn &optional NEWSGROUPS SUBJECT)" t nil) | 18087 | \(fn &optional NEWSGROUPS SUBJECT)" t nil) |
| 18126 | 18088 | ||
| 18127 | (autoload (quote bold-region) "message" "\ | 18089 | (autoload 'message-bold-region "message" "\ |
| 18128 | Bold all nonblank characters in the region. | 18090 | Bold all nonblank characters in the region. |
| 18129 | Works by overstriking characters. | 18091 | Works by overstriking characters. |
| 18130 | Called from program, takes two arguments START and END | 18092 | Called from program, takes two arguments START and END |
| @@ -18132,7 +18094,7 @@ which specify the range to operate on. | |||
| 18132 | 18094 | ||
| 18133 | \(fn START END)" t nil) | 18095 | \(fn START END)" t nil) |
| 18134 | 18096 | ||
| 18135 | (autoload (quote unbold-region) "message" "\ | 18097 | (autoload 'message-unbold-region "message" "\ |
| 18136 | Remove all boldness (overstruck characters) in the region. | 18098 | Remove all boldness (overstruck characters) in the region. |
| 18137 | Called from program, takes two arguments START and END | 18099 | Called from program, takes two arguments START and END |
| 18138 | which specify the range to operate on. | 18100 | which specify the range to operate on. |
| @@ -18142,10 +18104,10 @@ which specify the range to operate on. | |||
| 18142 | ;;;*** | 18104 | ;;;*** |
| 18143 | 18105 | ||
| 18144 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" | 18106 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" |
| 18145 | ;;;;;; (18104 24767)) | 18107 | ;;;;;; (18161 20996)) |
| 18146 | ;;; Generated autoloads from progmodes/meta-mode.el | 18108 | ;;; Generated autoloads from progmodes/meta-mode.el |
| 18147 | 18109 | ||
| 18148 | (autoload (quote metafont-mode) "meta-mode" "\ | 18110 | (autoload 'metafont-mode "meta-mode" "\ |
| 18149 | Major mode for editing Metafont sources. | 18111 | Major mode for editing Metafont sources. |
| 18150 | Special commands: | 18112 | Special commands: |
| 18151 | \\{meta-mode-map} | 18113 | \\{meta-mode-map} |
| @@ -18155,7 +18117,7 @@ Turning on Metafont mode calls the value of the variables | |||
| 18155 | 18117 | ||
| 18156 | \(fn)" t nil) | 18118 | \(fn)" t nil) |
| 18157 | 18119 | ||
| 18158 | (autoload (quote metapost-mode) "meta-mode" "\ | 18120 | (autoload 'metapost-mode "meta-mode" "\ |
| 18159 | Major mode for editing MetaPost sources. | 18121 | Major mode for editing MetaPost sources. |
| 18160 | Special commands: | 18122 | Special commands: |
| 18161 | \\{meta-mode-map} | 18123 | \\{meta-mode-map} |
| @@ -18169,16 +18131,16 @@ Turning on MetaPost mode calls the value of the variable | |||
| 18169 | 18131 | ||
| 18170 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body | 18132 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body |
| 18171 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" | 18133 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" |
| 18172 | ;;;;;; (18104 24758)) | 18134 | ;;;;;; (18088 55110)) |
| 18173 | ;;; Generated autoloads from mail/metamail.el | 18135 | ;;; Generated autoloads from mail/metamail.el |
| 18174 | 18136 | ||
| 18175 | (autoload (quote metamail-interpret-header) "metamail" "\ | 18137 | (autoload 'metamail-interpret-header "metamail" "\ |
| 18176 | Interpret a header part of a MIME message in current buffer. | 18138 | Interpret a header part of a MIME message in current buffer. |
| 18177 | Its body part is not interpreted at all. | 18139 | Its body part is not interpreted at all. |
| 18178 | 18140 | ||
| 18179 | \(fn)" t nil) | 18141 | \(fn)" t nil) |
| 18180 | 18142 | ||
| 18181 | (autoload (quote metamail-interpret-body) "metamail" "\ | 18143 | (autoload 'metamail-interpret-body "metamail" "\ |
| 18182 | Interpret a body part of a MIME message in current buffer. | 18144 | Interpret a body part of a MIME message in current buffer. |
| 18183 | Optional argument VIEWMODE specifies the value of the | 18145 | Optional argument VIEWMODE specifies the value of the |
| 18184 | EMACS_VIEW_MODE environment variable (defaulted to 1). | 18146 | EMACS_VIEW_MODE environment variable (defaulted to 1). |
| @@ -18188,7 +18150,7 @@ Its header part is not interpreted at all. | |||
| 18188 | 18150 | ||
| 18189 | \(fn &optional VIEWMODE NODISPLAY)" t nil) | 18151 | \(fn &optional VIEWMODE NODISPLAY)" t nil) |
| 18190 | 18152 | ||
| 18191 | (autoload (quote metamail-buffer) "metamail" "\ | 18153 | (autoload 'metamail-buffer "metamail" "\ |
| 18192 | Process current buffer through `metamail'. | 18154 | Process current buffer through `metamail'. |
| 18193 | Optional argument VIEWMODE specifies the value of the | 18155 | Optional argument VIEWMODE specifies the value of the |
| 18194 | EMACS_VIEW_MODE environment variable (defaulted to 1). | 18156 | EMACS_VIEW_MODE environment variable (defaulted to 1). |
| @@ -18199,7 +18161,7 @@ redisplayed as output is inserted. | |||
| 18199 | 18161 | ||
| 18200 | \(fn &optional VIEWMODE BUFFER NODISPLAY)" t nil) | 18162 | \(fn &optional VIEWMODE BUFFER NODISPLAY)" t nil) |
| 18201 | 18163 | ||
| 18202 | (autoload (quote metamail-region) "metamail" "\ | 18164 | (autoload 'metamail-region "metamail" "\ |
| 18203 | Process current region through 'metamail'. | 18165 | Process current region through 'metamail'. |
| 18204 | Optional argument VIEWMODE specifies the value of the | 18166 | Optional argument VIEWMODE specifies the value of the |
| 18205 | EMACS_VIEW_MODE environment variable (defaulted to 1). | 18167 | EMACS_VIEW_MODE environment variable (defaulted to 1). |
| @@ -18214,22 +18176,22 @@ redisplayed as output is inserted. | |||
| 18214 | 18176 | ||
| 18215 | ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose | 18177 | ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose |
| 18216 | ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" | 18178 | ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" |
| 18217 | ;;;;;; "mh-e/mh-comp.el" (18104 24759)) | 18179 | ;;;;;; "mh-e/mh-comp.el" (18128 32656)) |
| 18218 | ;;; Generated autoloads from mh-e/mh-comp.el | 18180 | ;;; Generated autoloads from mh-e/mh-comp.el |
| 18219 | 18181 | ||
| 18220 | (autoload (quote mh-smail) "mh-comp" "\ | 18182 | (autoload 'mh-smail "mh-comp" "\ |
| 18221 | Compose a message with the MH mail system. | 18183 | Compose a message with the MH mail system. |
| 18222 | See `mh-send' for more details on composing mail. | 18184 | See `mh-send' for more details on composing mail. |
| 18223 | 18185 | ||
| 18224 | \(fn)" t nil) | 18186 | \(fn)" t nil) |
| 18225 | 18187 | ||
| 18226 | (autoload (quote mh-smail-other-window) "mh-comp" "\ | 18188 | (autoload 'mh-smail-other-window "mh-comp" "\ |
| 18227 | Compose a message with the MH mail system in other window. | 18189 | Compose a message with the MH mail system in other window. |
| 18228 | See `mh-send' for more details on composing mail. | 18190 | See `mh-send' for more details on composing mail. |
| 18229 | 18191 | ||
| 18230 | \(fn)" t nil) | 18192 | \(fn)" t nil) |
| 18231 | 18193 | ||
| 18232 | (autoload (quote mh-smail-batch) "mh-comp" "\ | 18194 | (autoload 'mh-smail-batch "mh-comp" "\ |
| 18233 | Compose a message with the MH mail system. | 18195 | Compose a message with the MH mail system. |
| 18234 | 18196 | ||
| 18235 | This function does not prompt the user for any header fields, and | 18197 | This function does not prompt the user for any header fields, and |
| @@ -18244,9 +18206,9 @@ applications should use `mh-user-agent-compose'. | |||
| 18244 | 18206 | ||
| 18245 | \(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)" nil nil) | 18207 | \(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)" nil nil) |
| 18246 | 18208 | ||
| 18247 | (define-mail-user-agent (quote mh-e-user-agent) (quote mh-user-agent-compose) (quote mh-send-letter) (quote mh-fully-kill-draft) (quote mh-before-send-letter-hook)) | 18209 | (define-mail-user-agent 'mh-e-user-agent 'mh-user-agent-compose 'mh-send-letter 'mh-fully-kill-draft 'mh-before-send-letter-hook) |
| 18248 | 18210 | ||
| 18249 | (autoload (quote mh-user-agent-compose) "mh-comp" "\ | 18211 | (autoload 'mh-user-agent-compose "mh-comp" "\ |
| 18250 | Set up mail composition draft with the MH mail system. | 18212 | Set up mail composition draft with the MH mail system. |
| 18251 | This is the `mail-user-agent' entry point to MH-E. This function | 18213 | This is the `mail-user-agent' entry point to MH-E. This function |
| 18252 | conforms to the contract specified by `define-mail-user-agent' | 18214 | conforms to the contract specified by `define-mail-user-agent' |
| @@ -18265,7 +18227,7 @@ ignored. | |||
| 18265 | 18227 | ||
| 18266 | \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" nil nil) | 18228 | \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" nil nil) |
| 18267 | 18229 | ||
| 18268 | (autoload (quote mh-send-letter) "mh-comp" "\ | 18230 | (autoload 'mh-send-letter "mh-comp" "\ |
| 18269 | Save draft and send message. | 18231 | Save draft and send message. |
| 18270 | 18232 | ||
| 18271 | When you are all through editing a message, you send it with this | 18233 | When you are all through editing a message, you send it with this |
| @@ -18289,7 +18251,7 @@ use `mh-send-prog' to tell MH-E the name. | |||
| 18289 | 18251 | ||
| 18290 | \(fn &optional ARG)" t nil) | 18252 | \(fn &optional ARG)" t nil) |
| 18291 | 18253 | ||
| 18292 | (autoload (quote mh-fully-kill-draft) "mh-comp" "\ | 18254 | (autoload 'mh-fully-kill-draft "mh-comp" "\ |
| 18293 | Quit editing and delete draft message. | 18255 | Quit editing and delete draft message. |
| 18294 | 18256 | ||
| 18295 | If for some reason you are not happy with the draft, you can use | 18257 | If for some reason you are not happy with the draft, you can use |
| @@ -18301,16 +18263,16 @@ delete the draft message. | |||
| 18301 | 18263 | ||
| 18302 | ;;;*** | 18264 | ;;;*** |
| 18303 | 18265 | ||
| 18304 | ;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (18104 24759)) | 18266 | ;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (18152 13227)) |
| 18305 | ;;; Generated autoloads from mh-e/mh-e.el | 18267 | ;;; Generated autoloads from mh-e/mh-e.el |
| 18306 | 18268 | ||
| 18307 | (put (quote mh-progs) (quote risky-local-variable) t) | 18269 | (put 'mh-progs 'risky-local-variable t) |
| 18308 | 18270 | ||
| 18309 | (put (quote mh-lib) (quote risky-local-variable) t) | 18271 | (put 'mh-lib 'risky-local-variable t) |
| 18310 | 18272 | ||
| 18311 | (put (quote mh-lib-progs) (quote risky-local-variable) t) | 18273 | (put 'mh-lib-progs 'risky-local-variable t) |
| 18312 | 18274 | ||
| 18313 | (autoload (quote mh-version) "mh-e" "\ | 18275 | (autoload 'mh-version "mh-e" "\ |
| 18314 | Display version information about MH-E and the MH mail handling system. | 18276 | Display version information about MH-E and the MH mail handling system. |
| 18315 | 18277 | ||
| 18316 | \(fn)" t nil) | 18278 | \(fn)" t nil) |
| @@ -18318,10 +18280,10 @@ Display version information about MH-E and the MH mail handling system. | |||
| 18318 | ;;;*** | 18280 | ;;;*** |
| 18319 | 18281 | ||
| 18320 | ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" | 18282 | ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" |
| 18321 | ;;;;;; "mh-e/mh-folder.el" (18104 24759)) | 18283 | ;;;;;; "mh-e/mh-folder.el" (18123 35153)) |
| 18322 | ;;; Generated autoloads from mh-e/mh-folder.el | 18284 | ;;; Generated autoloads from mh-e/mh-folder.el |
| 18323 | 18285 | ||
| 18324 | (autoload (quote mh-rmail) "mh-folder" "\ | 18286 | (autoload 'mh-rmail "mh-folder" "\ |
| 18325 | Incorporate new mail with MH. | 18287 | Incorporate new mail with MH. |
| 18326 | Scan an MH folder if ARG is non-nil. | 18288 | Scan an MH folder if ARG is non-nil. |
| 18327 | 18289 | ||
| @@ -18330,7 +18292,7 @@ the MH mail system. | |||
| 18330 | 18292 | ||
| 18331 | \(fn &optional ARG)" t nil) | 18293 | \(fn &optional ARG)" t nil) |
| 18332 | 18294 | ||
| 18333 | (autoload (quote mh-nmail) "mh-folder" "\ | 18295 | (autoload 'mh-nmail "mh-folder" "\ |
| 18334 | Check for new mail in inbox folder. | 18296 | Check for new mail in inbox folder. |
| 18335 | Scan an MH folder if ARG is non-nil. | 18297 | Scan an MH folder if ARG is non-nil. |
| 18336 | 18298 | ||
| @@ -18339,7 +18301,7 @@ the MH mail system. | |||
| 18339 | 18301 | ||
| 18340 | \(fn &optional ARG)" t nil) | 18302 | \(fn &optional ARG)" t nil) |
| 18341 | 18303 | ||
| 18342 | (autoload (quote mh-folder-mode) "mh-folder" "\ | 18304 | (autoload 'mh-folder-mode "mh-folder" "\ |
| 18343 | Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map> | 18305 | Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map> |
| 18344 | 18306 | ||
| 18345 | You can show the message the cursor is pointing to, and step through | 18307 | You can show the message the cursor is pointing to, and step through |
| @@ -18400,10 +18362,10 @@ perform the operation on all messages in that region. | |||
| 18400 | ;;;*** | 18362 | ;;;*** |
| 18401 | 18363 | ||
| 18402 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" | 18364 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" |
| 18403 | ;;;;;; "midnight.el" (18104 24738)) | 18365 | ;;;;;; "midnight.el" (18088 55086)) |
| 18404 | ;;; Generated autoloads from midnight.el | 18366 | ;;; Generated autoloads from midnight.el |
| 18405 | 18367 | ||
| 18406 | (autoload (quote clean-buffer-list) "midnight" "\ | 18368 | (autoload 'clean-buffer-list "midnight" "\ |
| 18407 | Kill old buffers that have not been displayed recently. | 18369 | Kill old buffers that have not been displayed recently. |
| 18408 | The relevant variables are `clean-buffer-list-delay-general', | 18370 | The relevant variables are `clean-buffer-list-delay-general', |
| 18409 | `clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names', | 18371 | `clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names', |
| @@ -18417,7 +18379,7 @@ lifetime, i.e., its \"age\" when it will be purged. | |||
| 18417 | 18379 | ||
| 18418 | \(fn)" t nil) | 18380 | \(fn)" t nil) |
| 18419 | 18381 | ||
| 18420 | (autoload (quote midnight-delay-set) "midnight" "\ | 18382 | (autoload 'midnight-delay-set "midnight" "\ |
| 18421 | Modify `midnight-timer' according to `midnight-delay'. | 18383 | Modify `midnight-timer' according to `midnight-delay'. |
| 18422 | Sets the first argument SYMB (which must be symbol `midnight-delay') | 18384 | Sets the first argument SYMB (which must be symbol `midnight-delay') |
| 18423 | to its second argument TM. | 18385 | to its second argument TM. |
| @@ -18427,7 +18389,7 @@ to its second argument TM. | |||
| 18427 | ;;;*** | 18389 | ;;;*** |
| 18428 | 18390 | ||
| 18429 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" | 18391 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" |
| 18430 | ;;;;;; "minibuf-eldef.el" (18104 24738)) | 18392 | ;;;;;; "minibuf-eldef.el" (18088 55087)) |
| 18431 | ;;; Generated autoloads from minibuf-eldef.el | 18393 | ;;; Generated autoloads from minibuf-eldef.el |
| 18432 | 18394 | ||
| 18433 | (defvar minibuffer-electric-default-mode nil "\ | 18395 | (defvar minibuffer-electric-default-mode nil "\ |
| @@ -18437,9 +18399,9 @@ Setting this variable directly does not take effect; | |||
| 18437 | either customize it (see the info node `Easy Customization') | 18399 | either customize it (see the info node `Easy Customization') |
| 18438 | or call the function `minibuffer-electric-default-mode'.") | 18400 | or call the function `minibuffer-electric-default-mode'.") |
| 18439 | 18401 | ||
| 18440 | (custom-autoload (quote minibuffer-electric-default-mode) "minibuf-eldef" nil) | 18402 | (custom-autoload 'minibuffer-electric-default-mode "minibuf-eldef" nil) |
| 18441 | 18403 | ||
| 18442 | (autoload (quote minibuffer-electric-default-mode) "minibuf-eldef" "\ | 18404 | (autoload 'minibuffer-electric-default-mode "minibuf-eldef" "\ |
| 18443 | Toggle Minibuffer Electric Default mode. | 18405 | Toggle Minibuffer Electric Default mode. |
| 18444 | When active, minibuffer prompts that show a default value only show the | 18406 | When active, minibuffer prompts that show a default value only show the |
| 18445 | default when it's applicable -- that is, when hitting RET would yield | 18407 | default when it's applicable -- that is, when hitting RET would yield |
| @@ -18455,35 +18417,35 @@ Returns non-nil if the new state is enabled. | |||
| 18455 | ;;;*** | 18417 | ;;;*** |
| 18456 | 18418 | ||
| 18457 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" | 18419 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" |
| 18458 | ;;;;;; (18104 24768)) | 18420 | ;;;;;; (18088 55117)) |
| 18459 | ;;; Generated autoloads from progmodes/mixal-mode.el | 18421 | ;;; Generated autoloads from progmodes/mixal-mode.el |
| 18460 | 18422 | ||
| 18461 | (autoload (quote mixal-mode) "mixal-mode" "\ | 18423 | (autoload 'mixal-mode "mixal-mode" "\ |
| 18462 | Major mode for the mixal asm language. | 18424 | Major mode for the mixal asm language. |
| 18463 | \\{mixal-mode-map} | 18425 | \\{mixal-mode-map} |
| 18464 | 18426 | ||
| 18465 | \(fn)" t nil) | 18427 | \(fn)" t nil) |
| 18466 | 18428 | ||
| 18467 | (add-to-list (quote auto-mode-alist) (quote ("\\.mixal\\'" . mixal-mode))) | 18429 | (add-to-list 'auto-mode-alist '("\\.mixal\\'" . mixal-mode)) |
| 18468 | 18430 | ||
| 18469 | ;;;*** | 18431 | ;;;*** |
| 18470 | 18432 | ||
| 18471 | ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion | 18433 | ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion |
| 18472 | ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" | 18434 | ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" |
| 18473 | ;;;;;; (18104 24758)) | 18435 | ;;;;;; (18088 55109)) |
| 18474 | ;;; Generated autoloads from language/mlm-util.el | 18436 | ;;; Generated autoloads from language/mlm-util.el |
| 18475 | 18437 | ||
| 18476 | (autoload (quote malayalam-compose-region) "mlm-util" "\ | 18438 | (autoload 'malayalam-compose-region "mlm-util" "\ |
| 18477 | Not documented | 18439 | Not documented |
| 18478 | 18440 | ||
| 18479 | \(fn FROM TO)" t nil) | 18441 | \(fn FROM TO)" t nil) |
| 18480 | 18442 | ||
| 18481 | (autoload (quote malayalam-post-read-conversion) "mlm-util" "\ | 18443 | (autoload 'malayalam-post-read-conversion "mlm-util" "\ |
| 18482 | Not documented | 18444 | Not documented |
| 18483 | 18445 | ||
| 18484 | \(fn LEN)" nil nil) | 18446 | \(fn LEN)" nil nil) |
| 18485 | 18447 | ||
| 18486 | (autoload (quote malayalam-composition-function) "mlm-util" "\ | 18448 | (autoload 'malayalam-composition-function "mlm-util" "\ |
| 18487 | Compose Malayalam characters in REGION, or STRING if specified. | 18449 | Compose Malayalam characters in REGION, or STRING if specified. |
| 18488 | Assume that the REGION or STRING must fully match the composable | 18450 | Assume that the REGION or STRING must fully match the composable |
| 18489 | PATTERN regexp. | 18451 | PATTERN regexp. |
| @@ -18493,15 +18455,15 @@ PATTERN regexp. | |||
| 18493 | ;;;*** | 18455 | ;;;*** |
| 18494 | 18456 | ||
| 18495 | ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) | 18457 | ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) |
| 18496 | ;;;;;; "mm-extern" "gnus/mm-extern.el" (18104 24752)) | 18458 | ;;;;;; "mm-extern" "gnus/mm-extern.el" (18088 55104)) |
| 18497 | ;;; Generated autoloads from gnus/mm-extern.el | 18459 | ;;; Generated autoloads from gnus/mm-extern.el |
| 18498 | 18460 | ||
| 18499 | (autoload (quote mm-extern-cache-contents) "mm-extern" "\ | 18461 | (autoload 'mm-extern-cache-contents "mm-extern" "\ |
| 18500 | Put the external-body part of HANDLE into its cache. | 18462 | Put the external-body part of HANDLE into its cache. |
| 18501 | 18463 | ||
| 18502 | \(fn HANDLE)" nil nil) | 18464 | \(fn HANDLE)" nil nil) |
| 18503 | 18465 | ||
| 18504 | (autoload (quote mm-inline-external-body) "mm-extern" "\ | 18466 | (autoload 'mm-inline-external-body "mm-extern" "\ |
| 18505 | Show the external-body part of HANDLE. | 18467 | Show the external-body part of HANDLE. |
| 18506 | This function replaces the buffer of HANDLE with a buffer contains | 18468 | This function replaces the buffer of HANDLE with a buffer contains |
| 18507 | the entire message. | 18469 | the entire message. |
| @@ -18512,10 +18474,10 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18512 | ;;;*** | 18474 | ;;;*** |
| 18513 | 18475 | ||
| 18514 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" | 18476 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" |
| 18515 | ;;;;;; (18104 24752)) | 18477 | ;;;;;; (18212 46007)) |
| 18516 | ;;; Generated autoloads from gnus/mm-partial.el | 18478 | ;;; Generated autoloads from gnus/mm-partial.el |
| 18517 | 18479 | ||
| 18518 | (autoload (quote mm-inline-partial) "mm-partial" "\ | 18480 | (autoload 'mm-inline-partial "mm-partial" "\ |
| 18519 | Show the partial part of HANDLE. | 18481 | Show the partial part of HANDLE. |
| 18520 | This function replaces the buffer of HANDLE with a buffer contains | 18482 | This function replaces the buffer of HANDLE with a buffer contains |
| 18521 | the entire message. | 18483 | the entire message. |
| @@ -18526,16 +18488,16 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18526 | ;;;*** | 18488 | ;;;*** |
| 18527 | 18489 | ||
| 18528 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) | 18490 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) |
| 18529 | ;;;;;; "mm-url" "gnus/mm-url.el" (18104 24752)) | 18491 | ;;;;;; "mm-url" "gnus/mm-url.el" (18212 46007)) |
| 18530 | ;;; Generated autoloads from gnus/mm-url.el | 18492 | ;;; Generated autoloads from gnus/mm-url.el |
| 18531 | 18493 | ||
| 18532 | (autoload (quote mm-url-insert-file-contents) "mm-url" "\ | 18494 | (autoload 'mm-url-insert-file-contents "mm-url" "\ |
| 18533 | Insert file contents of URL. | 18495 | Insert file contents of URL. |
| 18534 | If `mm-url-use-external' is non-nil, use `mm-url-program'. | 18496 | If `mm-url-use-external' is non-nil, use `mm-url-program'. |
| 18535 | 18497 | ||
| 18536 | \(fn URL)" nil nil) | 18498 | \(fn URL)" nil nil) |
| 18537 | 18499 | ||
| 18538 | (autoload (quote mm-url-insert-file-contents-external) "mm-url" "\ | 18500 | (autoload 'mm-url-insert-file-contents-external "mm-url" "\ |
| 18539 | Insert file contents of URL using `mm-url-program'. | 18501 | Insert file contents of URL using `mm-url-program'. |
| 18540 | 18502 | ||
| 18541 | \(fn URL)" nil nil) | 18503 | \(fn URL)" nil nil) |
| @@ -18543,10 +18505,10 @@ Insert file contents of URL using `mm-url-program'. | |||
| 18543 | ;;;*** | 18505 | ;;;*** |
| 18544 | 18506 | ||
| 18545 | ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" | 18507 | ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" |
| 18546 | ;;;;;; "gnus/mm-uu.el" (18104 24752)) | 18508 | ;;;;;; "gnus/mm-uu.el" (18212 46007)) |
| 18547 | ;;; Generated autoloads from gnus/mm-uu.el | 18509 | ;;; Generated autoloads from gnus/mm-uu.el |
| 18548 | 18510 | ||
| 18549 | (autoload (quote mm-uu-dissect) "mm-uu" "\ | 18511 | (autoload 'mm-uu-dissect "mm-uu" "\ |
| 18550 | Dissect the current buffer and return a list of uu handles. | 18512 | Dissect the current buffer and return a list of uu handles. |
| 18551 | The optional NOHEADER means there's no header in the buffer. | 18513 | The optional NOHEADER means there's no header in the buffer. |
| 18552 | MIME-TYPE specifies a MIME type and parameters, which defaults to the | 18514 | MIME-TYPE specifies a MIME type and parameters, which defaults to the |
| @@ -18554,7 +18516,7 @@ value of `mm-uu-text-plain-type'. | |||
| 18554 | 18516 | ||
| 18555 | \(fn &optional NOHEADER MIME-TYPE)" nil nil) | 18517 | \(fn &optional NOHEADER MIME-TYPE)" nil nil) |
| 18556 | 18518 | ||
| 18557 | (autoload (quote mm-uu-dissect-text-parts) "mm-uu" "\ | 18519 | (autoload 'mm-uu-dissect-text-parts "mm-uu" "\ |
| 18558 | Dissect text parts and put uu handles into HANDLE. | 18520 | Dissect text parts and put uu handles into HANDLE. |
| 18559 | Assume text has been decoded if DECODED is non-nil. | 18521 | Assume text has been decoded if DECODED is non-nil. |
| 18560 | 18522 | ||
| @@ -18563,15 +18525,15 @@ Assume text has been decoded if DECODED is non-nil. | |||
| 18563 | ;;;*** | 18525 | ;;;*** |
| 18564 | 18526 | ||
| 18565 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" | 18527 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" |
| 18566 | ;;;;;; (18104 24752)) | 18528 | ;;;;;; (18212 46007)) |
| 18567 | ;;; Generated autoloads from gnus/mml1991.el | 18529 | ;;; Generated autoloads from gnus/mml1991.el |
| 18568 | 18530 | ||
| 18569 | (autoload (quote mml1991-encrypt) "mml1991" "\ | 18531 | (autoload 'mml1991-encrypt "mml1991" "\ |
| 18570 | Not documented | 18532 | Not documented |
| 18571 | 18533 | ||
| 18572 | \(fn CONT &optional SIGN)" nil nil) | 18534 | \(fn CONT &optional SIGN)" nil nil) |
| 18573 | 18535 | ||
| 18574 | (autoload (quote mml1991-sign) "mml1991" "\ | 18536 | (autoload 'mml1991-sign "mml1991" "\ |
| 18575 | Not documented | 18537 | Not documented |
| 18576 | 18538 | ||
| 18577 | \(fn CONT)" nil nil) | 18539 | \(fn CONT)" nil nil) |
| @@ -18580,40 +18542,40 @@ Not documented | |||
| 18580 | 18542 | ||
| 18581 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt | 18543 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt |
| 18582 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) | 18544 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) |
| 18583 | ;;;;;; "mml2015" "gnus/mml2015.el" (18104 24752)) | 18545 | ;;;;;; "mml2015" "gnus/mml2015.el" (18212 46007)) |
| 18584 | ;;; Generated autoloads from gnus/mml2015.el | 18546 | ;;; Generated autoloads from gnus/mml2015.el |
| 18585 | 18547 | ||
| 18586 | (autoload (quote mml2015-decrypt) "mml2015" "\ | 18548 | (autoload 'mml2015-decrypt "mml2015" "\ |
| 18587 | Not documented | 18549 | Not documented |
| 18588 | 18550 | ||
| 18589 | \(fn HANDLE CTL)" nil nil) | 18551 | \(fn HANDLE CTL)" nil nil) |
| 18590 | 18552 | ||
| 18591 | (autoload (quote mml2015-decrypt-test) "mml2015" "\ | 18553 | (autoload 'mml2015-decrypt-test "mml2015" "\ |
| 18592 | Not documented | 18554 | Not documented |
| 18593 | 18555 | ||
| 18594 | \(fn HANDLE CTL)" nil nil) | 18556 | \(fn HANDLE CTL)" nil nil) |
| 18595 | 18557 | ||
| 18596 | (autoload (quote mml2015-verify) "mml2015" "\ | 18558 | (autoload 'mml2015-verify "mml2015" "\ |
| 18597 | Not documented | 18559 | Not documented |
| 18598 | 18560 | ||
| 18599 | \(fn HANDLE CTL)" nil nil) | 18561 | \(fn HANDLE CTL)" nil nil) |
| 18600 | 18562 | ||
| 18601 | (autoload (quote mml2015-verify-test) "mml2015" "\ | 18563 | (autoload 'mml2015-verify-test "mml2015" "\ |
| 18602 | Not documented | 18564 | Not documented |
| 18603 | 18565 | ||
| 18604 | \(fn HANDLE CTL)" nil nil) | 18566 | \(fn HANDLE CTL)" nil nil) |
| 18605 | 18567 | ||
| 18606 | (autoload (quote mml2015-encrypt) "mml2015" "\ | 18568 | (autoload 'mml2015-encrypt "mml2015" "\ |
| 18607 | Not documented | 18569 | Not documented |
| 18608 | 18570 | ||
| 18609 | \(fn CONT &optional SIGN)" nil nil) | 18571 | \(fn CONT &optional SIGN)" nil nil) |
| 18610 | 18572 | ||
| 18611 | (autoload (quote mml2015-sign) "mml2015" "\ | 18573 | (autoload 'mml2015-sign "mml2015" "\ |
| 18612 | Not documented | 18574 | Not documented |
| 18613 | 18575 | ||
| 18614 | \(fn CONT)" nil nil) | 18576 | \(fn CONT)" nil nil) |
| 18615 | 18577 | ||
| 18616 | (autoload (quote mml2015-self-encrypt) "mml2015" "\ | 18578 | (autoload 'mml2015-self-encrypt "mml2015" "\ |
| 18617 | Not documented | 18579 | Not documented |
| 18618 | 18580 | ||
| 18619 | \(fn)" nil nil) | 18581 | \(fn)" nil nil) |
| @@ -18621,10 +18583,10 @@ Not documented | |||
| 18621 | ;;;*** | 18583 | ;;;*** |
| 18622 | 18584 | ||
| 18623 | ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" | 18585 | ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" |
| 18624 | ;;;;;; (17279 21317)) | 18586 | ;;;;;; (18130 62049)) |
| 18625 | ;;; Generated autoloads from progmodes/modula2.el | 18587 | ;;; Generated autoloads from progmodes/modula2.el |
| 18626 | 18588 | ||
| 18627 | (autoload (quote modula-2-mode) "modula2" "\ | 18589 | (autoload 'modula-2-mode "modula2" "\ |
| 18628 | This is a mode intended to support program development in Modula-2. | 18590 | This is a mode intended to support program development in Modula-2. |
| 18629 | All control constructs of Modula-2 can be reached by typing C-c | 18591 | All control constructs of Modula-2 can be reached by typing C-c |
| 18630 | followed by the first character of the construct. | 18592 | followed by the first character of the construct. |
| @@ -18653,23 +18615,23 @@ followed by the first character of the construct. | |||
| 18653 | ;;;*** | 18615 | ;;;*** |
| 18654 | 18616 | ||
| 18655 | ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" | 18617 | ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" |
| 18656 | ;;;;;; (18104 24762)) | 18618 | ;;;;;; (18088 55114)) |
| 18657 | ;;; Generated autoloads from play/morse.el | 18619 | ;;; Generated autoloads from play/morse.el |
| 18658 | 18620 | ||
| 18659 | (autoload (quote morse-region) "morse" "\ | 18621 | (autoload 'morse-region "morse" "\ |
| 18660 | Convert all text in a given region to morse code. | 18622 | Convert all text in a given region to morse code. |
| 18661 | 18623 | ||
| 18662 | \(fn BEG END)" t nil) | 18624 | \(fn BEG END)" t nil) |
| 18663 | 18625 | ||
| 18664 | (autoload (quote unmorse-region) "morse" "\ | 18626 | (autoload 'unmorse-region "morse" "\ |
| 18665 | Convert morse coded text in region to ordinary ASCII text. | 18627 | Convert morse coded text in region to ordinary ASCII text. |
| 18666 | 18628 | ||
| 18667 | \(fn BEG END)" t nil) | 18629 | \(fn BEG END)" t nil) |
| 18668 | 18630 | ||
| 18669 | ;;;*** | 18631 | ;;;*** |
| 18670 | 18632 | ||
| 18671 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (18104 | 18633 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (18088 |
| 18672 | ;;;;;; 24738)) | 18634 | ;;;;;; 55087)) |
| 18673 | ;;; Generated autoloads from mouse-sel.el | 18635 | ;;; Generated autoloads from mouse-sel.el |
| 18674 | 18636 | ||
| 18675 | (defvar mouse-sel-mode nil "\ | 18637 | (defvar mouse-sel-mode nil "\ |
| @@ -18679,9 +18641,9 @@ Setting this variable directly does not take effect; | |||
| 18679 | either customize it (see the info node `Easy Customization') | 18641 | either customize it (see the info node `Easy Customization') |
| 18680 | or call the function `mouse-sel-mode'.") | 18642 | or call the function `mouse-sel-mode'.") |
| 18681 | 18643 | ||
| 18682 | (custom-autoload (quote mouse-sel-mode) "mouse-sel" nil) | 18644 | (custom-autoload 'mouse-sel-mode "mouse-sel" nil) |
| 18683 | 18645 | ||
| 18684 | (autoload (quote mouse-sel-mode) "mouse-sel" "\ | 18646 | (autoload 'mouse-sel-mode "mouse-sel" "\ |
| 18685 | Toggle Mouse Sel mode. | 18647 | Toggle Mouse Sel mode. |
| 18686 | With prefix ARG, turn Mouse Sel mode on if and only if ARG is positive. | 18648 | With prefix ARG, turn Mouse Sel mode on if and only if ARG is positive. |
| 18687 | Returns the new status of Mouse Sel mode (non-nil means on). | 18649 | Returns the new status of Mouse Sel mode (non-nil means on). |
| @@ -18721,17 +18683,17 @@ primary selection and region. | |||
| 18721 | 18683 | ||
| 18722 | ;;;*** | 18684 | ;;;*** |
| 18723 | 18685 | ||
| 18724 | ;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (18104 24762)) | 18686 | ;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (18088 55114)) |
| 18725 | ;;; Generated autoloads from play/mpuz.el | 18687 | ;;; Generated autoloads from play/mpuz.el |
| 18726 | 18688 | ||
| 18727 | (autoload (quote mpuz) "mpuz" "\ | 18689 | (autoload 'mpuz "mpuz" "\ |
| 18728 | Multiplication puzzle with GNU Emacs. | 18690 | Multiplication puzzle with GNU Emacs. |
| 18729 | 18691 | ||
| 18730 | \(fn)" t nil) | 18692 | \(fn)" t nil) |
| 18731 | 18693 | ||
| 18732 | ;;;*** | 18694 | ;;;*** |
| 18733 | 18695 | ||
| 18734 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (18104 24738)) | 18696 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (18211 32385)) |
| 18735 | ;;; Generated autoloads from msb.el | 18697 | ;;; Generated autoloads from msb.el |
| 18736 | 18698 | ||
| 18737 | (defvar msb-mode nil "\ | 18699 | (defvar msb-mode nil "\ |
| @@ -18741,9 +18703,9 @@ Setting this variable directly does not take effect; | |||
| 18741 | either customize it (see the info node `Easy Customization') | 18703 | either customize it (see the info node `Easy Customization') |
| 18742 | or call the function `msb-mode'.") | 18704 | or call the function `msb-mode'.") |
| 18743 | 18705 | ||
| 18744 | (custom-autoload (quote msb-mode) "msb" nil) | 18706 | (custom-autoload 'msb-mode "msb" nil) |
| 18745 | 18707 | ||
| 18746 | (autoload (quote msb-mode) "msb" "\ | 18708 | (autoload 'msb-mode "msb" "\ |
| 18747 | Toggle Msb mode. | 18709 | Toggle Msb mode. |
| 18748 | With arg, turn Msb mode on if and only if arg is positive. | 18710 | With arg, turn Msb mode on if and only if arg is positive. |
| 18749 | This mode overrides the binding(s) of `mouse-buffer-menu' to provide a | 18711 | This mode overrides the binding(s) of `mouse-buffer-menu' to provide a |
| @@ -18758,10 +18720,10 @@ different buffer menu using the function `msb'. | |||
| 18758 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly | 18720 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly |
| 18759 | ;;;;;; describe-coding-system describe-character-set list-charset-chars | 18721 | ;;;;;; describe-coding-system describe-character-set list-charset-chars |
| 18760 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" | 18722 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" |
| 18761 | ;;;;;; (18104 24757)) | 18723 | ;;;;;; (18173 8195)) |
| 18762 | ;;; Generated autoloads from international/mule-diag.el | 18724 | ;;; Generated autoloads from international/mule-diag.el |
| 18763 | 18725 | ||
| 18764 | (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))))) "\ | 18726 | (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)))) "\ |
| 18765 | Alist of charset names vs the corresponding information. | 18727 | Alist of charset names vs the corresponding information. |
| 18766 | This is mis-named for historical reasons. The charsets are actually | 18728 | This is mis-named for historical reasons. The charsets are actually |
| 18767 | non-built-in ones. They correspond to Emacs coding systems, not Emacs | 18729 | non-built-in ones. They correspond to Emacs coding systems, not Emacs |
| @@ -18792,7 +18754,7 @@ TO2, or... | |||
| 18792 | The second form is used for 2-byte codes. The car part is the ranges | 18754 | The second form is used for 2-byte codes. The car part is the ranges |
| 18793 | of the first byte, and the cdr part is the ranges of the second byte.") | 18755 | of the first byte, and the cdr part is the ranges of the second byte.") |
| 18794 | 18756 | ||
| 18795 | (autoload (quote list-character-sets) "mule-diag" "\ | 18757 | (autoload 'list-character-sets "mule-diag" "\ |
| 18796 | Display a list of all character sets. | 18758 | Display a list of all character sets. |
| 18797 | 18759 | ||
| 18798 | The ID-NUM column contains a charset identification number for | 18760 | The ID-NUM column contains a charset identification number for |
| @@ -18814,7 +18776,7 @@ but still shows the full information. | |||
| 18814 | 18776 | ||
| 18815 | \(fn ARG)" t nil) | 18777 | \(fn ARG)" t nil) |
| 18816 | 18778 | ||
| 18817 | (autoload (quote read-charset) "mule-diag" "\ | 18779 | (autoload 'read-charset "mule-diag" "\ |
| 18818 | Read a character set from the minibuffer, prompting with string PROMPT. | 18780 | Read a character set from the minibuffer, prompting with string PROMPT. |
| 18819 | It must be an Emacs character set listed in the variable `charset-list' | 18781 | It must be an Emacs character set listed in the variable `charset-list' |
| 18820 | or a non-ISO character set listed in the variable | 18782 | or a non-ISO character set listed in the variable |
| @@ -18828,7 +18790,7 @@ detailed meanings of these arguments. | |||
| 18828 | 18790 | ||
| 18829 | \(fn PROMPT &optional DEFAULT-VALUE INITIAL-INPUT)" nil nil) | 18791 | \(fn PROMPT &optional DEFAULT-VALUE INITIAL-INPUT)" nil nil) |
| 18830 | 18792 | ||
| 18831 | (autoload (quote list-charset-chars) "mule-diag" "\ | 18793 | (autoload 'list-charset-chars "mule-diag" "\ |
| 18832 | Display a list of characters in the specified character set. | 18794 | Display a list of characters in the specified character set. |
| 18833 | This can list both Emacs `official' (ISO standard) charsets and the | 18795 | This can list both Emacs `official' (ISO standard) charsets and the |
| 18834 | characters encoded by various Emacs coding systems which correspond to | 18796 | characters encoded by various Emacs coding systems which correspond to |
| @@ -18836,17 +18798,17 @@ PC `codepages' and other coded character sets. See `non-iso-charset-alist'. | |||
| 18836 | 18798 | ||
| 18837 | \(fn CHARSET)" t nil) | 18799 | \(fn CHARSET)" t nil) |
| 18838 | 18800 | ||
| 18839 | (autoload (quote describe-character-set) "mule-diag" "\ | 18801 | (autoload 'describe-character-set "mule-diag" "\ |
| 18840 | Display information about built-in character set CHARSET. | 18802 | Display information about built-in character set CHARSET. |
| 18841 | 18803 | ||
| 18842 | \(fn CHARSET)" t nil) | 18804 | \(fn CHARSET)" t nil) |
| 18843 | 18805 | ||
| 18844 | (autoload (quote describe-coding-system) "mule-diag" "\ | 18806 | (autoload 'describe-coding-system "mule-diag" "\ |
| 18845 | Display information about CODING-SYSTEM. | 18807 | Display information about CODING-SYSTEM. |
| 18846 | 18808 | ||
| 18847 | \(fn CODING-SYSTEM)" t nil) | 18809 | \(fn CODING-SYSTEM)" t nil) |
| 18848 | 18810 | ||
| 18849 | (autoload (quote describe-current-coding-system-briefly) "mule-diag" "\ | 18811 | (autoload 'describe-current-coding-system-briefly "mule-diag" "\ |
| 18850 | Display coding systems currently used in a brief format in echo area. | 18812 | Display coding systems currently used in a brief format in echo area. |
| 18851 | 18813 | ||
| 18852 | The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\", | 18814 | The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\", |
| @@ -18871,12 +18833,12 @@ in place of `..': | |||
| 18871 | 18833 | ||
| 18872 | \(fn)" t nil) | 18834 | \(fn)" t nil) |
| 18873 | 18835 | ||
| 18874 | (autoload (quote describe-current-coding-system) "mule-diag" "\ | 18836 | (autoload 'describe-current-coding-system "mule-diag" "\ |
| 18875 | Display coding systems currently used, in detail. | 18837 | Display coding systems currently used, in detail. |
| 18876 | 18838 | ||
| 18877 | \(fn)" t nil) | 18839 | \(fn)" t nil) |
| 18878 | 18840 | ||
| 18879 | (autoload (quote list-coding-systems) "mule-diag" "\ | 18841 | (autoload 'list-coding-systems "mule-diag" "\ |
| 18880 | Display a list of all coding systems. | 18842 | Display a list of all coding systems. |
| 18881 | This shows the mnemonic letter, name, and description of each coding system. | 18843 | This shows the mnemonic letter, name, and description of each coding system. |
| 18882 | 18844 | ||
| @@ -18885,24 +18847,24 @@ but still contains full information about each coding system. | |||
| 18885 | 18847 | ||
| 18886 | \(fn &optional ARG)" t nil) | 18848 | \(fn &optional ARG)" t nil) |
| 18887 | 18849 | ||
| 18888 | (autoload (quote list-coding-categories) "mule-diag" "\ | 18850 | (autoload 'list-coding-categories "mule-diag" "\ |
| 18889 | Display a list of all coding categories. | 18851 | Display a list of all coding categories. |
| 18890 | 18852 | ||
| 18891 | \(fn)" nil nil) | 18853 | \(fn)" nil nil) |
| 18892 | 18854 | ||
| 18893 | (autoload (quote describe-font) "mule-diag" "\ | 18855 | (autoload 'describe-font "mule-diag" "\ |
| 18894 | Display information about a font whose name is FONTNAME. | 18856 | Display information about a font whose name is FONTNAME. |
| 18895 | The font must be already used by Emacs. | 18857 | The font must be already used by Emacs. |
| 18896 | 18858 | ||
| 18897 | \(fn FONTNAME)" t nil) | 18859 | \(fn FONTNAME)" t nil) |
| 18898 | 18860 | ||
| 18899 | (autoload (quote describe-fontset) "mule-diag" "\ | 18861 | (autoload 'describe-fontset "mule-diag" "\ |
| 18900 | Display information about FONTSET. | 18862 | Display information about FONTSET. |
| 18901 | This shows which font is used for which character(s). | 18863 | This shows which font is used for which character(s). |
| 18902 | 18864 | ||
| 18903 | \(fn FONTSET)" t nil) | 18865 | \(fn FONTSET)" t nil) |
| 18904 | 18866 | ||
| 18905 | (autoload (quote list-fontsets) "mule-diag" "\ | 18867 | (autoload 'list-fontsets "mule-diag" "\ |
| 18906 | Display a list of all fontsets. | 18868 | Display a list of all fontsets. |
| 18907 | This shows the name, size, and style of each fontset. | 18869 | This shows the name, size, and style of each fontset. |
| 18908 | With prefix arg, also list the fonts contained in each fontset; | 18870 | With prefix arg, also list the fonts contained in each fontset; |
| @@ -18910,12 +18872,12 @@ see the function `describe-fontset' for the format of the list. | |||
| 18910 | 18872 | ||
| 18911 | \(fn ARG)" t nil) | 18873 | \(fn ARG)" t nil) |
| 18912 | 18874 | ||
| 18913 | (autoload (quote list-input-methods) "mule-diag" "\ | 18875 | (autoload 'list-input-methods "mule-diag" "\ |
| 18914 | Display information about all input methods. | 18876 | Display information about all input methods. |
| 18915 | 18877 | ||
| 18916 | \(fn)" t nil) | 18878 | \(fn)" t nil) |
| 18917 | 18879 | ||
| 18918 | (autoload (quote mule-diag) "mule-diag" "\ | 18880 | (autoload 'mule-diag "mule-diag" "\ |
| 18919 | Display diagnosis of the multilingual environment (Mule). | 18881 | Display diagnosis of the multilingual environment (Mule). |
| 18920 | 18882 | ||
| 18921 | This shows various information related to the current multilingual | 18883 | This shows various information related to the current multilingual |
| @@ -18932,16 +18894,16 @@ system which uses fontsets). | |||
| 18932 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion | 18894 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion |
| 18933 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist | 18895 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist |
| 18934 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) | 18896 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) |
| 18935 | ;;;;;; "mule-util" "international/mule-util.el" (18104 24757)) | 18897 | ;;;;;; "mule-util" "international/mule-util.el" (18088 55108)) |
| 18936 | ;;; Generated autoloads from international/mule-util.el | 18898 | ;;; Generated autoloads from international/mule-util.el |
| 18937 | 18899 | ||
| 18938 | (autoload (quote string-to-sequence) "mule-util" "\ | 18900 | (autoload 'string-to-sequence "mule-util" "\ |
| 18939 | Convert STRING to a sequence of TYPE which contains characters in STRING. | 18901 | Convert STRING to a sequence of TYPE which contains characters in STRING. |
| 18940 | TYPE should be `list' or `vector'. | 18902 | TYPE should be `list' or `vector'. |
| 18941 | 18903 | ||
| 18942 | \(fn STRING TYPE)" nil nil) | 18904 | \(fn STRING TYPE)" nil nil) |
| 18943 | 18905 | ||
| 18944 | (make-obsolete (quote string-to-sequence) "use `string-to-list' or `string-to-vector'." "22.1") | 18906 | (make-obsolete 'string-to-sequence "use `string-to-list' or `string-to-vector'." "22.1") |
| 18945 | 18907 | ||
| 18946 | (defsubst string-to-list (string) "\ | 18908 | (defsubst string-to-list (string) "\ |
| 18947 | Return a list of characters in STRING." (append string nil)) | 18909 | Return a list of characters in STRING." (append string nil)) |
| @@ -18949,12 +18911,12 @@ Return a list of characters in STRING." (append string nil)) | |||
| 18949 | (defsubst string-to-vector (string) "\ | 18911 | (defsubst string-to-vector (string) "\ |
| 18950 | Return a vector of characters in STRING." (vconcat string)) | 18912 | Return a vector of characters in STRING." (vconcat string)) |
| 18951 | 18913 | ||
| 18952 | (autoload (quote store-substring) "mule-util" "\ | 18914 | (autoload 'store-substring "mule-util" "\ |
| 18953 | Embed OBJ (string or character) at index IDX of STRING. | 18915 | Embed OBJ (string or character) at index IDX of STRING. |
| 18954 | 18916 | ||
| 18955 | \(fn STRING IDX OBJ)" nil nil) | 18917 | \(fn STRING IDX OBJ)" nil nil) |
| 18956 | 18918 | ||
| 18957 | (autoload (quote truncate-string-to-width) "mule-util" "\ | 18919 | (autoload 'truncate-string-to-width "mule-util" "\ |
| 18958 | Truncate string STR to end at column END-COLUMN. | 18920 | Truncate string STR to end at column END-COLUMN. |
| 18959 | The optional 3rd arg START-COLUMN, if non-nil, specifies the starting | 18921 | The optional 3rd arg START-COLUMN, if non-nil, specifies the starting |
| 18960 | column; that means to return the characters occupying columns | 18922 | column; that means to return the characters occupying columns |
| @@ -18991,7 +18953,7 @@ You can use a nested alist to store any Lisp object (ENTRY) for a key | |||
| 18991 | sequence KEYSEQ, where KEYSEQ is a sequence of KEY-ELEMENT. KEYSEQ | 18953 | sequence KEYSEQ, where KEYSEQ is a sequence of KEY-ELEMENT. KEYSEQ |
| 18992 | can be a string, a vector, or a list." (and obj (listp obj) (listp (cdr obj)))) | 18954 | can be a string, a vector, or a list." (and obj (listp obj) (listp (cdr obj)))) |
| 18993 | 18955 | ||
| 18994 | (autoload (quote set-nested-alist) "mule-util" "\ | 18956 | (autoload 'set-nested-alist "mule-util" "\ |
| 18995 | Set ENTRY for KEYSEQ in a nested alist ALIST. | 18957 | Set ENTRY for KEYSEQ in a nested alist ALIST. |
| 18996 | Optional 4th arg LEN non-nil means the first LEN elements in KEYSEQ | 18958 | Optional 4th arg LEN non-nil means the first LEN elements in KEYSEQ |
| 18997 | is considered. | 18959 | is considered. |
| @@ -19001,7 +18963,7 @@ See the documentation of `nested-alist-p' for more detail. | |||
| 19001 | 18963 | ||
| 19002 | \(fn KEYSEQ ENTRY ALIST &optional LEN BRANCHES)" nil nil) | 18964 | \(fn KEYSEQ ENTRY ALIST &optional LEN BRANCHES)" nil nil) |
| 19003 | 18965 | ||
| 19004 | (autoload (quote lookup-nested-alist) "mule-util" "\ | 18966 | (autoload 'lookup-nested-alist "mule-util" "\ |
| 19005 | Look up key sequence KEYSEQ in nested alist ALIST. Return the definition. | 18967 | Look up key sequence KEYSEQ in nested alist ALIST. Return the definition. |
| 19006 | Optional 1st argument LEN specifies the length of KEYSEQ. | 18968 | Optional 1st argument LEN specifies the length of KEYSEQ. |
| 19007 | Optional 2nd argument START specifies index of the starting key. | 18969 | Optional 2nd argument START specifies index of the starting key. |
| @@ -19015,41 +18977,41 @@ Optional 3rd argument NIL-FOR-TOO-LONG non-nil means return nil | |||
| 19015 | 18977 | ||
| 19016 | \(fn KEYSEQ ALIST &optional LEN START NIL-FOR-TOO-LONG)" nil nil) | 18978 | \(fn KEYSEQ ALIST &optional LEN START NIL-FOR-TOO-LONG)" nil nil) |
| 19017 | 18979 | ||
| 19018 | (autoload (quote coding-system-post-read-conversion) "mule-util" "\ | 18980 | (autoload 'coding-system-post-read-conversion "mule-util" "\ |
| 19019 | Return the value of CODING-SYSTEM's `post-read-conversion' property. | 18981 | Return the value of CODING-SYSTEM's `post-read-conversion' property. |
| 19020 | 18982 | ||
| 19021 | \(fn CODING-SYSTEM)" nil nil) | 18983 | \(fn CODING-SYSTEM)" nil nil) |
| 19022 | 18984 | ||
| 19023 | (autoload (quote coding-system-pre-write-conversion) "mule-util" "\ | 18985 | (autoload 'coding-system-pre-write-conversion "mule-util" "\ |
| 19024 | Return the value of CODING-SYSTEM's `pre-write-conversion' property. | 18986 | Return the value of CODING-SYSTEM's `pre-write-conversion' property. |
| 19025 | 18987 | ||
| 19026 | \(fn CODING-SYSTEM)" nil nil) | 18988 | \(fn CODING-SYSTEM)" nil nil) |
| 19027 | 18989 | ||
| 19028 | (autoload (quote coding-system-translation-table-for-decode) "mule-util" "\ | 18990 | (autoload 'coding-system-translation-table-for-decode "mule-util" "\ |
| 19029 | Return the value of CODING-SYSTEM's `translation-table-for-decode' property. | 18991 | Return the value of CODING-SYSTEM's `translation-table-for-decode' property. |
| 19030 | 18992 | ||
| 19031 | \(fn CODING-SYSTEM)" nil nil) | 18993 | \(fn CODING-SYSTEM)" nil nil) |
| 19032 | 18994 | ||
| 19033 | (autoload (quote coding-system-translation-table-for-encode) "mule-util" "\ | 18995 | (autoload 'coding-system-translation-table-for-encode "mule-util" "\ |
| 19034 | Return the value of CODING-SYSTEM's `translation-table-for-encode' property. | 18996 | Return the value of CODING-SYSTEM's `translation-table-for-encode' property. |
| 19035 | 18997 | ||
| 19036 | \(fn CODING-SYSTEM)" nil nil) | 18998 | \(fn CODING-SYSTEM)" nil nil) |
| 19037 | 18999 | ||
| 19038 | (autoload (quote detect-coding-with-priority) "mule-util" "\ | 19000 | (autoload 'detect-coding-with-priority "mule-util" "\ |
| 19039 | Detect a coding system of the text between FROM and TO with PRIORITY-LIST. | 19001 | Detect a coding system of the text between FROM and TO with PRIORITY-LIST. |
| 19040 | PRIORITY-LIST is an alist of coding categories vs the corresponding | 19002 | PRIORITY-LIST is an alist of coding categories vs the corresponding |
| 19041 | coding systems ordered by priority. | 19003 | coding systems ordered by priority. |
| 19042 | 19004 | ||
| 19043 | \(fn FROM TO PRIORITY-LIST)" nil (quote macro)) | 19005 | \(fn FROM TO PRIORITY-LIST)" nil (quote macro)) |
| 19044 | 19006 | ||
| 19045 | (autoload (quote detect-coding-with-language-environment) "mule-util" "\ | 19007 | (autoload 'detect-coding-with-language-environment "mule-util" "\ |
| 19046 | Detect a coding system of the text between FROM and TO with LANG-ENV. | 19008 | Detect a coding system of the text between FROM and TO with LANG-ENV. |
| 19047 | The detection takes into account the coding system priorities for the | 19009 | The detection takes into account the coding system priorities for the |
| 19048 | language environment LANG-ENV. | 19010 | language environment LANG-ENV. |
| 19049 | 19011 | ||
| 19050 | \(fn FROM TO LANG-ENV)" nil nil) | 19012 | \(fn FROM TO LANG-ENV)" nil nil) |
| 19051 | 19013 | ||
| 19052 | (autoload (quote char-displayable-p) "mule-util" "\ | 19014 | (autoload 'char-displayable-p "mule-util" "\ |
| 19053 | Return non-nil if we should be able to display CHAR. | 19015 | Return non-nil if we should be able to display CHAR. |
| 19054 | On a multi-font display, the test is only whether there is an | 19016 | On a multi-font display, the test is only whether there is an |
| 19055 | appropriate font from the selected frame's fontset to display CHAR's | 19017 | appropriate font from the selected frame's fontset to display CHAR's |
| @@ -19061,7 +19023,7 @@ basis, this may not be accurate. | |||
| 19061 | ;;;*** | 19023 | ;;;*** |
| 19062 | 19024 | ||
| 19063 | ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" | 19025 | ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" |
| 19064 | ;;;;;; (18104 24738)) | 19026 | ;;;;;; (18088 55087)) |
| 19065 | ;;; Generated autoloads from mwheel.el | 19027 | ;;; Generated autoloads from mwheel.el |
| 19066 | 19028 | ||
| 19067 | (defvar mouse-wheel-mode nil "\ | 19029 | (defvar mouse-wheel-mode nil "\ |
| @@ -19071,16 +19033,16 @@ Setting this variable directly does not take effect; | |||
| 19071 | either customize it (see the info node `Easy Customization') | 19033 | either customize it (see the info node `Easy Customization') |
| 19072 | or call the function `mouse-wheel-mode'.") | 19034 | or call the function `mouse-wheel-mode'.") |
| 19073 | 19035 | ||
| 19074 | (custom-autoload (quote mouse-wheel-mode) "mwheel" nil) | 19036 | (custom-autoload 'mouse-wheel-mode "mwheel" nil) |
| 19075 | 19037 | ||
| 19076 | (autoload (quote mouse-wheel-mode) "mwheel" "\ | 19038 | (autoload 'mouse-wheel-mode "mwheel" "\ |
| 19077 | Toggle mouse wheel support. | 19039 | Toggle mouse wheel support. |
| 19078 | With prefix argument ARG, turn on if positive, otherwise off. | 19040 | With prefix argument ARG, turn on if positive, otherwise off. |
| 19079 | Return non-nil if the new state is enabled. | 19041 | Return non-nil if the new state is enabled. |
| 19080 | 19042 | ||
| 19081 | \(fn &optional ARG)" t nil) | 19043 | \(fn &optional ARG)" t nil) |
| 19082 | 19044 | ||
| 19083 | (autoload (quote mwheel-install) "mwheel" "\ | 19045 | (autoload 'mwheel-install "mwheel" "\ |
| 19084 | Enable mouse wheel support. | 19046 | Enable mouse wheel support. |
| 19085 | 19047 | ||
| 19086 | \(fn &optional UNINSTALL)" nil nil) | 19048 | \(fn &optional UNINSTALL)" nil nil) |
| @@ -19090,91 +19052,91 @@ Enable mouse wheel support. | |||
| 19090 | ;;;### (autoloads (network-connection network-connection-to-service | 19052 | ;;;### (autoloads (network-connection network-connection-to-service |
| 19091 | ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host | 19053 | ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host |
| 19092 | ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) | 19054 | ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) |
| 19093 | ;;;;;; "net-utils" "net/net-utils.el" (18104 24760)) | 19055 | ;;;;;; "net-utils" "net/net-utils.el" (18088 55112)) |
| 19094 | ;;; Generated autoloads from net/net-utils.el | 19056 | ;;; Generated autoloads from net/net-utils.el |
| 19095 | 19057 | ||
| 19096 | (autoload (quote traceroute) "net-utils" "\ | 19058 | (autoload 'traceroute "net-utils" "\ |
| 19097 | Run traceroute program for TARGET. | 19059 | Run traceroute program for TARGET. |
| 19098 | 19060 | ||
| 19099 | \(fn TARGET)" t nil) | 19061 | \(fn TARGET)" t nil) |
| 19100 | 19062 | ||
| 19101 | (autoload (quote ping) "net-utils" "\ | 19063 | (autoload 'ping "net-utils" "\ |
| 19102 | Ping HOST. | 19064 | Ping HOST. |
| 19103 | If your system's ping continues until interrupted, you can try setting | 19065 | If your system's ping continues until interrupted, you can try setting |
| 19104 | `ping-program-options'. | 19066 | `ping-program-options'. |
| 19105 | 19067 | ||
| 19106 | \(fn HOST)" t nil) | 19068 | \(fn HOST)" t nil) |
| 19107 | 19069 | ||
| 19108 | (autoload (quote ipconfig) "net-utils" "\ | 19070 | (autoload 'ipconfig "net-utils" "\ |
| 19109 | Run ipconfig program. | 19071 | Run ipconfig program. |
| 19110 | 19072 | ||
| 19111 | \(fn)" t nil) | 19073 | \(fn)" t nil) |
| 19112 | 19074 | ||
| 19113 | (defalias (quote ifconfig) (quote ipconfig)) | 19075 | (defalias 'ifconfig 'ipconfig) |
| 19114 | 19076 | ||
| 19115 | (autoload (quote netstat) "net-utils" "\ | 19077 | (autoload 'netstat "net-utils" "\ |
| 19116 | Run netstat program. | 19078 | Run netstat program. |
| 19117 | 19079 | ||
| 19118 | \(fn)" t nil) | 19080 | \(fn)" t nil) |
| 19119 | 19081 | ||
| 19120 | (autoload (quote arp) "net-utils" "\ | 19082 | (autoload 'arp "net-utils" "\ |
| 19121 | Run the arp program. | 19083 | Run the arp program. |
| 19122 | 19084 | ||
| 19123 | \(fn)" t nil) | 19085 | \(fn)" t nil) |
| 19124 | 19086 | ||
| 19125 | (autoload (quote route) "net-utils" "\ | 19087 | (autoload 'route "net-utils" "\ |
| 19126 | Run the route program. | 19088 | Run the route program. |
| 19127 | 19089 | ||
| 19128 | \(fn)" t nil) | 19090 | \(fn)" t nil) |
| 19129 | 19091 | ||
| 19130 | (autoload (quote nslookup-host) "net-utils" "\ | 19092 | (autoload 'nslookup-host "net-utils" "\ |
| 19131 | Lookup the DNS information for HOST. | 19093 | Lookup the DNS information for HOST. |
| 19132 | 19094 | ||
| 19133 | \(fn HOST)" t nil) | 19095 | \(fn HOST)" t nil) |
| 19134 | 19096 | ||
| 19135 | (autoload (quote nslookup) "net-utils" "\ | 19097 | (autoload 'nslookup "net-utils" "\ |
| 19136 | Run nslookup program. | 19098 | Run nslookup program. |
| 19137 | 19099 | ||
| 19138 | \(fn)" t nil) | 19100 | \(fn)" t nil) |
| 19139 | 19101 | ||
| 19140 | (autoload (quote dns-lookup-host) "net-utils" "\ | 19102 | (autoload 'dns-lookup-host "net-utils" "\ |
| 19141 | Lookup the DNS information for HOST (name or IP address). | 19103 | Lookup the DNS information for HOST (name or IP address). |
| 19142 | 19104 | ||
| 19143 | \(fn HOST)" t nil) | 19105 | \(fn HOST)" t nil) |
| 19144 | 19106 | ||
| 19145 | (autoload (quote run-dig) "net-utils" "\ | 19107 | (autoload 'run-dig "net-utils" "\ |
| 19146 | Run dig program. | 19108 | Run dig program. |
| 19147 | 19109 | ||
| 19148 | \(fn HOST)" t nil) | 19110 | \(fn HOST)" t nil) |
| 19149 | 19111 | ||
| 19150 | (autoload (quote ftp) "net-utils" "\ | 19112 | (autoload 'ftp "net-utils" "\ |
| 19151 | Run ftp program. | 19113 | Run ftp program. |
| 19152 | 19114 | ||
| 19153 | \(fn HOST)" t nil) | 19115 | \(fn HOST)" t nil) |
| 19154 | 19116 | ||
| 19155 | (autoload (quote finger) "net-utils" "\ | 19117 | (autoload 'finger "net-utils" "\ |
| 19156 | Finger USER on HOST. | 19118 | Finger USER on HOST. |
| 19157 | 19119 | ||
| 19158 | \(fn USER HOST)" t nil) | 19120 | \(fn USER HOST)" t nil) |
| 19159 | 19121 | ||
| 19160 | (autoload (quote whois) "net-utils" "\ | 19122 | (autoload 'whois "net-utils" "\ |
| 19161 | Send SEARCH-STRING to server defined by the `whois-server-name' variable. | 19123 | Send SEARCH-STRING to server defined by the `whois-server-name' variable. |
| 19162 | If `whois-guess-server' is non-nil, then try to deduce the correct server | 19124 | If `whois-guess-server' is non-nil, then try to deduce the correct server |
| 19163 | from SEARCH-STRING. With argument, prompt for whois server. | 19125 | from SEARCH-STRING. With argument, prompt for whois server. |
| 19164 | 19126 | ||
| 19165 | \(fn ARG SEARCH-STRING)" t nil) | 19127 | \(fn ARG SEARCH-STRING)" t nil) |
| 19166 | 19128 | ||
| 19167 | (autoload (quote whois-reverse-lookup) "net-utils" "\ | 19129 | (autoload 'whois-reverse-lookup "net-utils" "\ |
| 19168 | Not documented | 19130 | Not documented |
| 19169 | 19131 | ||
| 19170 | \(fn)" t nil) | 19132 | \(fn)" t nil) |
| 19171 | 19133 | ||
| 19172 | (autoload (quote network-connection-to-service) "net-utils" "\ | 19134 | (autoload 'network-connection-to-service "net-utils" "\ |
| 19173 | Open a network connection to SERVICE on HOST. | 19135 | Open a network connection to SERVICE on HOST. |
| 19174 | 19136 | ||
| 19175 | \(fn HOST SERVICE)" t nil) | 19137 | \(fn HOST SERVICE)" t nil) |
| 19176 | 19138 | ||
| 19177 | (autoload (quote network-connection) "net-utils" "\ | 19139 | (autoload 'network-connection "net-utils" "\ |
| 19178 | Open a network connection to HOST on PORT. | 19140 | Open a network connection to HOST on PORT. |
| 19179 | 19141 | ||
| 19180 | \(fn HOST PORT)" t nil) | 19142 | \(fn HOST PORT)" t nil) |
| @@ -19186,18 +19148,18 @@ Open a network connection to HOST on PORT. | |||
| 19186 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent | 19148 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent |
| 19187 | ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line | 19149 | ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line |
| 19188 | ;;;;;; comment-padding comment-style comment-column) "newcomment" | 19150 | ;;;;;; comment-padding comment-style comment-column) "newcomment" |
| 19189 | ;;;;;; "newcomment.el" (18104 24738)) | 19151 | ;;;;;; "newcomment.el" (18210 13714)) |
| 19190 | ;;; Generated autoloads from newcomment.el | 19152 | ;;; Generated autoloads from newcomment.el |
| 19191 | 19153 | ||
| 19192 | (defalias (quote indent-for-comment) (quote comment-indent)) | 19154 | (defalias 'indent-for-comment 'comment-indent) |
| 19193 | 19155 | ||
| 19194 | (defalias (quote set-comment-column) (quote comment-set-column)) | 19156 | (defalias 'set-comment-column 'comment-set-column) |
| 19195 | 19157 | ||
| 19196 | (defalias (quote kill-comment) (quote comment-kill)) | 19158 | (defalias 'kill-comment 'comment-kill) |
| 19197 | 19159 | ||
| 19198 | (defalias (quote indent-new-comment-line) (quote comment-indent-new-line)) | 19160 | (defalias 'indent-new-comment-line 'comment-indent-new-line) |
| 19199 | 19161 | ||
| 19200 | (defvar comment-use-syntax (quote undecided) "\ | 19162 | (defvar comment-use-syntax 'undecided "\ |
| 19201 | Non-nil if syntax-tables can be used instead of regexps. | 19163 | Non-nil if syntax-tables can be used instead of regexps. |
| 19202 | Can also be `undecided' which means that a somewhat expensive test will | 19164 | Can also be `undecided' which means that a somewhat expensive test will |
| 19203 | be used to try to determine whether syntax-tables should be trusted | 19165 | be used to try to determine whether syntax-tables should be trusted |
| @@ -19211,7 +19173,7 @@ can set the value for a particular mode using that mode's hook. | |||
| 19211 | Comments might be indented to a different value in order not to go beyond | 19173 | Comments might be indented to a different value in order not to go beyond |
| 19212 | `comment-fill-column' or in order to align them with surrounding comments.") | 19174 | `comment-fill-column' or in order to align them with surrounding comments.") |
| 19213 | 19175 | ||
| 19214 | (custom-autoload (quote comment-column) "newcomment" t) | 19176 | (custom-autoload 'comment-column "newcomment" t) |
| 19215 | (put 'comment-column 'safe-local-variable 'integerp) | 19177 | (put 'comment-column 'safe-local-variable 'integerp) |
| 19216 | 19178 | ||
| 19217 | (defvar comment-start nil "\ | 19179 | (defvar comment-start nil "\ |
| @@ -19233,7 +19195,7 @@ Regexp to match the end of a comment plus everything up to its body.") | |||
| 19233 | Should be an empty string if comments are terminated by end-of-line.") | 19195 | Should be an empty string if comments are terminated by end-of-line.") |
| 19234 | (put 'comment-end 'safe-local-variable 'string-or-null-p) | 19196 | (put 'comment-end 'safe-local-variable 'string-or-null-p) |
| 19235 | 19197 | ||
| 19236 | (defvar comment-indent-function (quote comment-indent-default) "\ | 19198 | (defvar comment-indent-function 'comment-indent-default "\ |
| 19237 | Function to compute desired indentation for a comment. | 19199 | Function to compute desired indentation for a comment. |
| 19238 | This function is called with no args with point at the beginning of | 19200 | This function is called with no args with point at the beginning of |
| 19239 | the comment's starting delimiter and should return either the desired | 19201 | the comment's starting delimiter and should return either the desired |
| @@ -19247,11 +19209,11 @@ The function has no args. | |||
| 19247 | Applicable at least in modes for languages like fixed-format Fortran where | 19209 | Applicable at least in modes for languages like fixed-format Fortran where |
| 19248 | comments always start in column zero.") | 19210 | comments always start in column zero.") |
| 19249 | 19211 | ||
| 19250 | (defvar comment-style (quote plain) "\ | 19212 | (defvar comment-style 'indent-or-triple "\ |
| 19251 | Style to be used for `comment-region'. | 19213 | Style to be used for `comment-region'. |
| 19252 | See `comment-styles' for a list of available styles.") | 19214 | See `comment-styles' for a list of available styles.") |
| 19253 | 19215 | ||
| 19254 | (custom-autoload (quote comment-style) "newcomment" t) | 19216 | (custom-autoload 'comment-style "newcomment" t) |
| 19255 | 19217 | ||
| 19256 | (defvar comment-padding " " "\ | 19218 | (defvar comment-padding " " "\ |
| 19257 | Padding string that `comment-region' puts between comment chars and text. | 19219 | Padding string that `comment-region' puts between comment chars and text. |
| @@ -19261,7 +19223,7 @@ of the corresponding number of spaces. | |||
| 19261 | Extra spacing between the comment characters and the comment text | 19223 | Extra spacing between the comment characters and the comment text |
| 19262 | makes the comment easier to read. Default is 1. nil means 0.") | 19224 | makes the comment easier to read. Default is 1. nil means 0.") |
| 19263 | 19225 | ||
| 19264 | (custom-autoload (quote comment-padding) "newcomment" t) | 19226 | (custom-autoload 'comment-padding "newcomment" t) |
| 19265 | 19227 | ||
| 19266 | (defvar comment-multi-line nil "\ | 19228 | (defvar comment-multi-line nil "\ |
| 19267 | Non-nil means `comment-indent-new-line' continues comments. | 19229 | Non-nil means `comment-indent-new-line' continues comments. |
| @@ -19272,9 +19234,9 @@ customize this variable. | |||
| 19272 | It also affects \\[indent-new-comment-line]. However, if you want this | 19234 | It also affects \\[indent-new-comment-line]. However, if you want this |
| 19273 | behavior for explicit filling, you might as well use \\[newline-and-indent].") | 19235 | behavior for explicit filling, you might as well use \\[newline-and-indent].") |
| 19274 | 19236 | ||
| 19275 | (custom-autoload (quote comment-multi-line) "newcomment" t) | 19237 | (custom-autoload 'comment-multi-line "newcomment" t) |
| 19276 | 19238 | ||
| 19277 | (autoload (quote comment-normalize-vars) "newcomment" "\ | 19239 | (autoload 'comment-normalize-vars "newcomment" "\ |
| 19278 | Check and setup the variables needed by other commenting functions. | 19240 | Check and setup the variables needed by other commenting functions. |
| 19279 | Functions autoloaded from newcomment.el, being entry points, should call | 19241 | Functions autoloaded from newcomment.el, being entry points, should call |
| 19280 | this function before any other, so the rest of the code can assume that | 19242 | this function before any other, so the rest of the code can assume that |
| @@ -19282,18 +19244,18 @@ the variables are properly set. | |||
| 19282 | 19244 | ||
| 19283 | \(fn &optional NOERROR)" nil nil) | 19245 | \(fn &optional NOERROR)" nil nil) |
| 19284 | 19246 | ||
| 19285 | (autoload (quote comment-indent-default) "newcomment" "\ | 19247 | (autoload 'comment-indent-default "newcomment" "\ |
| 19286 | Default for `comment-indent-function'. | 19248 | Default for `comment-indent-function'. |
| 19287 | 19249 | ||
| 19288 | \(fn)" nil nil) | 19250 | \(fn)" nil nil) |
| 19289 | 19251 | ||
| 19290 | (autoload (quote comment-indent) "newcomment" "\ | 19252 | (autoload 'comment-indent "newcomment" "\ |
| 19291 | Indent this line's comment to `comment-column', or insert an empty comment. | 19253 | Indent this line's comment to `comment-column', or insert an empty comment. |
| 19292 | If CONTINUE is non-nil, use the `comment-continue' markers if any. | 19254 | If CONTINUE is non-nil, use the `comment-continue' markers if any. |
| 19293 | 19255 | ||
| 19294 | \(fn &optional CONTINUE)" t nil) | 19256 | \(fn &optional CONTINUE)" t nil) |
| 19295 | 19257 | ||
| 19296 | (autoload (quote comment-set-column) "newcomment" "\ | 19258 | (autoload 'comment-set-column "newcomment" "\ |
| 19297 | Set the comment column based on point. | 19259 | Set the comment column based on point. |
| 19298 | With no ARG, set the comment column to the current column. | 19260 | With no ARG, set the comment column to the current column. |
| 19299 | With just minus as arg, kill any comment on this line. | 19261 | With just minus as arg, kill any comment on this line. |
| @@ -19302,20 +19264,20 @@ With any other arg, set comment column to indentation of the previous comment | |||
| 19302 | 19264 | ||
| 19303 | \(fn ARG)" t nil) | 19265 | \(fn ARG)" t nil) |
| 19304 | 19266 | ||
| 19305 | (autoload (quote comment-kill) "newcomment" "\ | 19267 | (autoload 'comment-kill "newcomment" "\ |
| 19306 | Kill the comment on this line, if any. | 19268 | Kill the comment on this line, if any. |
| 19307 | With prefix ARG, kill comments on that many lines starting with this one. | 19269 | With prefix ARG, kill comments on that many lines starting with this one. |
| 19308 | 19270 | ||
| 19309 | \(fn ARG)" t nil) | 19271 | \(fn ARG)" t nil) |
| 19310 | 19272 | ||
| 19311 | (autoload (quote uncomment-region) "newcomment" "\ | 19273 | (autoload 'uncomment-region "newcomment" "\ |
| 19312 | Uncomment each line in the BEG .. END region. | 19274 | Uncomment each line in the BEG .. END region. |
| 19313 | The numeric prefix ARG can specify a number of chars to remove from the | 19275 | The numeric prefix ARG can specify a number of chars to remove from the |
| 19314 | comment markers. | 19276 | comment markers. |
| 19315 | 19277 | ||
| 19316 | \(fn BEG END &optional ARG)" t nil) | 19278 | \(fn BEG END &optional ARG)" t nil) |
| 19317 | 19279 | ||
| 19318 | (autoload (quote comment-region) "newcomment" "\ | 19280 | (autoload 'comment-region "newcomment" "\ |
| 19319 | Comment or uncomment each line in the region. | 19281 | Comment or uncomment each line in the region. |
| 19320 | With just \\[universal-argument] prefix arg, uncomment each line in region BEG .. END. | 19282 | With just \\[universal-argument] prefix arg, uncomment each line in region BEG .. END. |
| 19321 | Numeric prefix ARG means use ARG comment characters. | 19283 | Numeric prefix ARG means use ARG comment characters. |
| @@ -19329,21 +19291,21 @@ The strings used as comment starts are built from | |||
| 19329 | 19291 | ||
| 19330 | \(fn BEG END &optional ARG)" t nil) | 19292 | \(fn BEG END &optional ARG)" t nil) |
| 19331 | 19293 | ||
| 19332 | (autoload (quote comment-box) "newcomment" "\ | 19294 | (autoload 'comment-box "newcomment" "\ |
| 19333 | Comment out the BEG .. END region, putting it inside a box. | 19295 | Comment out the BEG .. END region, putting it inside a box. |
| 19334 | The numeric prefix ARG specifies how many characters to add to begin- and | 19296 | The numeric prefix ARG specifies how many characters to add to begin- and |
| 19335 | end- comment markers additionally to what `comment-add' already specifies. | 19297 | end- comment markers additionally to what `comment-add' already specifies. |
| 19336 | 19298 | ||
| 19337 | \(fn BEG END &optional ARG)" t nil) | 19299 | \(fn BEG END &optional ARG)" t nil) |
| 19338 | 19300 | ||
| 19339 | (autoload (quote comment-or-uncomment-region) "newcomment" "\ | 19301 | (autoload 'comment-or-uncomment-region "newcomment" "\ |
| 19340 | Call `comment-region', unless the region only consists of comments, | 19302 | Call `comment-region', unless the region only consists of comments, |
| 19341 | in which case call `uncomment-region'. If a prefix arg is given, it | 19303 | in which case call `uncomment-region'. If a prefix arg is given, it |
| 19342 | is passed on to the respective function. | 19304 | is passed on to the respective function. |
| 19343 | 19305 | ||
| 19344 | \(fn BEG END &optional ARG)" t nil) | 19306 | \(fn BEG END &optional ARG)" t nil) |
| 19345 | 19307 | ||
| 19346 | (autoload (quote comment-dwim) "newcomment" "\ | 19308 | (autoload 'comment-dwim "newcomment" "\ |
| 19347 | Call the comment command you want (Do What I Mean). | 19309 | Call the comment command you want (Do What I Mean). |
| 19348 | If the region is active and `transient-mark-mode' is on, call | 19310 | If the region is active and `transient-mark-mode' is on, call |
| 19349 | `comment-region' (unless it only consists of comments, in which | 19311 | `comment-region' (unless it only consists of comments, in which |
| @@ -19359,9 +19321,9 @@ You can configure `comment-style' to change the way regions are commented. | |||
| 19359 | Non-nil means to only auto-fill inside comments. | 19321 | Non-nil means to only auto-fill inside comments. |
| 19360 | This has no effect in modes that do not define a comment syntax.") | 19322 | This has no effect in modes that do not define a comment syntax.") |
| 19361 | 19323 | ||
| 19362 | (custom-autoload (quote comment-auto-fill-only-comments) "newcomment" t) | 19324 | (custom-autoload 'comment-auto-fill-only-comments "newcomment" t) |
| 19363 | 19325 | ||
| 19364 | (autoload (quote comment-indent-new-line) "newcomment" "\ | 19326 | (autoload 'comment-indent-new-line "newcomment" "\ |
| 19365 | Break line at point and indent, continuing comment if within one. | 19327 | Break line at point and indent, continuing comment if within one. |
| 19366 | This indents the body of the continued comment | 19328 | This indents the body of the continued comment |
| 19367 | under the previous comment line. | 19329 | under the previous comment line. |
| @@ -19382,17 +19344,17 @@ unless optional argument SOFT is non-nil. | |||
| 19382 | 19344 | ||
| 19383 | ;;;### (autoloads (newsticker-show-news newsticker-start-ticker newsticker-start | 19345 | ;;;### (autoloads (newsticker-show-news newsticker-start-ticker newsticker-start |
| 19384 | ;;;;;; newsticker-ticker-running-p newsticker-running-p) "newsticker" | 19346 | ;;;;;; newsticker-ticker-running-p newsticker-running-p) "newsticker" |
| 19385 | ;;;;;; "net/newsticker.el" (18104 24760)) | 19347 | ;;;;;; "net/newsticker.el" (18088 55112)) |
| 19386 | ;;; Generated autoloads from net/newsticker.el | 19348 | ;;; Generated autoloads from net/newsticker.el |
| 19387 | 19349 | ||
| 19388 | (autoload (quote newsticker-running-p) "newsticker" "\ | 19350 | (autoload 'newsticker-running-p "newsticker" "\ |
| 19389 | Check whether newsticker is running. | 19351 | Check whether newsticker is running. |
| 19390 | Return t if newsticker is running, nil otherwise. Newsticker is | 19352 | Return t if newsticker is running, nil otherwise. Newsticker is |
| 19391 | considered to be running if the newsticker timer list is not empty. | 19353 | considered to be running if the newsticker timer list is not empty. |
| 19392 | 19354 | ||
| 19393 | \(fn)" nil nil) | 19355 | \(fn)" nil nil) |
| 19394 | 19356 | ||
| 19395 | (autoload (quote newsticker-ticker-running-p) "newsticker" "\ | 19357 | (autoload 'newsticker-ticker-running-p "newsticker" "\ |
| 19396 | Check whether newsticker's actual ticker is running. | 19358 | Check whether newsticker's actual ticker is running. |
| 19397 | Return t if ticker is running, nil otherwise. Newsticker is | 19359 | Return t if ticker is running, nil otherwise. Newsticker is |
| 19398 | considered to be running if the newsticker timer list is not | 19360 | considered to be running if the newsticker timer list is not |
| @@ -19400,7 +19362,7 @@ empty. | |||
| 19400 | 19362 | ||
| 19401 | \(fn)" nil nil) | 19363 | \(fn)" nil nil) |
| 19402 | 19364 | ||
| 19403 | (autoload (quote newsticker-start) "newsticker" "\ | 19365 | (autoload 'newsticker-start "newsticker" "\ |
| 19404 | Start the newsticker. | 19366 | Start the newsticker. |
| 19405 | Start the timers for display and retrieval. If the newsticker, i.e. the | 19367 | Start the timers for display and retrieval. If the newsticker, i.e. the |
| 19406 | timers, are running already a warning message is printed unless | 19368 | timers, are running already a warning message is printed unless |
| @@ -19409,14 +19371,14 @@ Run `newsticker-start-hook' if newsticker was not running already. | |||
| 19409 | 19371 | ||
| 19410 | \(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil) | 19372 | \(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil) |
| 19411 | 19373 | ||
| 19412 | (autoload (quote newsticker-start-ticker) "newsticker" "\ | 19374 | (autoload 'newsticker-start-ticker "newsticker" "\ |
| 19413 | Start newsticker's ticker (but not the news retrieval). | 19375 | Start newsticker's ticker (but not the news retrieval). |
| 19414 | Start display timer for the actual ticker if wanted and not | 19376 | Start display timer for the actual ticker if wanted and not |
| 19415 | running already. | 19377 | running already. |
| 19416 | 19378 | ||
| 19417 | \(fn)" t nil) | 19379 | \(fn)" t nil) |
| 19418 | 19380 | ||
| 19419 | (autoload (quote newsticker-show-news) "newsticker" "\ | 19381 | (autoload 'newsticker-show-news "newsticker" "\ |
| 19420 | Switch to newsticker buffer. You may want to bind this to a key. | 19382 | Switch to newsticker buffer. You may want to bind this to a key. |
| 19421 | 19383 | ||
| 19422 | \(fn)" t nil) | 19384 | \(fn)" t nil) |
| @@ -19424,21 +19386,21 @@ Switch to newsticker buffer. You may want to bind this to a key. | |||
| 19424 | ;;;*** | 19386 | ;;;*** |
| 19425 | 19387 | ||
| 19426 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" | 19388 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" |
| 19427 | ;;;;;; (18104 24753)) | 19389 | ;;;;;; (18212 46007)) |
| 19428 | ;;; Generated autoloads from gnus/nndiary.el | 19390 | ;;; Generated autoloads from gnus/nndiary.el |
| 19429 | 19391 | ||
| 19430 | (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ | 19392 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ |
| 19431 | Generate NOV databases in all nndiary directories. | 19393 | Generate NOV databases in all nndiary directories. |
| 19432 | 19394 | ||
| 19433 | \(fn &optional SERVER)" t nil) | 19395 | \(fn &optional SERVER)" t nil) |
| 19434 | 19396 | ||
| 19435 | ;;;*** | 19397 | ;;;*** |
| 19436 | 19398 | ||
| 19437 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (18104 | 19399 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (18212 |
| 19438 | ;;;;;; 24753)) | 19400 | ;;;;;; 46007)) |
| 19439 | ;;; Generated autoloads from gnus/nndoc.el | 19401 | ;;; Generated autoloads from gnus/nndoc.el |
| 19440 | 19402 | ||
| 19441 | (autoload (quote nndoc-add-type) "nndoc" "\ | 19403 | (autoload 'nndoc-add-type "nndoc" "\ |
| 19442 | Add document DEFINITION to the list of nndoc document definitions. | 19404 | Add document DEFINITION to the list of nndoc document definitions. |
| 19443 | If POSITION is nil or `last', the definition will be added | 19405 | If POSITION is nil or `last', the definition will be added |
| 19444 | as the last checked definition, if t or `first', add as the | 19406 | as the last checked definition, if t or `first', add as the |
| @@ -19450,10 +19412,10 @@ symbol in the alist. | |||
| 19450 | ;;;*** | 19412 | ;;;*** |
| 19451 | 19413 | ||
| 19452 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" | 19414 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" |
| 19453 | ;;;;;; (18104 24753)) | 19415 | ;;;;;; (18212 46007)) |
| 19454 | ;;; Generated autoloads from gnus/nnfolder.el | 19416 | ;;; Generated autoloads from gnus/nnfolder.el |
| 19455 | 19417 | ||
| 19456 | (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ | 19418 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ |
| 19457 | Look for mbox folders in the nnfolder directory and make them into groups. | 19419 | Look for mbox folders in the nnfolder directory and make them into groups. |
| 19458 | This command does not work if you use short group names. | 19420 | This command does not work if you use short group names. |
| 19459 | 19421 | ||
| @@ -19462,10 +19424,10 @@ This command does not work if you use short group names. | |||
| 19462 | ;;;*** | 19424 | ;;;*** |
| 19463 | 19425 | ||
| 19464 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" | 19426 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" |
| 19465 | ;;;;;; (18104 24753)) | 19427 | ;;;;;; (18212 46007)) |
| 19466 | ;;; Generated autoloads from gnus/nnkiboze.el | 19428 | ;;; Generated autoloads from gnus/nnkiboze.el |
| 19467 | 19429 | ||
| 19468 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ | 19430 | (autoload 'nnkiboze-generate-groups "nnkiboze" "\ |
| 19469 | \"Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups\". | 19431 | \"Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups\". |
| 19470 | Finds out what articles are to be part of the nnkiboze groups. | 19432 | Finds out what articles are to be part of the nnkiboze groups. |
| 19471 | 19433 | ||
| @@ -19474,10 +19436,10 @@ Finds out what articles are to be part of the nnkiboze groups. | |||
| 19474 | ;;;*** | 19436 | ;;;*** |
| 19475 | 19437 | ||
| 19476 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" | 19438 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" |
| 19477 | ;;;;;; (18104 24754)) | 19439 | ;;;;;; (18212 46007)) |
| 19478 | ;;; Generated autoloads from gnus/nnml.el | 19440 | ;;; Generated autoloads from gnus/nnml.el |
| 19479 | 19441 | ||
| 19480 | (autoload (quote nnml-generate-nov-databases) "nnml" "\ | 19442 | (autoload 'nnml-generate-nov-databases "nnml" "\ |
| 19481 | Generate NOV databases in all nnml directories. | 19443 | Generate NOV databases in all nnml directories. |
| 19482 | 19444 | ||
| 19483 | \(fn &optional SERVER)" t nil) | 19445 | \(fn &optional SERVER)" t nil) |
| @@ -19485,20 +19447,20 @@ Generate NOV databases in all nnml directories. | |||
| 19485 | ;;;*** | 19447 | ;;;*** |
| 19486 | 19448 | ||
| 19487 | ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) | 19449 | ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) |
| 19488 | ;;;;;; "nnsoup" "gnus/nnsoup.el" (18104 24754)) | 19450 | ;;;;;; "nnsoup" "gnus/nnsoup.el" (18212 46007)) |
| 19489 | ;;; Generated autoloads from gnus/nnsoup.el | 19451 | ;;; Generated autoloads from gnus/nnsoup.el |
| 19490 | 19452 | ||
| 19491 | (autoload (quote nnsoup-pack-replies) "nnsoup" "\ | 19453 | (autoload 'nnsoup-pack-replies "nnsoup" "\ |
| 19492 | Make an outbound package of SOUP replies. | 19454 | Make an outbound package of SOUP replies. |
| 19493 | 19455 | ||
| 19494 | \(fn)" t nil) | 19456 | \(fn)" t nil) |
| 19495 | 19457 | ||
| 19496 | (autoload (quote nnsoup-set-variables) "nnsoup" "\ | 19458 | (autoload 'nnsoup-set-variables "nnsoup" "\ |
| 19497 | Use the SOUP methods for posting news and mailing mail. | 19459 | Use the SOUP methods for posting news and mailing mail. |
| 19498 | 19460 | ||
| 19499 | \(fn)" t nil) | 19461 | \(fn)" t nil) |
| 19500 | 19462 | ||
| 19501 | (autoload (quote nnsoup-revert-variables) "nnsoup" "\ | 19463 | (autoload 'nnsoup-revert-variables "nnsoup" "\ |
| 19502 | Revert posting and mailing methods to the standard Emacs methods. | 19464 | Revert posting and mailing methods to the standard Emacs methods. |
| 19503 | 19465 | ||
| 19504 | \(fn)" t nil) | 19466 | \(fn)" t nil) |
| @@ -19506,21 +19468,21 @@ Revert posting and mailing methods to the standard Emacs methods. | |||
| 19506 | ;;;*** | 19468 | ;;;*** |
| 19507 | 19469 | ||
| 19508 | ;;;### (autoloads (disable-command enable-command disabled-command-function) | 19470 | ;;;### (autoloads (disable-command enable-command disabled-command-function) |
| 19509 | ;;;;;; "novice" "novice.el" (18104 24738)) | 19471 | ;;;;;; "novice" "novice.el" (18088 55087)) |
| 19510 | ;;; Generated autoloads from novice.el | 19472 | ;;; Generated autoloads from novice.el |
| 19511 | 19473 | ||
| 19512 | (defvar disabled-command-function (quote disabled-command-function) "\ | 19474 | (defvar disabled-command-function 'disabled-command-function "\ |
| 19513 | Function to call to handle disabled commands. | 19475 | Function to call to handle disabled commands. |
| 19514 | If nil, the feature is disabled, i.e., all commands work normally.") | 19476 | If nil, the feature is disabled, i.e., all commands work normally.") |
| 19515 | 19477 | ||
| 19516 | (define-obsolete-variable-alias (quote disabled-command-hook) (quote disabled-command-function) "22.1") | 19478 | (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") |
| 19517 | 19479 | ||
| 19518 | (autoload (quote disabled-command-function) "novice" "\ | 19480 | (autoload 'disabled-command-function "novice" "\ |
| 19519 | Not documented | 19481 | Not documented |
| 19520 | 19482 | ||
| 19521 | \(fn &rest IGNORE)" nil nil) | 19483 | \(fn &rest IGNORE)" nil nil) |
| 19522 | 19484 | ||
| 19523 | (autoload (quote enable-command) "novice" "\ | 19485 | (autoload 'enable-command "novice" "\ |
| 19524 | Allow COMMAND to be executed without special confirmation from now on. | 19486 | Allow COMMAND to be executed without special confirmation from now on. |
| 19525 | COMMAND must be a symbol. | 19487 | COMMAND must be a symbol. |
| 19526 | This command alters the user's .emacs file so that this will apply | 19488 | This command alters the user's .emacs file so that this will apply |
| @@ -19528,7 +19490,7 @@ to future sessions. | |||
| 19528 | 19490 | ||
| 19529 | \(fn COMMAND)" t nil) | 19491 | \(fn COMMAND)" t nil) |
| 19530 | 19492 | ||
| 19531 | (autoload (quote disable-command) "novice" "\ | 19493 | (autoload 'disable-command "novice" "\ |
| 19532 | Require special confirmation to execute COMMAND from now on. | 19494 | Require special confirmation to execute COMMAND from now on. |
| 19533 | COMMAND must be a symbol. | 19495 | COMMAND must be a symbol. |
| 19534 | This command alters the user's .emacs file so that this will apply | 19496 | This command alters the user's .emacs file so that this will apply |
| @@ -19539,10 +19501,10 @@ to future sessions. | |||
| 19539 | ;;;*** | 19501 | ;;;*** |
| 19540 | 19502 | ||
| 19541 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" | 19503 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" |
| 19542 | ;;;;;; (18104 24771)) | 19504 | ;;;;;; (18120 34753)) |
| 19543 | ;;; Generated autoloads from textmodes/nroff-mode.el | 19505 | ;;; Generated autoloads from textmodes/nroff-mode.el |
| 19544 | 19506 | ||
| 19545 | (autoload (quote nroff-mode) "nroff-mode" "\ | 19507 | (autoload 'nroff-mode "nroff-mode" "\ |
| 19546 | Major mode for editing text intended for nroff to format. | 19508 | Major mode for editing text intended for nroff to format. |
| 19547 | \\{nroff-mode-map} | 19509 | \\{nroff-mode-map} |
| 19548 | Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. | 19510 | Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. |
| @@ -19554,10 +19516,10 @@ closing requests for requests that are used in matched pairs. | |||
| 19554 | ;;;*** | 19516 | ;;;*** |
| 19555 | 19517 | ||
| 19556 | ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" | 19518 | ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" |
| 19557 | ;;;;;; (18104 24768)) | 19519 | ;;;;;; (18088 55117)) |
| 19558 | ;;; Generated autoloads from progmodes/octave-hlp.el | 19520 | ;;; Generated autoloads from progmodes/octave-hlp.el |
| 19559 | 19521 | ||
| 19560 | (autoload (quote octave-help) "octave-hlp" "\ | 19522 | (autoload 'octave-help "octave-hlp" "\ |
| 19561 | Get help on Octave symbols from the Octave info files. | 19523 | Get help on Octave symbols from the Octave info files. |
| 19562 | Look up KEY in the function, operator and variable indices of the files | 19524 | Look up KEY in the function, operator and variable indices of the files |
| 19563 | specified by `octave-help-files'. | 19525 | specified by `octave-help-files'. |
| @@ -19568,10 +19530,10 @@ If KEY is not a string, prompt for it with completion. | |||
| 19568 | ;;;*** | 19530 | ;;;*** |
| 19569 | 19531 | ||
| 19570 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" | 19532 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" |
| 19571 | ;;;;;; (18104 24768)) | 19533 | ;;;;;; (18164 24097)) |
| 19572 | ;;; Generated autoloads from progmodes/octave-inf.el | 19534 | ;;; Generated autoloads from progmodes/octave-inf.el |
| 19573 | 19535 | ||
| 19574 | (autoload (quote inferior-octave) "octave-inf" "\ | 19536 | (autoload 'inferior-octave "octave-inf" "\ |
| 19575 | Run an inferior Octave process, I/O via `inferior-octave-buffer'. | 19537 | Run an inferior Octave process, I/O via `inferior-octave-buffer'. |
| 19576 | This buffer is put in Inferior Octave mode. See `inferior-octave-mode'. | 19538 | This buffer is put in Inferior Octave mode. See `inferior-octave-mode'. |
| 19577 | 19539 | ||
| @@ -19586,20 +19548,20 @@ startup file, `~/.emacs-octave'. | |||
| 19586 | 19548 | ||
| 19587 | \(fn &optional ARG)" t nil) | 19549 | \(fn &optional ARG)" t nil) |
| 19588 | 19550 | ||
| 19589 | (defalias (quote run-octave) (quote inferior-octave)) | 19551 | (defalias 'run-octave 'inferior-octave) |
| 19590 | 19552 | ||
| 19591 | ;;;*** | 19553 | ;;;*** |
| 19592 | 19554 | ||
| 19593 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" | 19555 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" |
| 19594 | ;;;;;; (18104 24768)) | 19556 | ;;;;;; (18203 37789)) |
| 19595 | ;;; Generated autoloads from progmodes/octave-mod.el | 19557 | ;;; Generated autoloads from progmodes/octave-mod.el |
| 19596 | 19558 | ||
| 19597 | (autoload (quote octave-mode) "octave-mod" "\ | 19559 | (autoload 'octave-mode "octave-mod" "\ |
| 19598 | Major mode for editing Octave code. | 19560 | Major mode for editing Octave code. |
| 19599 | 19561 | ||
| 19600 | This mode makes it easier to write Octave code by helping with | 19562 | This mode makes it easier to write Octave code by helping with |
| 19601 | indentation, doing some of the typing for you (with Abbrev mode) and by | 19563 | indentation, doing some of the typing for you (with Abbrev mode) and by |
| 19602 | showing keywords, comments, strings, etc. in different faces (with | 19564 | showing keywords, comments, strings, etc.. in different faces (with |
| 19603 | Font Lock mode on terminals that support it). | 19565 | Font Lock mode on terminals that support it). |
| 19604 | 19566 | ||
| 19605 | Octave itself is a high-level language, primarily intended for numerical | 19567 | Octave itself is a high-level language, primarily intended for numerical |
| @@ -19609,7 +19571,7 @@ can also be stored in files, and it can be used in a batch mode (which | |||
| 19609 | is why you need this mode!). | 19571 | is why you need this mode!). |
| 19610 | 19572 | ||
| 19611 | The latest released version of Octave is always available via anonymous | 19573 | The latest released version of Octave is always available via anonymous |
| 19612 | ftp from bevo.che.wisc.edu in the directory `/pub/octave'. Complete | 19574 | ftp from ftp.octave.org in the directory `/pub/octave'. Complete |
| 19613 | source and binaries for several popular systems are available. | 19575 | source and binaries for several popular systems are available. |
| 19614 | 19576 | ||
| 19615 | Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords. | 19577 | Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords. |
| @@ -19622,43 +19584,39 @@ Keybindings | |||
| 19622 | Variables you can use to customize Octave mode | 19584 | Variables you can use to customize Octave mode |
| 19623 | ============================================== | 19585 | ============================================== |
| 19624 | 19586 | ||
| 19625 | octave-auto-indent | 19587 | `octave-auto-indent' |
| 19626 | Non-nil means indent current line after a semicolon or space. | 19588 | Non-nil means indent current line after a semicolon or space. |
| 19627 | Default is nil. | 19589 | Default is nil. |
| 19628 | 19590 | ||
| 19629 | octave-auto-newline | 19591 | `octave-auto-newline' |
| 19630 | Non-nil means auto-insert a newline and indent after a semicolon. | 19592 | Non-nil means auto-insert a newline and indent after a semicolon. |
| 19631 | Default is nil. | 19593 | Default is nil. |
| 19632 | 19594 | ||
| 19633 | octave-blink-matching-block | 19595 | `octave-blink-matching-block' |
| 19634 | Non-nil means show matching begin of block when inserting a space, | 19596 | Non-nil means show matching begin of block when inserting a space, |
| 19635 | newline or semicolon after an else or end keyword. Default is t. | 19597 | newline or semicolon after an else or end keyword. Default is t. |
| 19636 | 19598 | ||
| 19637 | octave-block-offset | 19599 | `octave-block-offset' |
| 19638 | Extra indentation applied to statements in block structures. | 19600 | Extra indentation applied to statements in block structures. |
| 19639 | Default is 2. | 19601 | Default is 2. |
| 19640 | 19602 | ||
| 19641 | octave-continuation-offset | 19603 | `octave-continuation-offset' |
| 19642 | Extra indentation applied to Octave continuation lines. | 19604 | Extra indentation applied to Octave continuation lines. |
| 19643 | Default is 4. | 19605 | Default is 4. |
| 19644 | 19606 | ||
| 19645 | octave-continuation-string | 19607 | `octave-continuation-string' |
| 19646 | String used for Octave continuation lines. | 19608 | String used for Octave continuation lines. |
| 19647 | Default is a backslash. | 19609 | Default is a backslash. |
| 19648 | 19610 | ||
| 19649 | octave-mode-startup-message | 19611 | `octave-send-echo-input' |
| 19650 | nil means do not display the Octave mode startup message. | ||
| 19651 | Default is t. | ||
| 19652 | |||
| 19653 | octave-send-echo-input | ||
| 19654 | Non-nil means always display `inferior-octave-buffer' after sending a | 19612 | Non-nil means always display `inferior-octave-buffer' after sending a |
| 19655 | command to the inferior Octave process. | 19613 | command to the inferior Octave process. |
| 19656 | 19614 | ||
| 19657 | octave-send-line-auto-forward | 19615 | `octave-send-line-auto-forward' |
| 19658 | Non-nil means always go to the next unsent line of Octave code after | 19616 | Non-nil means always go to the next unsent line of Octave code after |
| 19659 | sending a line to the inferior Octave process. | 19617 | sending a line to the inferior Octave process. |
| 19660 | 19618 | ||
| 19661 | octave-send-echo-input | 19619 | `octave-send-echo-input' |
| 19662 | Non-nil means echo input sent to the inferior Octave process. | 19620 | Non-nil means echo input sent to the inferior Octave process. |
| 19663 | 19621 | ||
| 19664 | Turning on Octave mode runs the hook `octave-mode-hook'. | 19622 | Turning on Octave mode runs the hook `octave-mode-hook'. |
| @@ -19666,19 +19624,15 @@ Turning on Octave mode runs the hook `octave-mode-hook'. | |||
| 19666 | To begin using this mode for all `.m' files that you edit, add the | 19624 | To begin using this mode for all `.m' files that you edit, add the |
| 19667 | following lines to your `.emacs' file: | 19625 | following lines to your `.emacs' file: |
| 19668 | 19626 | ||
| 19669 | (autoload 'octave-mode \"octave-mod\" nil t) | 19627 | (add-to-list 'auto-mode-alist '(\"\\\\.m\\\\'\" . octave-mode)) |
| 19670 | (setq auto-mode-alist | ||
| 19671 | (cons '(\"\\\\.m$\" . octave-mode) auto-mode-alist)) | ||
| 19672 | 19628 | ||
| 19673 | To automatically turn on the abbrev, auto-fill and font-lock features, | 19629 | To automatically turn on the abbrev and auto-fill features, |
| 19674 | add the following lines to your `.emacs' file as well: | 19630 | add the following lines to your `.emacs' file as well: |
| 19675 | 19631 | ||
| 19676 | (add-hook 'octave-mode-hook | 19632 | (add-hook 'octave-mode-hook |
| 19677 | (lambda () | 19633 | (lambda () |
| 19678 | (abbrev-mode 1) | 19634 | (abbrev-mode 1) |
| 19679 | (auto-fill-mode 1) | 19635 | (auto-fill-mode 1))) |
| 19680 | (if (eq window-system 'x) | ||
| 19681 | (font-lock-mode 1)))) | ||
| 19682 | 19636 | ||
| 19683 | To submit a problem report, enter \\[octave-submit-bug-report] from an Octave mode buffer. | 19637 | To submit a problem report, enter \\[octave-submit-bug-report] from an Octave mode buffer. |
| 19684 | This automatically sets up a mail buffer with version information | 19638 | This automatically sets up a mail buffer with version information |
| @@ -19689,39 +19643,19 @@ including a reproducible test case and send the message. | |||
| 19689 | 19643 | ||
| 19690 | ;;;*** | 19644 | ;;;*** |
| 19691 | 19645 | ||
| 19692 | ;;;### (autoloads (edit-options list-options) "options" "obsolete/options.el" | ||
| 19693 | ;;;;;; (18104 24760)) | ||
| 19694 | ;;; Generated autoloads from obsolete/options.el | ||
| 19695 | |||
| 19696 | (autoload (quote list-options) "options" "\ | ||
| 19697 | Display a list of Emacs user options, with values and documentation. | ||
| 19698 | It is now better to use Customize instead. | ||
| 19699 | |||
| 19700 | \(fn)" t nil) | ||
| 19701 | |||
| 19702 | (autoload (quote edit-options) "options" "\ | ||
| 19703 | Edit a list of Emacs user option values. | ||
| 19704 | Selects a buffer containing such a list, | ||
| 19705 | in which there are commands to set the option values. | ||
| 19706 | Type \\[describe-mode] in that buffer for a list of commands. | ||
| 19707 | |||
| 19708 | The Custom feature is intended to make this obsolete. | ||
| 19709 | |||
| 19710 | \(fn)" t nil) | ||
| 19711 | |||
| 19712 | ;;;*** | ||
| 19713 | |||
| 19714 | ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files | 19646 | ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files |
| 19715 | ;;;;;; org-export-icalendar-this-file org-diary org-tags-view org-todo-list | 19647 | ;;;;;; org-export-icalendar-this-file org-diary org-tags-view org-todo-list |
| 19716 | ;;;;;; org-agenda-list org-cycle-agenda-files org-batch-store-agenda-views | 19648 | ;;;;;; org-agenda-list org-cycle-agenda-files org-batch-store-agenda-views |
| 19717 | ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda | 19649 | ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda |
| 19718 | ;;;;;; org-agenda org-remember-handler org-remember org-remember-apply-template | 19650 | ;;;;;; org-agenda org-agenda-to-appt org-remember-handler org-remember |
| 19719 | ;;;;;; org-remember-annotation org-store-link orgtbl-mode turn-on-orgtbl | 19651 | ;;;;;; org-remember-apply-template org-remember-annotation org-open-at-point-global |
| 19720 | ;;;;;; turn-on-orgstruct orgstruct-mode org-global-cycle org-cycle | 19652 | ;;;;;; org-insert-link-global org-store-link orgtbl-mode turn-on-orgtbl |
| 19721 | ;;;;;; org-mode) "org" "textmodes/org.el" (18104 24771)) | 19653 | ;;;;;; org-run-like-in-org-mode turn-on-orgstruct++ turn-on-orgstruct |
| 19654 | ;;;;;; orgstruct-mode org-global-cycle org-cycle org-mode) "org" | ||
| 19655 | ;;;;;; "textmodes/org.el" (18208 48754)) | ||
| 19722 | ;;; Generated autoloads from textmodes/org.el | 19656 | ;;; Generated autoloads from textmodes/org.el |
| 19723 | 19657 | ||
| 19724 | (autoload (quote org-mode) "org" "\ | 19658 | (autoload 'org-mode "org" "\ |
| 19725 | Outline-based notes management and organizer, alias | 19659 | Outline-based notes management and organizer, alias |
| 19726 | \"Carsten's outline-mode for keeping track of everything.\" | 19660 | \"Carsten's outline-mode for keeping track of everything.\" |
| 19727 | 19661 | ||
| @@ -19742,7 +19676,7 @@ The following commands are available: | |||
| 19742 | 19676 | ||
| 19743 | \(fn)" t nil) | 19677 | \(fn)" t nil) |
| 19744 | 19678 | ||
| 19745 | (autoload (quote org-cycle) "org" "\ | 19679 | (autoload 'org-cycle "org" "\ |
| 19746 | Visibility cycling for Org-mode. | 19680 | Visibility cycling for Org-mode. |
| 19747 | 19681 | ||
| 19748 | - When this function is called with a prefix argument, rotate the entire | 19682 | - When this function is called with a prefix argument, rotate the entire |
| @@ -19769,15 +19703,16 @@ Visibility cycling for Org-mode. | |||
| 19769 | 19703 | ||
| 19770 | - Special case: if point is at the beginning of the buffer and there is | 19704 | - Special case: if point is at the beginning of the buffer and there is |
| 19771 | no headline in line 1, this function will act as if called with prefix arg. | 19705 | no headline in line 1, this function will act as if called with prefix arg. |
| 19706 | But only if also the variable `org-cycle-global-at-bob' is t. | ||
| 19772 | 19707 | ||
| 19773 | \(fn &optional ARG)" t nil) | 19708 | \(fn &optional ARG)" t nil) |
| 19774 | 19709 | ||
| 19775 | (autoload (quote org-global-cycle) "org" "\ | 19710 | (autoload 'org-global-cycle "org" "\ |
| 19776 | Cycle the global visibility. For details see `org-cycle'. | 19711 | Cycle the global visibility. For details see `org-cycle'. |
| 19777 | 19712 | ||
| 19778 | \(fn &optional ARG)" t nil) | 19713 | \(fn &optional ARG)" t nil) |
| 19779 | 19714 | ||
| 19780 | (autoload (quote orgstruct-mode) "org" "\ | 19715 | (autoload 'orgstruct-mode "org" "\ |
| 19781 | Toggle the minor more `orgstruct-mode'. | 19716 | Toggle the minor more `orgstruct-mode'. |
| 19782 | This mode is for using Org-mode structure commands in other modes. | 19717 | This mode is for using Org-mode structure commands in other modes. |
| 19783 | The following key behave as if Org-mode was active, if the cursor | 19718 | The following key behave as if Org-mode was active, if the cursor |
| @@ -19802,22 +19737,35 @@ C-c C-c Set tags / toggle checkbox | |||
| 19802 | 19737 | ||
| 19803 | \(fn &optional ARG)" t nil) | 19738 | \(fn &optional ARG)" t nil) |
| 19804 | 19739 | ||
| 19805 | (autoload (quote turn-on-orgstruct) "org" "\ | 19740 | (autoload 'turn-on-orgstruct "org" "\ |
| 19806 | Unconditionally turn on `orgstruct-mode'. | 19741 | Unconditionally turn on `orgstruct-mode'. |
| 19807 | 19742 | ||
| 19808 | \(fn)" nil nil) | 19743 | \(fn)" nil nil) |
| 19809 | 19744 | ||
| 19810 | (autoload (quote turn-on-orgtbl) "org" "\ | 19745 | (autoload 'turn-on-orgstruct++ "org" "\ |
| 19746 | Unconditionally turn on `orgstruct-mode', and force org-mode indentations. | ||
| 19747 | In addition to setting orgstruct-mode, this also exports all indentation and | ||
| 19748 | autofilling variables from org-mode into the buffer. Note that turning | ||
| 19749 | off orgstruct-mode will *not* remove these additonal settings. | ||
| 19750 | |||
| 19751 | \(fn)" nil nil) | ||
| 19752 | |||
| 19753 | (autoload 'org-run-like-in-org-mode "org" "\ | ||
| 19754 | Not documented | ||
| 19755 | |||
| 19756 | \(fn CMD)" nil nil) | ||
| 19757 | |||
| 19758 | (autoload 'turn-on-orgtbl "org" "\ | ||
| 19811 | Unconditionally turn on `orgtbl-mode'. | 19759 | Unconditionally turn on `orgtbl-mode'. |
| 19812 | 19760 | ||
| 19813 | \(fn)" nil nil) | 19761 | \(fn)" nil nil) |
| 19814 | 19762 | ||
| 19815 | (autoload (quote orgtbl-mode) "org" "\ | 19763 | (autoload 'orgtbl-mode "org" "\ |
| 19816 | The `org-mode' table editor as a minor mode for use in other modes. | 19764 | The `org-mode' table editor as a minor mode for use in other modes. |
| 19817 | 19765 | ||
| 19818 | \(fn &optional ARG)" t nil) | 19766 | \(fn &optional ARG)" t nil) |
| 19819 | 19767 | ||
| 19820 | (autoload (quote org-store-link) "org" "\ | 19768 | (autoload 'org-store-link "org" "\ |
| 19821 | \\<org-mode-map>Store an org-link to the current location. | 19769 | \\<org-mode-map>Store an org-link to the current location. |
| 19822 | This link can later be inserted into an org-buffer with | 19770 | This link can later be inserted into an org-buffer with |
| 19823 | \\[org-insert-link]. | 19771 | \\[org-insert-link]. |
| @@ -19827,7 +19775,20 @@ For file links, arg negates `org-context-in-file-links'. | |||
| 19827 | 19775 | ||
| 19828 | \(fn ARG)" t nil) | 19776 | \(fn ARG)" t nil) |
| 19829 | 19777 | ||
| 19830 | (autoload (quote org-remember-annotation) "org" "\ | 19778 | (autoload 'org-insert-link-global "org" "\ |
| 19779 | Insert a link like Org-mode does. | ||
| 19780 | This command can be called in any mode to insert a link in Org-mode syntax. | ||
| 19781 | |||
| 19782 | \(fn)" t nil) | ||
| 19783 | |||
| 19784 | (autoload 'org-open-at-point-global "org" "\ | ||
| 19785 | Follow a link like Org-mode does. | ||
| 19786 | This command can be called in any mode to follow a link that has | ||
| 19787 | Org-mode syntax. | ||
| 19788 | |||
| 19789 | \(fn)" t nil) | ||
| 19790 | |||
| 19791 | (autoload 'org-remember-annotation "org" "\ | ||
| 19831 | Return a link to the current location as an annotation for remember.el. | 19792 | Return a link to the current location as an annotation for remember.el. |
| 19832 | If you are using Org-mode files as target for data storage with | 19793 | If you are using Org-mode files as target for data storage with |
| 19833 | remember.el, then the annotations should include a link compatible with the | 19794 | remember.el, then the annotations should include a link compatible with the |
| @@ -19835,21 +19796,21 @@ conventions in Org-mode. This function returns such a link. | |||
| 19835 | 19796 | ||
| 19836 | \(fn)" nil nil) | 19797 | \(fn)" nil nil) |
| 19837 | 19798 | ||
| 19838 | (autoload (quote org-remember-apply-template) "org" "\ | 19799 | (autoload 'org-remember-apply-template "org" "\ |
| 19839 | Initialize *remember* buffer with template, invoke `org-mode'. | 19800 | Initialize *remember* buffer with template, invoke `org-mode'. |
| 19840 | This function should be placed into `remember-mode-hook' and in fact requires | 19801 | This function should be placed into `remember-mode-hook' and in fact requires |
| 19841 | to be run from that hook to fucntion properly. | 19802 | to be run from that hook to fucntion properly. |
| 19842 | 19803 | ||
| 19843 | \(fn &optional USE-CHAR SKIP-INTERACTIVE)" nil nil) | 19804 | \(fn &optional USE-CHAR SKIP-INTERACTIVE)" nil nil) |
| 19844 | 19805 | ||
| 19845 | (autoload (quote org-remember) "org" "\ | 19806 | (autoload 'org-remember "org" "\ |
| 19846 | Call `remember'. If this is already a remember buffer, re-apply template. | 19807 | Call `remember'. If this is already a remember buffer, re-apply template. |
| 19847 | If there is an active region, make sure remember uses it as initial content | 19808 | If there is an active region, make sure remember uses it as initial content |
| 19848 | of the remember buffer. | 19809 | of the remember buffer. |
| 19849 | 19810 | ||
| 19850 | \(fn)" t nil) | 19811 | \(fn &optional ORG-FORCE-REMEMBER-TEMPLATE-CHAR)" t nil) |
| 19851 | 19812 | ||
| 19852 | (autoload (quote org-remember-handler) "org" "\ | 19813 | (autoload 'org-remember-handler "org" "\ |
| 19853 | Store stuff from remember.el into an org file. | 19814 | Store stuff from remember.el into an org file. |
| 19854 | First prompts for an org file. If the user just presses return, the value | 19815 | First prompts for an org file. If the user just presses return, the value |
| 19855 | of `org-default-notes-file' is used. | 19816 | of `org-default-notes-file' is used. |
| @@ -19861,7 +19822,7 @@ find a better place. Then press RET or <left> or <right> in insert the note. | |||
| 19861 | 19822 | ||
| 19862 | Key Cursor position Note gets inserted | 19823 | Key Cursor position Note gets inserted |
| 19863 | ----------------------------------------------------------------------------- | 19824 | ----------------------------------------------------------------------------- |
| 19864 | RET buffer-start as level 2 heading at end of file | 19825 | RET buffer-start as level 1 heading at end of file |
| 19865 | RET on headline as sublevel of the heading at cursor | 19826 | RET on headline as sublevel of the heading at cursor |
| 19866 | RET no heading at cursor position, level taken from context. | 19827 | RET no heading at cursor position, level taken from context. |
| 19867 | Or use prefix arg to specify level manually. | 19828 | Or use prefix arg to specify level manually. |
| @@ -19870,8 +19831,10 @@ RET no heading at cursor position, level taken from context. | |||
| 19870 | 19831 | ||
| 19871 | So the fastest way to store the note is to press RET RET to append it to | 19832 | So the fastest way to store the note is to press RET RET to append it to |
| 19872 | the default file. This way your current train of thought is not | 19833 | the default file. This way your current train of thought is not |
| 19873 | interrupted, in accordance with the principles of remember.el. But with | 19834 | interrupted, in accordance with the principles of remember.el. |
| 19874 | little extra effort, you can push it directly to the correct location. | 19835 | You can also get the fast execution without prompting by using |
| 19836 | C-u C-c C-c to exit the remember buffer. See also the variable | ||
| 19837 | `org-remember-store-without-prompt'. | ||
| 19875 | 19838 | ||
| 19876 | Before being stored away, the function ensures that the text has a | 19839 | Before being stored away, the function ensures that the text has a |
| 19877 | headline, i.e. a first line that starts with a \"*\". If not, a headline | 19840 | headline, i.e. a first line that starts with a \"*\". If not, a headline |
| @@ -19885,11 +19848,30 @@ See also the variable `org-reverse-note-order'. | |||
| 19885 | 19848 | ||
| 19886 | \(fn)" nil nil) | 19849 | \(fn)" nil nil) |
| 19887 | 19850 | ||
| 19888 | (autoload (quote org-agenda) "org" "\ | 19851 | (autoload 'org-agenda-to-appt "org" "\ |
| 19852 | Activate appointments found in `org-agenda-files'. | ||
| 19853 | When prefixed, prompt for a regular expression and use it as a | ||
| 19854 | filter: only add entries if they match this regular expression. | ||
| 19855 | |||
| 19856 | FILTER can be a string. In this case, use this string as a | ||
| 19857 | regular expression to filter results. | ||
| 19858 | |||
| 19859 | FILTER can also be an alist, with the car of each cell being | ||
| 19860 | either 'headline or 'category. For example: | ||
| 19861 | |||
| 19862 | '((headline \"IMPORTANT\") | ||
| 19863 | (category \"Work\")) | ||
| 19864 | |||
| 19865 | will only add headlines containing IMPORTANT or headlines | ||
| 19866 | belonging to the category \"Work\". | ||
| 19867 | |||
| 19868 | \(fn &optional FILTER)" t nil) | ||
| 19869 | |||
| 19870 | (autoload 'org-agenda "org" "\ | ||
| 19889 | Dispatch agenda commands to collect entries to the agenda buffer. | 19871 | Dispatch agenda commands to collect entries to the agenda buffer. |
| 19890 | Prompts for a character to select a command. Any prefix arg will be passed | 19872 | Prompts for a command to execute. Any prefix arg will be passed |
| 19891 | on to the selected command. The default selections are: | 19873 | on to the selected command. The default selections are: |
| 19892 | g | 19874 | |
| 19893 | a Call `org-agenda-list' to display the agenda for current day or week. | 19875 | a Call `org-agenda-list' to display the agenda for current day or week. |
| 19894 | t Call `org-todo-list' to display the global todo list. | 19876 | t Call `org-todo-list' to display the global todo list. |
| 19895 | T Call `org-todo-list' to display the global todo list, select only | 19877 | T Call `org-todo-list' to display the global todo list, select only |
| @@ -19897,7 +19879,7 @@ T Call `org-todo-list' to display the global todo list, select only | |||
| 19897 | m Call `org-tags-view' to display headlines with tags matching | 19879 | m Call `org-tags-view' to display headlines with tags matching |
| 19898 | a condition (the user is prompted for the condition). | 19880 | a condition (the user is prompted for the condition). |
| 19899 | M Like `m', but select only TODO entries, no ordinary headlines. | 19881 | M Like `m', but select only TODO entries, no ordinary headlines. |
| 19900 | l Create a timeline for the current buffer. | 19882 | L Create a timeline for the current buffer. |
| 19901 | e Export views to associated files. | 19883 | e Export views to associated files. |
| 19902 | 19884 | ||
| 19903 | More commands can be added by configuring the variable | 19885 | More commands can be added by configuring the variable |
| @@ -19905,12 +19887,14 @@ More commands can be added by configuring the variable | |||
| 19905 | searches can be pre-defined in this way. | 19887 | searches can be pre-defined in this way. |
| 19906 | 19888 | ||
| 19907 | If the current buffer is in Org-mode and visiting a file, you can also | 19889 | If the current buffer is in Org-mode and visiting a file, you can also |
| 19908 | first press `1' to indicate that the agenda should be temporarily (until the | 19890 | first press `<' once to indicate that the agenda should be temporarily |
| 19909 | next use of \\[org-agenda]) restricted to the current file. | 19891 | \(until the next use of \\[org-agenda]) restricted to the current file. |
| 19892 | Pressing `<' twice means to restrict to the current subtree or region | ||
| 19893 | \(if active). | ||
| 19910 | 19894 | ||
| 19911 | \(fn ARG)" t nil) | 19895 | \(fn ARG &optional KEYS RESTRICTION)" t nil) |
| 19912 | 19896 | ||
| 19913 | (autoload (quote org-batch-agenda) "org" "\ | 19897 | (autoload 'org-batch-agenda "org" "\ |
| 19914 | Run an agenda command in batch mode and send the result to STDOUT. | 19898 | Run an agenda command in batch mode and send the result to STDOUT. |
| 19915 | If CMD-KEY is a string of length 1, it is used as a key in | 19899 | If CMD-KEY is a string of length 1, it is used as a key in |
| 19916 | `org-agenda-custom-commands' and triggers this command. If it is a | 19900 | `org-agenda-custom-commands' and triggers this command. If it is a |
| @@ -19920,7 +19904,7 @@ before running the agenda command. | |||
| 19920 | 19904 | ||
| 19921 | \(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) | 19905 | \(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) |
| 19922 | 19906 | ||
| 19923 | (autoload (quote org-batch-agenda-csv) "org" "\ | 19907 | (autoload 'org-batch-agenda-csv "org" "\ |
| 19924 | Run an agenda command in batch mode and send the result to STDOUT. | 19908 | Run an agenda command in batch mode and send the result to STDOUT. |
| 19925 | If CMD-KEY is a string of length 1, it is used as a key in | 19909 | If CMD-KEY is a string of length 1, it is used as a key in |
| 19926 | `org-agenda-custom-commands' and triggers this command. If it is a | 19910 | `org-agenda-custom-commands' and triggers this command. If it is a |
| @@ -19957,39 +19941,43 @@ agenda-day The day in the agenda where this is listed | |||
| 19957 | 19941 | ||
| 19958 | \(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) | 19942 | \(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) |
| 19959 | 19943 | ||
| 19960 | (autoload (quote org-store-agenda-views) "org" "\ | 19944 | (autoload 'org-store-agenda-views "org" "\ |
| 19961 | Not documented | 19945 | Not documented |
| 19962 | 19946 | ||
| 19963 | \(fn &rest PARAMETERS)" t nil) | 19947 | \(fn &rest PARAMETERS)" t nil) |
| 19964 | 19948 | ||
| 19965 | (autoload (quote org-batch-store-agenda-views) "org" "\ | 19949 | (autoload 'org-batch-store-agenda-views "org" "\ |
| 19966 | Run all custom agenda commands that have a file argument. | 19950 | Run all custom agenda commands that have a file argument. |
| 19967 | 19951 | ||
| 19968 | \(fn &rest PARAMETERS)" nil (quote macro)) | 19952 | \(fn &rest PARAMETERS)" nil (quote macro)) |
| 19969 | 19953 | ||
| 19970 | (autoload (quote org-cycle-agenda-files) "org" "\ | 19954 | (autoload 'org-cycle-agenda-files "org" "\ |
| 19971 | Cycle through the files in `org-agenda-files'. | 19955 | Cycle through the files in `org-agenda-files'. |
| 19972 | If the current buffer visits an agenda file, find the next one in the list. | 19956 | If the current buffer visits an agenda file, find the next one in the list. |
| 19973 | If the current buffer does not, find the first agenda file. | 19957 | If the current buffer does not, find the first agenda file. |
| 19974 | 19958 | ||
| 19975 | \(fn)" t nil) | 19959 | \(fn)" t nil) |
| 19976 | 19960 | ||
| 19977 | (autoload (quote org-agenda-list) "org" "\ | 19961 | (autoload 'org-agenda-list "org" "\ |
| 19978 | Produce a weekly view from all files in variable `org-agenda-files'. | 19962 | Produce a daily/weekly view from all files in variable `org-agenda-files'. |
| 19979 | The view will be for the current week, but from the overview buffer you | 19963 | The view will be for the current day or week, but from the overview buffer |
| 19980 | will be able to go to other weeks. | 19964 | you will be able to go to other days/weeks. |
| 19981 | With one \\[universal-argument] prefix argument INCLUDE-ALL, all unfinished TODO items will | 19965 | |
| 19982 | also be shown, under the current date. | 19966 | With one \\[universal-argument] prefix argument INCLUDE-ALL, |
| 19983 | With two \\[universal-argument] prefix argument INCLUDE-ALL, all TODO entries marked DONE | 19967 | all unfinished TODO items will also be shown, before the agenda. |
| 19984 | on the days are also shown. See the variable `org-log-done' for how | 19968 | This feature is considered obsolete, please use the TODO list or a block |
| 19985 | to turn on logging. | 19969 | agenda instead. |
| 19970 | |||
| 19971 | With a numeric prefix argument in an interactive call, the agenda will | ||
| 19972 | span INCLUDE-ALL days. Lisp programs should instead specify NDAYS to change | ||
| 19973 | the number of days. NDAYS defaults to `org-agenda-ndays'. | ||
| 19974 | |||
| 19986 | START-DAY defaults to TODAY, or to the most recent match for the weekday | 19975 | START-DAY defaults to TODAY, or to the most recent match for the weekday |
| 19987 | given in `org-agenda-start-on-weekday'. | 19976 | given in `org-agenda-start-on-weekday'. |
| 19988 | NDAYS defaults to `org-agenda-ndays'. | ||
| 19989 | 19977 | ||
| 19990 | \(fn &optional INCLUDE-ALL START-DAY NDAYS)" t nil) | 19978 | \(fn &optional INCLUDE-ALL START-DAY NDAYS)" t nil) |
| 19991 | 19979 | ||
| 19992 | (autoload (quote org-todo-list) "org" "\ | 19980 | (autoload 'org-todo-list "org" "\ |
| 19993 | Show all TODO entries from all agenda file in a single list. | 19981 | Show all TODO entries from all agenda file in a single list. |
| 19994 | The prefix arg can be used to select a specific TODO keyword and limit | 19982 | The prefix arg can be used to select a specific TODO keyword and limit |
| 19995 | the list to these. When using \\[universal-argument], you will be prompted | 19983 | the list to these. When using \\[universal-argument], you will be prompted |
| @@ -19998,13 +19986,13 @@ for a keyword. A numeric prefix directly selects the Nth keyword in | |||
| 19998 | 19986 | ||
| 19999 | \(fn ARG)" t nil) | 19987 | \(fn ARG)" t nil) |
| 20000 | 19988 | ||
| 20001 | (autoload (quote org-tags-view) "org" "\ | 19989 | (autoload 'org-tags-view "org" "\ |
| 20002 | Show all headlines for all `org-agenda-files' matching a TAGS criterion. | 19990 | Show all headlines for all `org-agenda-files' matching a TAGS criterion. |
| 20003 | The prefix arg TODO-ONLY limits the search to TODO entries. | 19991 | The prefix arg TODO-ONLY limits the search to TODO entries. |
| 20004 | 19992 | ||
| 20005 | \(fn &optional TODO-ONLY MATCH)" t nil) | 19993 | \(fn &optional TODO-ONLY MATCH)" t nil) |
| 20006 | 19994 | ||
| 20007 | (autoload (quote org-diary) "org" "\ | 19995 | (autoload 'org-diary "org" "\ |
| 20008 | Return diary information from org-files. | 19996 | Return diary information from org-files. |
| 20009 | This function can be used in a \"sexp\" diary entry in the Emacs calendar. | 19997 | This function can be used in a \"sexp\" diary entry in the Emacs calendar. |
| 20010 | It accesses org files and extracts information from those files to be | 19998 | It accesses org files and extracts information from those files to be |
| @@ -20015,7 +20003,7 @@ items should be listed. The following arguments are allowed: | |||
| 20015 | date range matching the selected date. Deadlines will | 20003 | date range matching the selected date. Deadlines will |
| 20016 | also be listed, on the expiration day. | 20004 | also be listed, on the expiration day. |
| 20017 | 20005 | ||
| 20018 | :sexp FIXME | 20006 | :sexp List entries resulting from diary-like sexps. |
| 20019 | 20007 | ||
| 20020 | :deadline List any deadlines past due, or due within | 20008 | :deadline List any deadlines past due, or due within |
| 20021 | `org-deadline-warning-days'. The listing occurs only | 20009 | `org-deadline-warning-days'. The listing occurs only |
| @@ -20052,21 +20040,21 @@ function from a program - use `org-agenda-get-day-entries' instead. | |||
| 20052 | 20040 | ||
| 20053 | \(fn &rest ARGS)" nil nil) | 20041 | \(fn &rest ARGS)" nil nil) |
| 20054 | 20042 | ||
| 20055 | (autoload (quote org-export-icalendar-this-file) "org" "\ | 20043 | (autoload 'org-export-icalendar-this-file "org" "\ |
| 20056 | Export current file as an iCalendar file. | 20044 | Export current file as an iCalendar file. |
| 20057 | The iCalendar file will be located in the same directory as the Org-mode | 20045 | The iCalendar file will be located in the same directory as the Org-mode |
| 20058 | file, but with extension `.ics'. | 20046 | file, but with extension `.ics'. |
| 20059 | 20047 | ||
| 20060 | \(fn)" t nil) | 20048 | \(fn)" t nil) |
| 20061 | 20049 | ||
| 20062 | (autoload (quote org-export-icalendar-all-agenda-files) "org" "\ | 20050 | (autoload 'org-export-icalendar-all-agenda-files "org" "\ |
| 20063 | Export all files in `org-agenda-files' to iCalendar .ics files. | 20051 | Export all files in `org-agenda-files' to iCalendar .ics files. |
| 20064 | Each iCalendar file will be located in the same directory as the Org-mode | 20052 | Each iCalendar file will be located in the same directory as the Org-mode |
| 20065 | file, but with extension `.ics'. | 20053 | file, but with extension `.ics'. |
| 20066 | 20054 | ||
| 20067 | \(fn)" t nil) | 20055 | \(fn)" t nil) |
| 20068 | 20056 | ||
| 20069 | (autoload (quote org-export-icalendar-combine-agenda-files) "org" "\ | 20057 | (autoload 'org-export-icalendar-combine-agenda-files "org" "\ |
| 20070 | Export all files in `org-agenda-files' to a single combined iCalendar file. | 20058 | Export all files in `org-agenda-files' to a single combined iCalendar file. |
| 20071 | The file is stored under the name `org-combined-agenda-icalendar-file'. | 20059 | The file is stored under the name `org-combined-agenda-icalendar-file'. |
| 20072 | 20060 | ||
| @@ -20074,29 +20062,83 @@ The file is stored under the name `org-combined-agenda-icalendar-file'. | |||
| 20074 | 20062 | ||
| 20075 | ;;;*** | 20063 | ;;;*** |
| 20076 | 20064 | ||
| 20065 | ;;;### (autoloads (org-export-as-latex org-export-region-as-latex | ||
| 20066 | ;;;;;; org-replace-region-by-latex org-export-as-latex-to-buffer | ||
| 20067 | ;;;;;; org-export-as-latex-batch) "org-export-latex" "textmodes/org-export-latex.el" | ||
| 20068 | ;;;;;; (18214 4479)) | ||
| 20069 | ;;; Generated autoloads from textmodes/org-export-latex.el | ||
| 20070 | |||
| 20071 | (autoload 'org-export-as-latex-batch "org-export-latex" "\ | ||
| 20072 | Call `org-export-as-latex', may be used in batch processing as | ||
| 20073 | emacs --batch | ||
| 20074 | --load=$HOME/lib/emacs/org.el | ||
| 20075 | --eval \"(setq org-export-headline-levels 2)\" | ||
| 20076 | --visit=MyFile --funcall org-export-as-latex-batch | ||
| 20077 | |||
| 20078 | \(fn)" nil nil) | ||
| 20079 | |||
| 20080 | (autoload 'org-export-as-latex-to-buffer "org-export-latex" "\ | ||
| 20081 | Call `org-exort-as-latex` with output to a temporary buffer. | ||
| 20082 | No file is created. The prefix ARG is passed through to `org-export-as-latex'. | ||
| 20083 | |||
| 20084 | \(fn ARG)" t nil) | ||
| 20085 | |||
| 20086 | (autoload 'org-replace-region-by-latex "org-export-latex" "\ | ||
| 20087 | Replace the region from BEG to END with its LaTeX export. | ||
| 20088 | It assumes the region has `org-mode' syntax, and then convert it to | ||
| 20089 | LaTeX. This can be used in any buffer. For example, you could | ||
| 20090 | write an itemized list in `org-mode' syntax in an LaTeX buffer and | ||
| 20091 | then use this command to convert it. | ||
| 20092 | |||
| 20093 | \(fn BEG END)" t nil) | ||
| 20094 | |||
| 20095 | (autoload 'org-export-region-as-latex "org-export-latex" "\ | ||
| 20096 | Convert region from BEG to END in `org-mode' buffer to LaTeX. | ||
| 20097 | If prefix arg BODY-ONLY is set, omit file header, footer, and table of | ||
| 20098 | contents, and only produce the region of converted text, useful for | ||
| 20099 | cut-and-paste operations. | ||
| 20100 | If BUFFER is a buffer or a string, use/create that buffer as a target | ||
| 20101 | of the converted LaTeX. If BUFFER is the symbol `string', return the | ||
| 20102 | produced LaTeX as a string and leave not buffer behind. For example, | ||
| 20103 | a Lisp program could call this function in the following way: | ||
| 20104 | |||
| 20105 | (setq latex (org-export-region-as-latex beg end t 'string)) | ||
| 20106 | |||
| 20107 | When called interactively, the output buffer is selected, and shown | ||
| 20108 | in a window. A non-interactive call will only retunr the buffer. | ||
| 20109 | |||
| 20110 | \(fn BEG END &optional BODY-ONLY BUFFER)" t nil) | ||
| 20111 | |||
| 20112 | (autoload 'org-export-as-latex "org-export-latex" "\ | ||
| 20113 | Export current buffer to a LaTeX file. | ||
| 20114 | |||
| 20115 | \(fn ARG &optional HIDDEN EXT-PLIST TO-BUFFER BODY-ONLY)" t nil) | ||
| 20116 | |||
| 20117 | ;;;*** | ||
| 20118 | |||
| 20077 | ;;;### (autoloads (org-publish-all org-publish-current-file org-publish-current-project | 20119 | ;;;### (autoloads (org-publish-all org-publish-current-file org-publish-current-project |
| 20078 | ;;;;;; org-publish) "org-publish" "textmodes/org-publish.el" (18104 | 20120 | ;;;;;; org-publish) "org-publish" "textmodes/org-publish.el" (18214 |
| 20079 | ;;;;;; 24771)) | 20121 | ;;;;;; 4479)) |
| 20080 | ;;; Generated autoloads from textmodes/org-publish.el | 20122 | ;;; Generated autoloads from textmodes/org-publish.el |
| 20081 | 20123 | ||
| 20082 | (autoload (quote org-publish) "org-publish" "\ | 20124 | (autoload 'org-publish "org-publish" "\ |
| 20083 | Publish the project PROJECT-NAME. | 20125 | Publish the project PROJECT-NAME. |
| 20084 | 20126 | ||
| 20085 | \(fn PROJECT-NAME &optional FORCE)" t nil) | 20127 | \(fn PROJECT-NAME &optional FORCE)" t nil) |
| 20086 | 20128 | ||
| 20087 | (autoload (quote org-publish-current-project) "org-publish" "\ | 20129 | (autoload 'org-publish-current-project "org-publish" "\ |
| 20088 | Publish the project associated with the current file. | 20130 | Publish the project associated with the current file. |
| 20089 | With prefix argument, force publishing all files in project. | 20131 | With prefix argument, force publishing all files in project. |
| 20090 | 20132 | ||
| 20091 | \(fn &optional FORCE)" t nil) | 20133 | \(fn &optional FORCE)" t nil) |
| 20092 | 20134 | ||
| 20093 | (autoload (quote org-publish-current-file) "org-publish" "\ | 20135 | (autoload 'org-publish-current-file "org-publish" "\ |
| 20094 | Publish the current file. | 20136 | Publish the current file. |
| 20095 | With prefix argument, force publish the file. | 20137 | With prefix argument, force publish the file. |
| 20096 | 20138 | ||
| 20097 | \(fn &optional FORCE)" t nil) | 20139 | \(fn &optional FORCE)" t nil) |
| 20098 | 20140 | ||
| 20099 | (autoload (quote org-publish-all) "org-publish" "\ | 20141 | (autoload 'org-publish-all "org-publish" "\ |
| 20100 | Publish all projects. | 20142 | Publish all projects. |
| 20101 | With prefix argument, force publish all files. | 20143 | With prefix argument, force publish all files. |
| 20102 | 20144 | ||
| @@ -20105,11 +20147,11 @@ With prefix argument, force publish all files. | |||
| 20105 | ;;;*** | 20147 | ;;;*** |
| 20106 | 20148 | ||
| 20107 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" | 20149 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" |
| 20108 | ;;;;;; (18104 24738)) | 20150 | ;;;;;; (18187 36839)) |
| 20109 | ;;; Generated autoloads from outline.el | 20151 | ;;; Generated autoloads from outline.el |
| 20110 | (put 'outline-regexp 'safe-local-variable 'string-or-null-p) | 20152 | (put 'outline-regexp 'safe-local-variable 'string-or-null-p) |
| 20111 | 20153 | ||
| 20112 | (autoload (quote outline-mode) "outline" "\ | 20154 | (autoload 'outline-mode "outline" "\ |
| 20113 | Set major mode for editing outlines with selective display. | 20155 | Set major mode for editing outlines with selective display. |
| 20114 | Headings are lines which start with asterisks: one for major headings, | 20156 | Headings are lines which start with asterisks: one for major headings, |
| 20115 | two for subheadings, etc. Lines not starting with asterisks are body lines. | 20157 | two for subheadings, etc. Lines not starting with asterisks are body lines. |
| @@ -20152,7 +20194,7 @@ Turning on outline mode calls the value of `text-mode-hook' and then of | |||
| 20152 | 20194 | ||
| 20153 | \(fn)" t nil) | 20195 | \(fn)" t nil) |
| 20154 | 20196 | ||
| 20155 | (autoload (quote outline-minor-mode) "outline" "\ | 20197 | (autoload 'outline-minor-mode "outline" "\ |
| 20156 | Toggle Outline minor mode. | 20198 | Toggle Outline minor mode. |
| 20157 | With arg, turn Outline minor mode on if arg is positive, off otherwise. | 20199 | With arg, turn Outline minor mode on if arg is positive, off otherwise. |
| 20158 | See the command `outline-mode' for more information on this mode. | 20200 | See the command `outline-mode' for more information on this mode. |
| @@ -20161,8 +20203,8 @@ See the command `outline-mode' for more information on this mode. | |||
| 20161 | 20203 | ||
| 20162 | ;;;*** | 20204 | ;;;*** |
| 20163 | 20205 | ||
| 20164 | ;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (18104 | 20206 | ;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (18088 |
| 20165 | ;;;;;; 24772)) | 20207 | ;;;;;; 55120)) |
| 20166 | ;;; Generated autoloads from textmodes/paragraphs.el | 20208 | ;;; Generated autoloads from textmodes/paragraphs.el |
| 20167 | (put 'paragraph-start 'safe-local-variable 'stringp) | 20209 | (put 'paragraph-start 'safe-local-variable 'stringp) |
| 20168 | (put 'paragraph-separate 'safe-local-variable 'stringp) | 20210 | (put 'paragraph-separate 'safe-local-variable 'stringp) |
| @@ -20176,7 +20218,7 @@ See the command `outline-mode' for more information on this mode. | |||
| 20176 | 20218 | ||
| 20177 | ;;;*** | 20219 | ;;;*** |
| 20178 | 20220 | ||
| 20179 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (18104 24738)) | 20221 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (18088 55087)) |
| 20180 | ;;; Generated autoloads from paren.el | 20222 | ;;; Generated autoloads from paren.el |
| 20181 | 20223 | ||
| 20182 | (defvar show-paren-mode nil "\ | 20224 | (defvar show-paren-mode nil "\ |
| @@ -20186,9 +20228,9 @@ Setting this variable directly does not take effect; | |||
| 20186 | either customize it (see the info node `Easy Customization') | 20228 | either customize it (see the info node `Easy Customization') |
| 20187 | or call the function `show-paren-mode'.") | 20229 | or call the function `show-paren-mode'.") |
| 20188 | 20230 | ||
| 20189 | (custom-autoload (quote show-paren-mode) "paren" nil) | 20231 | (custom-autoload 'show-paren-mode "paren" nil) |
| 20190 | 20232 | ||
| 20191 | (autoload (quote show-paren-mode) "paren" "\ | 20233 | (autoload 'show-paren-mode "paren" "\ |
| 20192 | Toggle Show Paren mode. | 20234 | Toggle Show Paren mode. |
| 20193 | With prefix ARG, turn Show Paren mode on if and only if ARG is positive. | 20235 | With prefix ARG, turn Show Paren mode on if and only if ARG is positive. |
| 20194 | Returns the new status of Show Paren mode (non-nil means on). | 20236 | Returns the new status of Show Paren mode (non-nil means on). |
| @@ -20201,10 +20243,10 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. | |||
| 20201 | ;;;*** | 20243 | ;;;*** |
| 20202 | 20244 | ||
| 20203 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" | 20245 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" |
| 20204 | ;;;;;; (18104 24745)) | 20246 | ;;;;;; (18088 55094)) |
| 20205 | ;;; Generated autoloads from calendar/parse-time.el | 20247 | ;;; Generated autoloads from calendar/parse-time.el |
| 20206 | 20248 | ||
| 20207 | (autoload (quote parse-time-string) "parse-time" "\ | 20249 | (autoload 'parse-time-string "parse-time" "\ |
| 20208 | Parse the time-string STRING into (SEC MIN HOUR DAY MON YEAR DOW DST TZ). | 20250 | Parse the time-string STRING into (SEC MIN HOUR DAY MON YEAR DOW DST TZ). |
| 20209 | The values are identical to those of `decode-time', but any values that are | 20251 | The values are identical to those of `decode-time', but any values that are |
| 20210 | unknown are returned as nil. | 20252 | unknown are returned as nil. |
| @@ -20213,11 +20255,11 @@ unknown are returned as nil. | |||
| 20213 | 20255 | ||
| 20214 | ;;;*** | 20256 | ;;;*** |
| 20215 | 20257 | ||
| 20216 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (18104 | 20258 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (18088 |
| 20217 | ;;;;;; 24768)) | 20259 | ;;;;;; 55117)) |
| 20218 | ;;; Generated autoloads from progmodes/pascal.el | 20260 | ;;; Generated autoloads from progmodes/pascal.el |
| 20219 | 20261 | ||
| 20220 | (autoload (quote pascal-mode) "pascal" "\ | 20262 | (autoload 'pascal-mode "pascal" "\ |
| 20221 | Major mode for editing Pascal code. \\<pascal-mode-map> | 20263 | Major mode for editing Pascal code. \\<pascal-mode-map> |
| 20222 | TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. | 20264 | TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. |
| 20223 | 20265 | ||
| @@ -20267,10 +20309,10 @@ no args, if that value is non-nil. | |||
| 20267 | ;;;*** | 20309 | ;;;*** |
| 20268 | 20310 | ||
| 20269 | ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" | 20311 | ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" |
| 20270 | ;;;;;; (18104 24748)) | 20312 | ;;;;;; (18088 55097)) |
| 20271 | ;;; Generated autoloads from emulation/pc-mode.el | 20313 | ;;; Generated autoloads from emulation/pc-mode.el |
| 20272 | 20314 | ||
| 20273 | (autoload (quote pc-bindings-mode) "pc-mode" "\ | 20315 | (autoload 'pc-bindings-mode "pc-mode" "\ |
| 20274 | Set up certain key bindings for PC compatibility. | 20316 | Set up certain key bindings for PC compatibility. |
| 20275 | The keys affected are: | 20317 | The keys affected are: |
| 20276 | Delete (and its variants) delete forward instead of backward. | 20318 | Delete (and its variants) delete forward instead of backward. |
| @@ -20285,7 +20327,7 @@ C-Escape does list-buffers. | |||
| 20285 | ;;;*** | 20327 | ;;;*** |
| 20286 | 20328 | ||
| 20287 | ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" | 20329 | ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" |
| 20288 | ;;;;;; "emulation/pc-select.el" (18104 24748)) | 20330 | ;;;;;; "emulation/pc-select.el" (18210 30826)) |
| 20289 | ;;; Generated autoloads from emulation/pc-select.el | 20331 | ;;; Generated autoloads from emulation/pc-select.el |
| 20290 | 20332 | ||
| 20291 | (defvar pc-selection-mode nil "\ | 20333 | (defvar pc-selection-mode nil "\ |
| @@ -20295,9 +20337,9 @@ Setting this variable directly does not take effect; | |||
| 20295 | either customize it (see the info node `Easy Customization') | 20337 | either customize it (see the info node `Easy Customization') |
| 20296 | or call the function `pc-selection-mode'.") | 20338 | or call the function `pc-selection-mode'.") |
| 20297 | 20339 | ||
| 20298 | (custom-autoload (quote pc-selection-mode) "pc-select" nil) | 20340 | (custom-autoload 'pc-selection-mode "pc-select" nil) |
| 20299 | 20341 | ||
| 20300 | (autoload (quote pc-selection-mode) "pc-select" "\ | 20342 | (autoload 'pc-selection-mode "pc-select" "\ |
| 20301 | Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style. | 20343 | Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style. |
| 20302 | 20344 | ||
| 20303 | This mode enables Delete Selection mode and Transient Mark mode. | 20345 | This mode enables Delete Selection mode and Transient Mark mode. |
| @@ -20357,15 +20399,15 @@ This mode enables Delete Selection mode and Transient Mark mode. | |||
| 20357 | Setting this variable directly does not take effect; | 20399 | Setting this variable directly does not take effect; |
| 20358 | you must modify it using \\[customize] or \\[pc-selection-mode].") | 20400 | you must modify it using \\[customize] or \\[pc-selection-mode].") |
| 20359 | 20401 | ||
| 20360 | (custom-autoload (quote pc-selection-mode) "pc-select" nil) | 20402 | (custom-autoload 'pc-selection-mode "pc-select" nil) |
| 20361 | 20403 | ||
| 20362 | ;;;*** | 20404 | ;;;*** |
| 20363 | 20405 | ||
| 20364 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (18104 | 20406 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (18088 |
| 20365 | ;;;;;; 24738)) | 20407 | ;;;;;; 55087)) |
| 20366 | ;;; Generated autoloads from pcmpl-cvs.el | 20408 | ;;; Generated autoloads from pcmpl-cvs.el |
| 20367 | 20409 | ||
| 20368 | (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ | 20410 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ |
| 20369 | Completion rules for the `cvs' command. | 20411 | Completion rules for the `cvs' command. |
| 20370 | 20412 | ||
| 20371 | \(fn)" nil nil) | 20413 | \(fn)" nil nil) |
| @@ -20373,59 +20415,59 @@ Completion rules for the `cvs' command. | |||
| 20373 | ;;;*** | 20415 | ;;;*** |
| 20374 | 20416 | ||
| 20375 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) | 20417 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) |
| 20376 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (18104 24738)) | 20418 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (18088 55087)) |
| 20377 | ;;; Generated autoloads from pcmpl-gnu.el | 20419 | ;;; Generated autoloads from pcmpl-gnu.el |
| 20378 | 20420 | ||
| 20379 | (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ | 20421 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ |
| 20380 | Completion for `gzip'. | 20422 | Completion for `gzip'. |
| 20381 | 20423 | ||
| 20382 | \(fn)" nil nil) | 20424 | \(fn)" nil nil) |
| 20383 | 20425 | ||
| 20384 | (autoload (quote pcomplete/bzip2) "pcmpl-gnu" "\ | 20426 | (autoload 'pcomplete/bzip2 "pcmpl-gnu" "\ |
| 20385 | Completion for `bzip2'. | 20427 | Completion for `bzip2'. |
| 20386 | 20428 | ||
| 20387 | \(fn)" nil nil) | 20429 | \(fn)" nil nil) |
| 20388 | 20430 | ||
| 20389 | (autoload (quote pcomplete/make) "pcmpl-gnu" "\ | 20431 | (autoload 'pcomplete/make "pcmpl-gnu" "\ |
| 20390 | Completion for GNU `make'. | 20432 | Completion for GNU `make'. |
| 20391 | 20433 | ||
| 20392 | \(fn)" nil nil) | 20434 | \(fn)" nil nil) |
| 20393 | 20435 | ||
| 20394 | (autoload (quote pcomplete/tar) "pcmpl-gnu" "\ | 20436 | (autoload 'pcomplete/tar "pcmpl-gnu" "\ |
| 20395 | Completion for the GNU tar utility. | 20437 | Completion for the GNU tar utility. |
| 20396 | 20438 | ||
| 20397 | \(fn)" nil nil) | 20439 | \(fn)" nil nil) |
| 20398 | 20440 | ||
| 20399 | (defalias (quote pcomplete/gdb) (quote pcomplete/xargs)) | 20441 | (defalias 'pcomplete/gdb 'pcomplete/xargs) |
| 20400 | 20442 | ||
| 20401 | ;;;*** | 20443 | ;;;*** |
| 20402 | 20444 | ||
| 20403 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) | 20445 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) |
| 20404 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (18104 24738)) | 20446 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (18088 55087)) |
| 20405 | ;;; Generated autoloads from pcmpl-linux.el | 20447 | ;;; Generated autoloads from pcmpl-linux.el |
| 20406 | 20448 | ||
| 20407 | (autoload (quote pcomplete/kill) "pcmpl-linux" "\ | 20449 | (autoload 'pcomplete/kill "pcmpl-linux" "\ |
| 20408 | Completion for GNU/Linux `kill', using /proc filesystem. | 20450 | Completion for GNU/Linux `kill', using /proc filesystem. |
| 20409 | 20451 | ||
| 20410 | \(fn)" nil nil) | 20452 | \(fn)" nil nil) |
| 20411 | 20453 | ||
| 20412 | (autoload (quote pcomplete/umount) "pcmpl-linux" "\ | 20454 | (autoload 'pcomplete/umount "pcmpl-linux" "\ |
| 20413 | Completion for GNU/Linux `umount'. | 20455 | Completion for GNU/Linux `umount'. |
| 20414 | 20456 | ||
| 20415 | \(fn)" nil nil) | 20457 | \(fn)" nil nil) |
| 20416 | 20458 | ||
| 20417 | (autoload (quote pcomplete/mount) "pcmpl-linux" "\ | 20459 | (autoload 'pcomplete/mount "pcmpl-linux" "\ |
| 20418 | Completion for GNU/Linux `mount'. | 20460 | Completion for GNU/Linux `mount'. |
| 20419 | 20461 | ||
| 20420 | \(fn)" nil nil) | 20462 | \(fn)" nil nil) |
| 20421 | 20463 | ||
| 20422 | ;;;*** | 20464 | ;;;*** |
| 20423 | 20465 | ||
| 20424 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (18104 | 20466 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (18088 |
| 20425 | ;;;;;; 24738)) | 20467 | ;;;;;; 55087)) |
| 20426 | ;;; Generated autoloads from pcmpl-rpm.el | 20468 | ;;; Generated autoloads from pcmpl-rpm.el |
| 20427 | 20469 | ||
| 20428 | (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ | 20470 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ |
| 20429 | Completion for RedHat's `rpm' command. | 20471 | Completion for RedHat's `rpm' command. |
| 20430 | These rules were taken from the output of `rpm --help' on a RedHat 6.1 | 20472 | These rules were taken from the output of `rpm --help' on a RedHat 6.1 |
| 20431 | system. They follow my interpretation of what followed, but since I'm | 20473 | system. They follow my interpretation of what followed, but since I'm |
| @@ -20438,44 +20480,44 @@ You can use \\[eshell-report-bug] to do so. | |||
| 20438 | 20480 | ||
| 20439 | ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which | 20481 | ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which |
| 20440 | ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) | 20482 | ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) |
| 20441 | ;;;;;; "pcmpl-unix" "pcmpl-unix.el" (18104 24738)) | 20483 | ;;;;;; "pcmpl-unix" "pcmpl-unix.el" (18088 55087)) |
| 20442 | ;;; Generated autoloads from pcmpl-unix.el | 20484 | ;;; Generated autoloads from pcmpl-unix.el |
| 20443 | 20485 | ||
| 20444 | (autoload (quote pcomplete/cd) "pcmpl-unix" "\ | 20486 | (autoload 'pcomplete/cd "pcmpl-unix" "\ |
| 20445 | Completion for `cd'. | 20487 | Completion for `cd'. |
| 20446 | 20488 | ||
| 20447 | \(fn)" nil nil) | 20489 | \(fn)" nil nil) |
| 20448 | 20490 | ||
| 20449 | (defalias (quote pcomplete/pushd) (quote pcomplete/cd)) | 20491 | (defalias 'pcomplete/pushd 'pcomplete/cd) |
| 20450 | 20492 | ||
| 20451 | (autoload (quote pcomplete/rmdir) "pcmpl-unix" "\ | 20493 | (autoload 'pcomplete/rmdir "pcmpl-unix" "\ |
| 20452 | Completion for `rmdir'. | 20494 | Completion for `rmdir'. |
| 20453 | 20495 | ||
| 20454 | \(fn)" nil nil) | 20496 | \(fn)" nil nil) |
| 20455 | 20497 | ||
| 20456 | (autoload (quote pcomplete/rm) "pcmpl-unix" "\ | 20498 | (autoload 'pcomplete/rm "pcmpl-unix" "\ |
| 20457 | Completion for `rm'. | 20499 | Completion for `rm'. |
| 20458 | 20500 | ||
| 20459 | \(fn)" nil nil) | 20501 | \(fn)" nil nil) |
| 20460 | 20502 | ||
| 20461 | (autoload (quote pcomplete/xargs) "pcmpl-unix" "\ | 20503 | (autoload 'pcomplete/xargs "pcmpl-unix" "\ |
| 20462 | Completion for `xargs'. | 20504 | Completion for `xargs'. |
| 20463 | 20505 | ||
| 20464 | \(fn)" nil nil) | 20506 | \(fn)" nil nil) |
| 20465 | 20507 | ||
| 20466 | (defalias (quote pcomplete/time) (quote pcomplete/xargs)) | 20508 | (defalias 'pcomplete/time 'pcomplete/xargs) |
| 20467 | 20509 | ||
| 20468 | (autoload (quote pcomplete/which) "pcmpl-unix" "\ | 20510 | (autoload 'pcomplete/which "pcmpl-unix" "\ |
| 20469 | Completion for `which'. | 20511 | Completion for `which'. |
| 20470 | 20512 | ||
| 20471 | \(fn)" nil nil) | 20513 | \(fn)" nil nil) |
| 20472 | 20514 | ||
| 20473 | (autoload (quote pcomplete/chown) "pcmpl-unix" "\ | 20515 | (autoload 'pcomplete/chown "pcmpl-unix" "\ |
| 20474 | Completion for the `chown' command. | 20516 | Completion for the `chown' command. |
| 20475 | 20517 | ||
| 20476 | \(fn)" nil nil) | 20518 | \(fn)" nil nil) |
| 20477 | 20519 | ||
| 20478 | (autoload (quote pcomplete/chgrp) "pcmpl-unix" "\ | 20520 | (autoload 'pcomplete/chgrp "pcmpl-unix" "\ |
| 20479 | Completion for the `chgrp' command. | 20521 | Completion for the `chgrp' command. |
| 20480 | 20522 | ||
| 20481 | \(fn)" nil nil) | 20523 | \(fn)" nil nil) |
| @@ -20484,50 +20526,50 @@ Completion for the `chgrp' command. | |||
| 20484 | 20526 | ||
| 20485 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list | 20527 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list |
| 20486 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete | 20528 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete |
| 20487 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (18104 | 20529 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (18088 |
| 20488 | ;;;;;; 24738)) | 20530 | ;;;;;; 55087)) |
| 20489 | ;;; Generated autoloads from pcomplete.el | 20531 | ;;; Generated autoloads from pcomplete.el |
| 20490 | 20532 | ||
| 20491 | (autoload (quote pcomplete) "pcomplete" "\ | 20533 | (autoload 'pcomplete "pcomplete" "\ |
| 20492 | Support extensible programmable completion. | 20534 | Support extensible programmable completion. |
| 20493 | To use this function, just bind the TAB key to it, or add it to your | 20535 | To use this function, just bind the TAB key to it, or add it to your |
| 20494 | completion functions list (it should occur fairly early in the list). | 20536 | completion functions list (it should occur fairly early in the list). |
| 20495 | 20537 | ||
| 20496 | \(fn &optional INTERACTIVELY)" t nil) | 20538 | \(fn &optional INTERACTIVELY)" t nil) |
| 20497 | 20539 | ||
| 20498 | (autoload (quote pcomplete-reverse) "pcomplete" "\ | 20540 | (autoload 'pcomplete-reverse "pcomplete" "\ |
| 20499 | If cycling completion is in use, cycle backwards. | 20541 | If cycling completion is in use, cycle backwards. |
| 20500 | 20542 | ||
| 20501 | \(fn)" t nil) | 20543 | \(fn)" t nil) |
| 20502 | 20544 | ||
| 20503 | (autoload (quote pcomplete-expand-and-complete) "pcomplete" "\ | 20545 | (autoload 'pcomplete-expand-and-complete "pcomplete" "\ |
| 20504 | Expand the textual value of the current argument. | 20546 | Expand the textual value of the current argument. |
| 20505 | This will modify the current buffer. | 20547 | This will modify the current buffer. |
| 20506 | 20548 | ||
| 20507 | \(fn)" t nil) | 20549 | \(fn)" t nil) |
| 20508 | 20550 | ||
| 20509 | (autoload (quote pcomplete-continue) "pcomplete" "\ | 20551 | (autoload 'pcomplete-continue "pcomplete" "\ |
| 20510 | Complete without reference to any cycling completions. | 20552 | Complete without reference to any cycling completions. |
| 20511 | 20553 | ||
| 20512 | \(fn)" t nil) | 20554 | \(fn)" t nil) |
| 20513 | 20555 | ||
| 20514 | (autoload (quote pcomplete-expand) "pcomplete" "\ | 20556 | (autoload 'pcomplete-expand "pcomplete" "\ |
| 20515 | Expand the textual value of the current argument. | 20557 | Expand the textual value of the current argument. |
| 20516 | This will modify the current buffer. | 20558 | This will modify the current buffer. |
| 20517 | 20559 | ||
| 20518 | \(fn)" t nil) | 20560 | \(fn)" t nil) |
| 20519 | 20561 | ||
| 20520 | (autoload (quote pcomplete-help) "pcomplete" "\ | 20562 | (autoload 'pcomplete-help "pcomplete" "\ |
| 20521 | Display any help information relative to the current argument. | 20563 | Display any help information relative to the current argument. |
| 20522 | 20564 | ||
| 20523 | \(fn)" t nil) | 20565 | \(fn)" t nil) |
| 20524 | 20566 | ||
| 20525 | (autoload (quote pcomplete-list) "pcomplete" "\ | 20567 | (autoload 'pcomplete-list "pcomplete" "\ |
| 20526 | Show the list of possible completions for the current argument. | 20568 | Show the list of possible completions for the current argument. |
| 20527 | 20569 | ||
| 20528 | \(fn)" t nil) | 20570 | \(fn)" t nil) |
| 20529 | 20571 | ||
| 20530 | (autoload (quote pcomplete-comint-setup) "pcomplete" "\ | 20572 | (autoload 'pcomplete-comint-setup "pcomplete" "\ |
| 20531 | Setup a comint buffer to use pcomplete. | 20573 | Setup a comint buffer to use pcomplete. |
| 20532 | COMPLETEF-SYM should be the symbol where the | 20574 | COMPLETEF-SYM should be the symbol where the |
| 20533 | dynamic-complete-functions are kept. For comint mode itself, | 20575 | dynamic-complete-functions are kept. For comint mode itself, |
| @@ -20535,7 +20577,7 @@ this is `comint-dynamic-complete-functions'. | |||
| 20535 | 20577 | ||
| 20536 | \(fn COMPLETEF-SYM)" nil nil) | 20578 | \(fn COMPLETEF-SYM)" nil nil) |
| 20537 | 20579 | ||
| 20538 | (autoload (quote pcomplete-shell-setup) "pcomplete" "\ | 20580 | (autoload 'pcomplete-shell-setup "pcomplete" "\ |
| 20539 | Setup shell-mode to use pcomplete. | 20581 | Setup shell-mode to use pcomplete. |
| 20540 | 20582 | ||
| 20541 | \(fn)" nil nil) | 20583 | \(fn)" nil nil) |
| @@ -20544,10 +20586,10 @@ Setup shell-mode to use pcomplete. | |||
| 20544 | 20586 | ||
| 20545 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status | 20587 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status |
| 20546 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" | 20588 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" |
| 20547 | ;;;;;; "pcvs.el" (18104 24738)) | 20589 | ;;;;;; "pcvs.el" (18190 46607)) |
| 20548 | ;;; Generated autoloads from pcvs.el | 20590 | ;;; Generated autoloads from pcvs.el |
| 20549 | 20591 | ||
| 20550 | (autoload (quote cvs-checkout) "pcvs" "\ | 20592 | (autoload 'cvs-checkout "pcvs" "\ |
| 20551 | Run a 'cvs checkout MODULES' in DIR. | 20593 | Run a 'cvs checkout MODULES' in DIR. |
| 20552 | Feed the output to a *cvs* buffer, display it in the current window, | 20594 | Feed the output to a *cvs* buffer, display it in the current window, |
| 20553 | and run `cvs-mode' on it. | 20595 | and run `cvs-mode' on it. |
| @@ -20556,7 +20598,7 @@ With a prefix argument, prompt for cvs FLAGS to use. | |||
| 20556 | 20598 | ||
| 20557 | \(fn MODULES DIR FLAGS &optional ROOT)" t nil) | 20599 | \(fn MODULES DIR FLAGS &optional ROOT)" t nil) |
| 20558 | 20600 | ||
| 20559 | (autoload (quote cvs-quickdir) "pcvs" "\ | 20601 | (autoload 'cvs-quickdir "pcvs" "\ |
| 20560 | Open a *cvs* buffer on DIR without running cvs. | 20602 | Open a *cvs* buffer on DIR without running cvs. |
| 20561 | With a prefix argument, prompt for a directory to use. | 20603 | With a prefix argument, prompt for a directory to use. |
| 20562 | A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]), | 20604 | A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]), |
| @@ -20566,7 +20608,7 @@ FLAGS is ignored. | |||
| 20566 | 20608 | ||
| 20567 | \(fn DIR &optional FLAGS NOSHOW)" t nil) | 20609 | \(fn DIR &optional FLAGS NOSHOW)" t nil) |
| 20568 | 20610 | ||
| 20569 | (autoload (quote cvs-examine) "pcvs" "\ | 20611 | (autoload 'cvs-examine "pcvs" "\ |
| 20570 | Run a `cvs -n update' in the specified DIRECTORY. | 20612 | Run a `cvs -n update' in the specified DIRECTORY. |
| 20571 | That is, check what needs to be done, but don't change the disc. | 20613 | That is, check what needs to be done, but don't change the disc. |
| 20572 | Feed the output to a *cvs* buffer and run `cvs-mode' on it. | 20614 | Feed the output to a *cvs* buffer and run `cvs-mode' on it. |
| @@ -20577,7 +20619,7 @@ Optional argument NOSHOW if non-nil means not to display the buffer. | |||
| 20577 | 20619 | ||
| 20578 | \(fn DIRECTORY FLAGS &optional NOSHOW)" t nil) | 20620 | \(fn DIRECTORY FLAGS &optional NOSHOW)" t nil) |
| 20579 | 20621 | ||
| 20580 | (autoload (quote cvs-update) "pcvs" "\ | 20622 | (autoload 'cvs-update "pcvs" "\ |
| 20581 | Run a `cvs update' in the current working DIRECTORY. | 20623 | Run a `cvs update' in the current working DIRECTORY. |
| 20582 | Feed the output to a *cvs* buffer and run `cvs-mode' on it. | 20624 | Feed the output to a *cvs* buffer and run `cvs-mode' on it. |
| 20583 | With a \\[universal-argument] prefix argument, prompt for a directory to use. | 20625 | With a \\[universal-argument] prefix argument, prompt for a directory to use. |
| @@ -20588,7 +20630,7 @@ The prefix is also passed to `cvs-flags-query' to select the FLAGS | |||
| 20588 | 20630 | ||
| 20589 | \(fn DIRECTORY FLAGS)" t nil) | 20631 | \(fn DIRECTORY FLAGS)" t nil) |
| 20590 | 20632 | ||
| 20591 | (autoload (quote cvs-status) "pcvs" "\ | 20633 | (autoload 'cvs-status "pcvs" "\ |
| 20592 | Run a `cvs status' in the current working DIRECTORY. | 20634 | Run a `cvs status' in the current working DIRECTORY. |
| 20593 | Feed the output to a *cvs* buffer and run `cvs-mode' on it. | 20635 | Feed the output to a *cvs* buffer and run `cvs-mode' on it. |
| 20594 | With a prefix argument, prompt for a directory and cvs FLAGS to use. | 20636 | With a prefix argument, prompt for a directory and cvs FLAGS to use. |
| @@ -20598,22 +20640,22 @@ Optional argument NOSHOW if non-nil means not to display the buffer. | |||
| 20598 | 20640 | ||
| 20599 | \(fn DIRECTORY FLAGS &optional NOSHOW)" t nil) | 20641 | \(fn DIRECTORY FLAGS &optional NOSHOW)" t nil) |
| 20600 | 20642 | ||
| 20601 | (add-to-list (quote completion-ignored-extensions) "CVS/") | 20643 | (add-to-list 'completion-ignored-extensions "CVS/") |
| 20602 | 20644 | ||
| 20603 | (defvar cvs-dired-action (quote cvs-quickdir) "\ | 20645 | (defvar cvs-dired-action 'cvs-quickdir "\ |
| 20604 | The action to be performed when opening a CVS directory. | 20646 | The action to be performed when opening a CVS directory. |
| 20605 | Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'.") | 20647 | Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'.") |
| 20606 | 20648 | ||
| 20607 | (custom-autoload (quote cvs-dired-action) "pcvs" t) | 20649 | (custom-autoload 'cvs-dired-action "pcvs" t) |
| 20608 | 20650 | ||
| 20609 | (defvar cvs-dired-use-hook (quote (4)) "\ | 20651 | (defvar cvs-dired-use-hook '(4) "\ |
| 20610 | Whether or not opening a CVS directory should run PCL-CVS. | 20652 | Whether or not opening a CVS directory should run PCL-CVS. |
| 20611 | A value of nil means never do it. | 20653 | A value of nil means never do it. |
| 20612 | ALWAYS means to always do it unless a prefix argument is given to the | 20654 | ALWAYS means to always do it unless a prefix argument is given to the |
| 20613 | command that prompted the opening of the directory. | 20655 | command that prompted the opening of the directory. |
| 20614 | Anything else means to do it only if the prefix arg is equal to this value.") | 20656 | Anything else means to do it only if the prefix arg is equal to this value.") |
| 20615 | 20657 | ||
| 20616 | (custom-autoload (quote cvs-dired-use-hook) "pcvs" t) | 20658 | (custom-autoload 'cvs-dired-use-hook "pcvs" t) |
| 20617 | 20659 | ||
| 20618 | (defun cvs-dired-noselect (dir) "\ | 20660 | (defun cvs-dired-noselect (dir) "\ |
| 20619 | Run `cvs-examine' if DIR is a CVS administrative directory. | 20661 | Run `cvs-examine' if DIR is a CVS administrative directory. |
| @@ -20621,18 +20663,19 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 20621 | 20663 | ||
| 20622 | ;;;*** | 20664 | ;;;*** |
| 20623 | 20665 | ||
| 20624 | ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (18104 24738)) | 20666 | ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (18187 36839)) |
| 20625 | ;;; Generated autoloads from pcvs-defs.el | 20667 | ;;; Generated autoloads from pcvs-defs.el |
| 20626 | 20668 | ||
| 20627 | (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))) | 20669 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] '(menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea")) (define-key m [checkout] '(menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository")) (define-key m [update] '(menu-item "Update Directory" cvs-update :help "Fetch updates from the repository")) (define-key m [examine] '(menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea")) (fset 'cvs-global-menu m))) |
| 20628 | 20670 | ||
| 20629 | ;;;*** | 20671 | ;;;*** |
| 20630 | 20672 | ||
| 20631 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" | 20673 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" |
| 20632 | ;;;;;; (18104 24768)) | 20674 | ;;;;;; (18128 36990)) |
| 20633 | ;;; Generated autoloads from progmodes/perl-mode.el | 20675 | ;;; Generated autoloads from progmodes/perl-mode.el |
| 20676 | (put 'perl-indent-level 'safe-local-variable 'integerp) | ||
| 20634 | 20677 | ||
| 20635 | (autoload (quote perl-mode) "perl-mode" "\ | 20678 | (autoload 'perl-mode "perl-mode" "\ |
| 20636 | Major mode for editing Perl code. | 20679 | Major mode for editing Perl code. |
| 20637 | Expression and list commands understand all Perl brackets. | 20680 | Expression and list commands understand all Perl brackets. |
| 20638 | Tab indents for Perl code. | 20681 | Tab indents for Perl code. |
| @@ -20687,10 +20730,10 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 20687 | ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key | 20730 | ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key |
| 20688 | ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt | 20731 | ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt |
| 20689 | ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region | 20732 | ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region |
| 20690 | ;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (18104 24738)) | 20733 | ;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (18088 55088)) |
| 20691 | ;;; Generated autoloads from pgg.el | 20734 | ;;; Generated autoloads from pgg.el |
| 20692 | 20735 | ||
| 20693 | (autoload (quote pgg-encrypt-region) "pgg" "\ | 20736 | (autoload 'pgg-encrypt-region "pgg" "\ |
| 20694 | Encrypt the current region between START and END for RCPTS. | 20737 | Encrypt the current region between START and END for RCPTS. |
| 20695 | 20738 | ||
| 20696 | If optional argument SIGN is non-nil, do a combined sign and encrypt. | 20739 | If optional argument SIGN is non-nil, do a combined sign and encrypt. |
| @@ -20700,7 +20743,7 @@ passphrase cache or user. | |||
| 20700 | 20743 | ||
| 20701 | \(fn START END RCPTS &optional SIGN PASSPHRASE)" t nil) | 20744 | \(fn START END RCPTS &optional SIGN PASSPHRASE)" t nil) |
| 20702 | 20745 | ||
| 20703 | (autoload (quote pgg-encrypt-symmetric-region) "pgg" "\ | 20746 | (autoload 'pgg-encrypt-symmetric-region "pgg" "\ |
| 20704 | Encrypt the current region between START and END symmetric with passphrase. | 20747 | Encrypt the current region between START and END symmetric with passphrase. |
| 20705 | 20748 | ||
| 20706 | If optional PASSPHRASE is not specified, it will be obtained from the | 20749 | If optional PASSPHRASE is not specified, it will be obtained from the |
| @@ -20708,7 +20751,7 @@ cache or user. | |||
| 20708 | 20751 | ||
| 20709 | \(fn START END &optional PASSPHRASE)" t nil) | 20752 | \(fn START END &optional PASSPHRASE)" t nil) |
| 20710 | 20753 | ||
| 20711 | (autoload (quote pgg-encrypt-symmetric) "pgg" "\ | 20754 | (autoload 'pgg-encrypt-symmetric "pgg" "\ |
| 20712 | Encrypt the current buffer using a symmetric, rather than key-pair, cipher. | 20755 | Encrypt the current buffer using a symmetric, rather than key-pair, cipher. |
| 20713 | 20756 | ||
| 20714 | If optional arguments START and END are specified, only encrypt within | 20757 | If optional arguments START and END are specified, only encrypt within |
| @@ -20719,7 +20762,7 @@ passphrase cache or user. | |||
| 20719 | 20762 | ||
| 20720 | \(fn &optional START END PASSPHRASE)" t nil) | 20763 | \(fn &optional START END PASSPHRASE)" t nil) |
| 20721 | 20764 | ||
| 20722 | (autoload (quote pgg-encrypt) "pgg" "\ | 20765 | (autoload 'pgg-encrypt "pgg" "\ |
| 20723 | Encrypt the current buffer for RCPTS. | 20766 | Encrypt the current buffer for RCPTS. |
| 20724 | 20767 | ||
| 20725 | If optional argument SIGN is non-nil, do a combined sign and encrypt. | 20768 | If optional argument SIGN is non-nil, do a combined sign and encrypt. |
| @@ -20732,7 +20775,7 @@ passphrase cache or user. | |||
| 20732 | 20775 | ||
| 20733 | \(fn RCPTS &optional SIGN START END PASSPHRASE)" t nil) | 20776 | \(fn RCPTS &optional SIGN START END PASSPHRASE)" t nil) |
| 20734 | 20777 | ||
| 20735 | (autoload (quote pgg-decrypt-region) "pgg" "\ | 20778 | (autoload 'pgg-decrypt-region "pgg" "\ |
| 20736 | Decrypt the current region between START and END. | 20779 | Decrypt the current region between START and END. |
| 20737 | 20780 | ||
| 20738 | If optional PASSPHRASE is not specified, it will be obtained from the | 20781 | If optional PASSPHRASE is not specified, it will be obtained from the |
| @@ -20740,7 +20783,7 @@ passphrase cache or user. | |||
| 20740 | 20783 | ||
| 20741 | \(fn START END &optional PASSPHRASE)" t nil) | 20784 | \(fn START END &optional PASSPHRASE)" t nil) |
| 20742 | 20785 | ||
| 20743 | (autoload (quote pgg-decrypt) "pgg" "\ | 20786 | (autoload 'pgg-decrypt "pgg" "\ |
| 20744 | Decrypt the current buffer. | 20787 | Decrypt the current buffer. |
| 20745 | 20788 | ||
| 20746 | If optional arguments START and END are specified, only decrypt within | 20789 | If optional arguments START and END are specified, only decrypt within |
| @@ -20751,7 +20794,7 @@ passphrase cache or user. | |||
| 20751 | 20794 | ||
| 20752 | \(fn &optional START END PASSPHRASE)" t nil) | 20795 | \(fn &optional START END PASSPHRASE)" t nil) |
| 20753 | 20796 | ||
| 20754 | (autoload (quote pgg-sign-region) "pgg" "\ | 20797 | (autoload 'pgg-sign-region "pgg" "\ |
| 20755 | Make the signature from text between START and END. | 20798 | Make the signature from text between START and END. |
| 20756 | 20799 | ||
| 20757 | If the optional 3rd argument CLEARTEXT is non-nil, it does not create | 20800 | If the optional 3rd argument CLEARTEXT is non-nil, it does not create |
| @@ -20765,7 +20808,7 @@ passphrase cache or user. | |||
| 20765 | 20808 | ||
| 20766 | \(fn START END &optional CLEARTEXT PASSPHRASE)" t nil) | 20809 | \(fn START END &optional CLEARTEXT PASSPHRASE)" t nil) |
| 20767 | 20810 | ||
| 20768 | (autoload (quote pgg-sign) "pgg" "\ | 20811 | (autoload 'pgg-sign "pgg" "\ |
| 20769 | Sign the current buffer. | 20812 | Sign the current buffer. |
| 20770 | 20813 | ||
| 20771 | If the optional argument CLEARTEXT is non-nil, it does not create a | 20814 | If the optional argument CLEARTEXT is non-nil, it does not create a |
| @@ -20782,7 +20825,7 @@ passphrase cache or user. | |||
| 20782 | 20825 | ||
| 20783 | \(fn &optional CLEARTEXT START END PASSPHRASE)" t nil) | 20826 | \(fn &optional CLEARTEXT START END PASSPHRASE)" t nil) |
| 20784 | 20827 | ||
| 20785 | (autoload (quote pgg-verify-region) "pgg" "\ | 20828 | (autoload 'pgg-verify-region "pgg" "\ |
| 20786 | Verify the current region between START and END. | 20829 | Verify the current region between START and END. |
| 20787 | If the optional 3rd argument SIGNATURE is non-nil, it is treated as | 20830 | If the optional 3rd argument SIGNATURE is non-nil, it is treated as |
| 20788 | the detached signature of the current region. | 20831 | the detached signature of the current region. |
| @@ -20792,7 +20835,7 @@ signer's public key from `pgg-default-keyserver-address'. | |||
| 20792 | 20835 | ||
| 20793 | \(fn START END &optional SIGNATURE FETCH)" t nil) | 20836 | \(fn START END &optional SIGNATURE FETCH)" t nil) |
| 20794 | 20837 | ||
| 20795 | (autoload (quote pgg-verify) "pgg" "\ | 20838 | (autoload 'pgg-verify "pgg" "\ |
| 20796 | Verify the current buffer. | 20839 | Verify the current buffer. |
| 20797 | If the optional argument SIGNATURE is non-nil, it is treated as | 20840 | If the optional argument SIGNATURE is non-nil, it is treated as |
| 20798 | the detached signature of the current region. | 20841 | the detached signature of the current region. |
| @@ -20803,17 +20846,17 @@ within the region. | |||
| 20803 | 20846 | ||
| 20804 | \(fn &optional SIGNATURE FETCH START END)" t nil) | 20847 | \(fn &optional SIGNATURE FETCH START END)" t nil) |
| 20805 | 20848 | ||
| 20806 | (autoload (quote pgg-insert-key) "pgg" "\ | 20849 | (autoload 'pgg-insert-key "pgg" "\ |
| 20807 | Insert the ASCII armored public key. | 20850 | Insert the ASCII armored public key. |
| 20808 | 20851 | ||
| 20809 | \(fn)" t nil) | 20852 | \(fn)" t nil) |
| 20810 | 20853 | ||
| 20811 | (autoload (quote pgg-snarf-keys-region) "pgg" "\ | 20854 | (autoload 'pgg-snarf-keys-region "pgg" "\ |
| 20812 | Import public keys in the current region between START and END. | 20855 | Import public keys in the current region between START and END. |
| 20813 | 20856 | ||
| 20814 | \(fn START END)" t nil) | 20857 | \(fn START END)" t nil) |
| 20815 | 20858 | ||
| 20816 | (autoload (quote pgg-snarf-keys) "pgg" "\ | 20859 | (autoload 'pgg-snarf-keys "pgg" "\ |
| 20817 | Import public keys in the current buffer. | 20860 | Import public keys in the current buffer. |
| 20818 | 20861 | ||
| 20819 | \(fn)" t nil) | 20862 | \(fn)" t nil) |
| @@ -20821,10 +20864,10 @@ Import public keys in the current buffer. | |||
| 20821 | ;;;*** | 20864 | ;;;*** |
| 20822 | 20865 | ||
| 20823 | ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" | 20866 | ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" |
| 20824 | ;;;;;; (18104 24738)) | 20867 | ;;;;;; (18088 55087)) |
| 20825 | ;;; Generated autoloads from pgg-gpg.el | 20868 | ;;; Generated autoloads from pgg-gpg.el |
| 20826 | 20869 | ||
| 20827 | (autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ | 20870 | (autoload 'pgg-gpg-symmetric-key-p "pgg-gpg" "\ |
| 20828 | True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. | 20871 | True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. |
| 20829 | 20872 | ||
| 20830 | \(fn MESSAGE-KEYS)" nil nil) | 20873 | \(fn MESSAGE-KEYS)" nil nil) |
| @@ -20832,10 +20875,10 @@ True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. | |||
| 20832 | ;;;*** | 20875 | ;;;*** |
| 20833 | 20876 | ||
| 20834 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" | 20877 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" |
| 20835 | ;;;;;; (18104 24772)) | 20878 | ;;;;;; (18088 55120)) |
| 20836 | ;;; Generated autoloads from textmodes/picture.el | 20879 | ;;; Generated autoloads from textmodes/picture.el |
| 20837 | 20880 | ||
| 20838 | (autoload (quote picture-mode) "picture" "\ | 20881 | (autoload 'picture-mode "picture" "\ |
| 20839 | Switch to Picture mode, in which a quarter-plane screen model is used. | 20882 | Switch to Picture mode, in which a quarter-plane screen model is used. |
| 20840 | \\<picture-mode-map> | 20883 | \\<picture-mode-map> |
| 20841 | Printing characters replace instead of inserting themselves with motion | 20884 | Printing characters replace instead of inserting themselves with motion |
| @@ -20908,15 +20951,15 @@ they are not defaultly assigned to keys. | |||
| 20908 | 20951 | ||
| 20909 | \(fn)" t nil) | 20952 | \(fn)" t nil) |
| 20910 | 20953 | ||
| 20911 | (defalias (quote edit-picture) (quote picture-mode)) | 20954 | (defalias 'edit-picture 'picture-mode) |
| 20912 | 20955 | ||
| 20913 | ;;;*** | 20956 | ;;;*** |
| 20914 | 20957 | ||
| 20915 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" | 20958 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" |
| 20916 | ;;;;;; (18104 24772)) | 20959 | ;;;;;; (18088 55120)) |
| 20917 | ;;; Generated autoloads from textmodes/po.el | 20960 | ;;; Generated autoloads from textmodes/po.el |
| 20918 | 20961 | ||
| 20919 | (autoload (quote po-find-file-coding-system) "po" "\ | 20962 | (autoload 'po-find-file-coding-system "po" "\ |
| 20920 | Return a (DECODING . ENCODING) pair, according to PO file's charset. | 20963 | Return a (DECODING . ENCODING) pair, according to PO file's charset. |
| 20921 | Called through `file-coding-system-alist', before the file is visited for real. | 20964 | Called through `file-coding-system-alist', before the file is visited for real. |
| 20922 | 20965 | ||
| @@ -20924,10 +20967,10 @@ Called through `file-coding-system-alist', before the file is visited for real. | |||
| 20924 | 20967 | ||
| 20925 | ;;;*** | 20968 | ;;;*** |
| 20926 | 20969 | ||
| 20927 | ;;;### (autoloads (pong) "pong" "play/pong.el" (18104 24762)) | 20970 | ;;;### (autoloads (pong) "pong" "play/pong.el" (18088 55114)) |
| 20928 | ;;; Generated autoloads from play/pong.el | 20971 | ;;; Generated autoloads from play/pong.el |
| 20929 | 20972 | ||
| 20930 | (autoload (quote pong) "pong" "\ | 20973 | (autoload 'pong "pong" "\ |
| 20931 | Play pong and waste time. | 20974 | Play pong and waste time. |
| 20932 | This is an implementation of the classical game pong. | 20975 | This is an implementation of the classical game pong. |
| 20933 | Move left and right bats and try to bounce the ball to your opponent. | 20976 | Move left and right bats and try to bounce the ball to your opponent. |
| @@ -20941,22 +20984,22 @@ pong-mode keybindings:\\<pong-mode-map> | |||
| 20941 | ;;;*** | 20984 | ;;;*** |
| 20942 | 20985 | ||
| 20943 | ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer | 20986 | ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer |
| 20944 | ;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (18104 24748)) | 20987 | ;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (18098 47345)) |
| 20945 | ;;; Generated autoloads from emacs-lisp/pp.el | 20988 | ;;; Generated autoloads from emacs-lisp/pp.el |
| 20946 | 20989 | ||
| 20947 | (autoload (quote pp-to-string) "pp" "\ | 20990 | (autoload 'pp-to-string "pp" "\ |
| 20948 | Return a string containing the pretty-printed representation of OBJECT. | 20991 | Return a string containing the pretty-printed representation of OBJECT. |
| 20949 | OBJECT can be any Lisp object. Quoting characters are used as needed | 20992 | OBJECT can be any Lisp object. Quoting characters are used as needed |
| 20950 | to make output that `read' can handle, whenever this is possible. | 20993 | to make output that `read' can handle, whenever this is possible. |
| 20951 | 20994 | ||
| 20952 | \(fn OBJECT)" nil nil) | 20995 | \(fn OBJECT)" nil nil) |
| 20953 | 20996 | ||
| 20954 | (autoload (quote pp-buffer) "pp" "\ | 20997 | (autoload 'pp-buffer "pp" "\ |
| 20955 | Prettify the current buffer with printed representation of a Lisp object. | 20998 | Prettify the current buffer with printed representation of a Lisp object. |
| 20956 | 20999 | ||
| 20957 | \(fn)" nil nil) | 21000 | \(fn)" nil nil) |
| 20958 | 21001 | ||
| 20959 | (autoload (quote pp) "pp" "\ | 21002 | (autoload 'pp "pp" "\ |
| 20960 | Output the pretty-printed representation of OBJECT, any Lisp object. | 21003 | Output the pretty-printed representation of OBJECT, any Lisp object. |
| 20961 | Quoting characters are printed as needed to make output that `read' | 21004 | Quoting characters are printed as needed to make output that `read' |
| 20962 | can handle, whenever this is possible. | 21005 | can handle, whenever this is possible. |
| @@ -20964,13 +21007,13 @@ Output stream is STREAM, or value of `standard-output' (which see). | |||
| 20964 | 21007 | ||
| 20965 | \(fn OBJECT &optional STREAM)" nil nil) | 21008 | \(fn OBJECT &optional STREAM)" nil nil) |
| 20966 | 21009 | ||
| 20967 | (autoload (quote pp-eval-expression) "pp" "\ | 21010 | (autoload 'pp-eval-expression "pp" "\ |
| 20968 | Evaluate EXPRESSION and pretty-print its value. | 21011 | Evaluate EXPRESSION and pretty-print its value. |
| 20969 | Also add the value to the front of the list in the variable `values'. | 21012 | Also add the value to the front of the list in the variable `values'. |
| 20970 | 21013 | ||
| 20971 | \(fn EXPRESSION)" t nil) | 21014 | \(fn EXPRESSION)" t nil) |
| 20972 | 21015 | ||
| 20973 | (autoload (quote pp-eval-last-sexp) "pp" "\ | 21016 | (autoload 'pp-eval-last-sexp "pp" "\ |
| 20974 | Run `pp-eval-expression' on sexp before point (which see). | 21017 | Run `pp-eval-expression' on sexp before point (which see). |
| 20975 | With argument, pretty-print output into current buffer. | 21018 | With argument, pretty-print output into current buffer. |
| 20976 | Ignores leading comment characters. | 21019 | Ignores leading comment characters. |
| @@ -20997,10 +21040,10 @@ Ignores leading comment characters. | |||
| 20997 | ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview | 21040 | ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview |
| 20998 | ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript | 21041 | ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript |
| 20999 | ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" | 21042 | ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" |
| 21000 | ;;;;;; (18104 24738)) | 21043 | ;;;;;; (18211 32385)) |
| 21001 | ;;; Generated autoloads from printing.el | 21044 | ;;; Generated autoloads from printing.el |
| 21002 | 21045 | ||
| 21003 | (autoload (quote pr-interface) "printing" "\ | 21046 | (autoload 'pr-interface "printing" "\ |
| 21004 | Activate the printing interface buffer. | 21047 | Activate the printing interface buffer. |
| 21005 | 21048 | ||
| 21006 | If BUFFER is nil, the current buffer is used for printing. | 21049 | If BUFFER is nil, the current buffer is used for printing. |
| @@ -21009,7 +21052,7 @@ For more information, type \\[pr-interface-help]. | |||
| 21009 | 21052 | ||
| 21010 | \(fn &optional BUFFER)" t nil) | 21053 | \(fn &optional BUFFER)" t nil) |
| 21011 | 21054 | ||
| 21012 | (autoload (quote pr-ps-directory-preview) "printing" "\ | 21055 | (autoload 'pr-ps-directory-preview "printing" "\ |
| 21013 | Preview directory using ghostview. | 21056 | Preview directory using ghostview. |
| 21014 | 21057 | ||
| 21015 | Interactively, the command prompts for N-UP printing number, a directory, a | 21058 | Interactively, the command prompts for N-UP printing number, a directory, a |
| @@ -21028,7 +21071,7 @@ See also documentation for `pr-list-directory'. | |||
| 21028 | 21071 | ||
| 21029 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) | 21072 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) |
| 21030 | 21073 | ||
| 21031 | (autoload (quote pr-ps-directory-using-ghostscript) "printing" "\ | 21074 | (autoload 'pr-ps-directory-using-ghostscript "printing" "\ |
| 21032 | Print directory using PostScript through ghostscript. | 21075 | Print directory using PostScript through ghostscript. |
| 21033 | 21076 | ||
| 21034 | Interactively, the command prompts for N-UP printing number, a directory, a | 21077 | Interactively, the command prompts for N-UP printing number, a directory, a |
| @@ -21047,7 +21090,7 @@ See also documentation for `pr-list-directory'. | |||
| 21047 | 21090 | ||
| 21048 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) | 21091 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) |
| 21049 | 21092 | ||
| 21050 | (autoload (quote pr-ps-directory-print) "printing" "\ | 21093 | (autoload 'pr-ps-directory-print "printing" "\ |
| 21051 | Print directory using PostScript printer. | 21094 | Print directory using PostScript printer. |
| 21052 | 21095 | ||
| 21053 | Interactively, the command prompts for N-UP printing number, a directory, a | 21096 | Interactively, the command prompts for N-UP printing number, a directory, a |
| @@ -21066,7 +21109,7 @@ See also documentation for `pr-list-directory'. | |||
| 21066 | 21109 | ||
| 21067 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) | 21110 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) |
| 21068 | 21111 | ||
| 21069 | (autoload (quote pr-ps-directory-ps-print) "printing" "\ | 21112 | (autoload 'pr-ps-directory-ps-print "printing" "\ |
| 21070 | Print directory using PostScript printer or through ghostscript. | 21113 | Print directory using PostScript printer or through ghostscript. |
| 21071 | 21114 | ||
| 21072 | It depends on `pr-print-using-ghostscript'. | 21115 | It depends on `pr-print-using-ghostscript'. |
| @@ -21087,7 +21130,7 @@ See also documentation for `pr-list-directory'. | |||
| 21087 | 21130 | ||
| 21088 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) | 21131 | \(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil) |
| 21089 | 21132 | ||
| 21090 | (autoload (quote pr-ps-buffer-preview) "printing" "\ | 21133 | (autoload 'pr-ps-buffer-preview "printing" "\ |
| 21091 | Preview buffer using ghostview. | 21134 | Preview buffer using ghostview. |
| 21092 | 21135 | ||
| 21093 | Interactively, the command prompts for N-UP printing number and, when you use a | 21136 | Interactively, the command prompts for N-UP printing number and, when you use a |
| @@ -21101,7 +21144,7 @@ with that name. If FILENAME is t, prompts for a file name. | |||
| 21101 | 21144 | ||
| 21102 | \(fn N-UP &optional FILENAME)" t nil) | 21145 | \(fn N-UP &optional FILENAME)" t nil) |
| 21103 | 21146 | ||
| 21104 | (autoload (quote pr-ps-buffer-using-ghostscript) "printing" "\ | 21147 | (autoload 'pr-ps-buffer-using-ghostscript "printing" "\ |
| 21105 | Print buffer using PostScript through ghostscript. | 21148 | Print buffer using PostScript through ghostscript. |
| 21106 | 21149 | ||
| 21107 | Interactively, the command prompts for N-UP printing number and, when you use a | 21150 | Interactively, the command prompts for N-UP printing number and, when you use a |
| @@ -21115,7 +21158,7 @@ that name. If FILENAME is t, prompts for a file name. | |||
| 21115 | 21158 | ||
| 21116 | \(fn N-UP &optional FILENAME)" t nil) | 21159 | \(fn N-UP &optional FILENAME)" t nil) |
| 21117 | 21160 | ||
| 21118 | (autoload (quote pr-ps-buffer-print) "printing" "\ | 21161 | (autoload 'pr-ps-buffer-print "printing" "\ |
| 21119 | Print buffer using PostScript printer. | 21162 | Print buffer using PostScript printer. |
| 21120 | 21163 | ||
| 21121 | Interactively, the command prompts for N-UP printing number and, when you use a | 21164 | Interactively, the command prompts for N-UP printing number and, when you use a |
| @@ -21129,7 +21172,7 @@ that name. If FILENAME is t, prompts for a file name. | |||
| 21129 | 21172 | ||
| 21130 | \(fn N-UP &optional FILENAME)" t nil) | 21173 | \(fn N-UP &optional FILENAME)" t nil) |
| 21131 | 21174 | ||
| 21132 | (autoload (quote pr-ps-buffer-ps-print) "printing" "\ | 21175 | (autoload 'pr-ps-buffer-ps-print "printing" "\ |
| 21133 | Print buffer using PostScript printer or through ghostscript. | 21176 | Print buffer using PostScript printer or through ghostscript. |
| 21134 | 21177 | ||
| 21135 | It depends on `pr-print-using-ghostscript'. | 21178 | It depends on `pr-print-using-ghostscript'. |
| @@ -21145,63 +21188,63 @@ that name. If FILENAME is t, prompts for a file name. | |||
| 21145 | 21188 | ||
| 21146 | \(fn N-UP &optional FILENAME)" t nil) | 21189 | \(fn N-UP &optional FILENAME)" t nil) |
| 21147 | 21190 | ||
| 21148 | (autoload (quote pr-ps-region-preview) "printing" "\ | 21191 | (autoload 'pr-ps-region-preview "printing" "\ |
| 21149 | Preview region using ghostview. | 21192 | Preview region using ghostview. |
| 21150 | 21193 | ||
| 21151 | See also `pr-ps-buffer-preview'. | 21194 | See also `pr-ps-buffer-preview'. |
| 21152 | 21195 | ||
| 21153 | \(fn N-UP &optional FILENAME)" t nil) | 21196 | \(fn N-UP &optional FILENAME)" t nil) |
| 21154 | 21197 | ||
| 21155 | (autoload (quote pr-ps-region-using-ghostscript) "printing" "\ | 21198 | (autoload 'pr-ps-region-using-ghostscript "printing" "\ |
| 21156 | Print region using PostScript through ghostscript. | 21199 | Print region using PostScript through ghostscript. |
| 21157 | 21200 | ||
| 21158 | See also `pr-ps-buffer-using-ghostscript'. | 21201 | See also `pr-ps-buffer-using-ghostscript'. |
| 21159 | 21202 | ||
| 21160 | \(fn N-UP &optional FILENAME)" t nil) | 21203 | \(fn N-UP &optional FILENAME)" t nil) |
| 21161 | 21204 | ||
| 21162 | (autoload (quote pr-ps-region-print) "printing" "\ | 21205 | (autoload 'pr-ps-region-print "printing" "\ |
| 21163 | Print region using PostScript printer. | 21206 | Print region using PostScript printer. |
| 21164 | 21207 | ||
| 21165 | See also `pr-ps-buffer-print'. | 21208 | See also `pr-ps-buffer-print'. |
| 21166 | 21209 | ||
| 21167 | \(fn N-UP &optional FILENAME)" t nil) | 21210 | \(fn N-UP &optional FILENAME)" t nil) |
| 21168 | 21211 | ||
| 21169 | (autoload (quote pr-ps-region-ps-print) "printing" "\ | 21212 | (autoload 'pr-ps-region-ps-print "printing" "\ |
| 21170 | Print region using PostScript printer or through ghostscript. | 21213 | Print region using PostScript printer or through ghostscript. |
| 21171 | 21214 | ||
| 21172 | See also `pr-ps-buffer-ps-print'. | 21215 | See also `pr-ps-buffer-ps-print'. |
| 21173 | 21216 | ||
| 21174 | \(fn N-UP &optional FILENAME)" t nil) | 21217 | \(fn N-UP &optional FILENAME)" t nil) |
| 21175 | 21218 | ||
| 21176 | (autoload (quote pr-ps-mode-preview) "printing" "\ | 21219 | (autoload 'pr-ps-mode-preview "printing" "\ |
| 21177 | Preview major mode using ghostview. | 21220 | Preview major mode using ghostview. |
| 21178 | 21221 | ||
| 21179 | See also `pr-ps-buffer-preview'. | 21222 | See also `pr-ps-buffer-preview'. |
| 21180 | 21223 | ||
| 21181 | \(fn N-UP &optional FILENAME)" t nil) | 21224 | \(fn N-UP &optional FILENAME)" t nil) |
| 21182 | 21225 | ||
| 21183 | (autoload (quote pr-ps-mode-using-ghostscript) "printing" "\ | 21226 | (autoload 'pr-ps-mode-using-ghostscript "printing" "\ |
| 21184 | Print major mode using PostScript through ghostscript. | 21227 | Print major mode using PostScript through ghostscript. |
| 21185 | 21228 | ||
| 21186 | See also `pr-ps-buffer-using-ghostscript'. | 21229 | See also `pr-ps-buffer-using-ghostscript'. |
| 21187 | 21230 | ||
| 21188 | \(fn N-UP &optional FILENAME)" t nil) | 21231 | \(fn N-UP &optional FILENAME)" t nil) |
| 21189 | 21232 | ||
| 21190 | (autoload (quote pr-ps-mode-print) "printing" "\ | 21233 | (autoload 'pr-ps-mode-print "printing" "\ |
| 21191 | Print major mode using PostScript printer. | 21234 | Print major mode using PostScript printer. |
| 21192 | 21235 | ||
| 21193 | See also `pr-ps-buffer-print'. | 21236 | See also `pr-ps-buffer-print'. |
| 21194 | 21237 | ||
| 21195 | \(fn N-UP &optional FILENAME)" t nil) | 21238 | \(fn N-UP &optional FILENAME)" t nil) |
| 21196 | 21239 | ||
| 21197 | (autoload (quote pr-ps-mode-ps-print) "printing" "\ | 21240 | (autoload 'pr-ps-mode-ps-print "printing" "\ |
| 21198 | Print major mode using PostScript or through ghostscript. | 21241 | Print major mode using PostScript or through ghostscript. |
| 21199 | 21242 | ||
| 21200 | See also `pr-ps-buffer-ps-print'. | 21243 | See also `pr-ps-buffer-ps-print'. |
| 21201 | 21244 | ||
| 21202 | \(fn N-UP &optional FILENAME)" t nil) | 21245 | \(fn N-UP &optional FILENAME)" t nil) |
| 21203 | 21246 | ||
| 21204 | (autoload (quote pr-printify-directory) "printing" "\ | 21247 | (autoload 'pr-printify-directory "printing" "\ |
| 21205 | Replace nonprinting characters in directory with printable representations. | 21248 | Replace nonprinting characters in directory with printable representations. |
| 21206 | The printable representations use ^ (for ASCII control characters) or hex. | 21249 | The printable representations use ^ (for ASCII control characters) or hex. |
| 21207 | The characters tab, linefeed, space, return and formfeed are not affected. | 21250 | The characters tab, linefeed, space, return and formfeed are not affected. |
| @@ -21216,21 +21259,21 @@ See also documentation for `pr-list-directory'. | |||
| 21216 | 21259 | ||
| 21217 | \(fn &optional DIR FILE-REGEXP)" t nil) | 21260 | \(fn &optional DIR FILE-REGEXP)" t nil) |
| 21218 | 21261 | ||
| 21219 | (autoload (quote pr-printify-buffer) "printing" "\ | 21262 | (autoload 'pr-printify-buffer "printing" "\ |
| 21220 | Replace nonprinting characters in buffer with printable representations. | 21263 | Replace nonprinting characters in buffer with printable representations. |
| 21221 | The printable representations use ^ (for ASCII control characters) or hex. | 21264 | The printable representations use ^ (for ASCII control characters) or hex. |
| 21222 | The characters tab, linefeed, space, return and formfeed are not affected. | 21265 | The characters tab, linefeed, space, return and formfeed are not affected. |
| 21223 | 21266 | ||
| 21224 | \(fn)" t nil) | 21267 | \(fn)" t nil) |
| 21225 | 21268 | ||
| 21226 | (autoload (quote pr-printify-region) "printing" "\ | 21269 | (autoload 'pr-printify-region "printing" "\ |
| 21227 | Replace nonprinting characters in region with printable representations. | 21270 | Replace nonprinting characters in region with printable representations. |
| 21228 | The printable representations use ^ (for ASCII control characters) or hex. | 21271 | The printable representations use ^ (for ASCII control characters) or hex. |
| 21229 | The characters tab, linefeed, space, return and formfeed are not affected. | 21272 | The characters tab, linefeed, space, return and formfeed are not affected. |
| 21230 | 21273 | ||
| 21231 | \(fn)" t nil) | 21274 | \(fn)" t nil) |
| 21232 | 21275 | ||
| 21233 | (autoload (quote pr-txt-directory) "printing" "\ | 21276 | (autoload 'pr-txt-directory "printing" "\ |
| 21234 | Print directory using text printer. | 21277 | Print directory using text printer. |
| 21235 | 21278 | ||
| 21236 | Interactively, the command prompts for a directory and a file name regexp for | 21279 | Interactively, the command prompts for a directory and a file name regexp for |
| @@ -21243,22 +21286,22 @@ See also documentation for `pr-list-directory'. | |||
| 21243 | 21286 | ||
| 21244 | \(fn &optional DIR FILE-REGEXP)" t nil) | 21287 | \(fn &optional DIR FILE-REGEXP)" t nil) |
| 21245 | 21288 | ||
| 21246 | (autoload (quote pr-txt-buffer) "printing" "\ | 21289 | (autoload 'pr-txt-buffer "printing" "\ |
| 21247 | Print buffer using text printer. | 21290 | Print buffer using text printer. |
| 21248 | 21291 | ||
| 21249 | \(fn)" t nil) | 21292 | \(fn)" t nil) |
| 21250 | 21293 | ||
| 21251 | (autoload (quote pr-txt-region) "printing" "\ | 21294 | (autoload 'pr-txt-region "printing" "\ |
| 21252 | Print region using text printer. | 21295 | Print region using text printer. |
| 21253 | 21296 | ||
| 21254 | \(fn)" t nil) | 21297 | \(fn)" t nil) |
| 21255 | 21298 | ||
| 21256 | (autoload (quote pr-txt-mode) "printing" "\ | 21299 | (autoload 'pr-txt-mode "printing" "\ |
| 21257 | Print major mode using text printer. | 21300 | Print major mode using text printer. |
| 21258 | 21301 | ||
| 21259 | \(fn)" t nil) | 21302 | \(fn)" t nil) |
| 21260 | 21303 | ||
| 21261 | (autoload (quote pr-despool-preview) "printing" "\ | 21304 | (autoload 'pr-despool-preview "printing" "\ |
| 21262 | Preview spooled PostScript. | 21305 | Preview spooled PostScript. |
| 21263 | 21306 | ||
| 21264 | Interactively, when you use a prefix argument (C-u), the command prompts the | 21307 | Interactively, when you use a prefix argument (C-u), the command prompts the |
| @@ -21271,7 +21314,7 @@ PostScript image in a file with that name. | |||
| 21271 | 21314 | ||
| 21272 | \(fn &optional FILENAME)" t nil) | 21315 | \(fn &optional FILENAME)" t nil) |
| 21273 | 21316 | ||
| 21274 | (autoload (quote pr-despool-using-ghostscript) "printing" "\ | 21317 | (autoload 'pr-despool-using-ghostscript "printing" "\ |
| 21275 | Print spooled PostScript using ghostscript. | 21318 | Print spooled PostScript using ghostscript. |
| 21276 | 21319 | ||
| 21277 | Interactively, when you use a prefix argument (C-u), the command prompts the | 21320 | Interactively, when you use a prefix argument (C-u), the command prompts the |
| @@ -21284,7 +21327,7 @@ image in a file with that name. | |||
| 21284 | 21327 | ||
| 21285 | \(fn &optional FILENAME)" t nil) | 21328 | \(fn &optional FILENAME)" t nil) |
| 21286 | 21329 | ||
| 21287 | (autoload (quote pr-despool-print) "printing" "\ | 21330 | (autoload 'pr-despool-print "printing" "\ |
| 21288 | Send the spooled PostScript to the printer. | 21331 | Send the spooled PostScript to the printer. |
| 21289 | 21332 | ||
| 21290 | Interactively, when you use a prefix argument (C-u), the command prompts the | 21333 | Interactively, when you use a prefix argument (C-u), the command prompts the |
| @@ -21297,7 +21340,7 @@ image in a file with that name. | |||
| 21297 | 21340 | ||
| 21298 | \(fn &optional FILENAME)" t nil) | 21341 | \(fn &optional FILENAME)" t nil) |
| 21299 | 21342 | ||
| 21300 | (autoload (quote pr-despool-ps-print) "printing" "\ | 21343 | (autoload 'pr-despool-ps-print "printing" "\ |
| 21301 | Send the spooled PostScript to the printer or use ghostscript to print it. | 21344 | Send the spooled PostScript to the printer or use ghostscript to print it. |
| 21302 | 21345 | ||
| 21303 | Interactively, when you use a prefix argument (C-u), the command prompts the | 21346 | Interactively, when you use a prefix argument (C-u), the command prompts the |
| @@ -21310,32 +21353,32 @@ image in a file with that name. | |||
| 21310 | 21353 | ||
| 21311 | \(fn &optional FILENAME)" t nil) | 21354 | \(fn &optional FILENAME)" t nil) |
| 21312 | 21355 | ||
| 21313 | (autoload (quote pr-ps-file-preview) "printing" "\ | 21356 | (autoload 'pr-ps-file-preview "printing" "\ |
| 21314 | Preview PostScript file FILENAME. | 21357 | Preview PostScript file FILENAME. |
| 21315 | 21358 | ||
| 21316 | \(fn FILENAME)" t nil) | 21359 | \(fn FILENAME)" t nil) |
| 21317 | 21360 | ||
| 21318 | (autoload (quote pr-ps-file-up-preview) "printing" "\ | 21361 | (autoload 'pr-ps-file-up-preview "printing" "\ |
| 21319 | Preview PostScript file FILENAME. | 21362 | Preview PostScript file FILENAME. |
| 21320 | 21363 | ||
| 21321 | \(fn N-UP IFILENAME &optional OFILENAME)" t nil) | 21364 | \(fn N-UP IFILENAME &optional OFILENAME)" t nil) |
| 21322 | 21365 | ||
| 21323 | (autoload (quote pr-ps-file-using-ghostscript) "printing" "\ | 21366 | (autoload 'pr-ps-file-using-ghostscript "printing" "\ |
| 21324 | Print PostScript file FILENAME using ghostscript. | 21367 | Print PostScript file FILENAME using ghostscript. |
| 21325 | 21368 | ||
| 21326 | \(fn FILENAME)" t nil) | 21369 | \(fn FILENAME)" t nil) |
| 21327 | 21370 | ||
| 21328 | (autoload (quote pr-ps-file-print) "printing" "\ | 21371 | (autoload 'pr-ps-file-print "printing" "\ |
| 21329 | Print PostScript file FILENAME. | 21372 | Print PostScript file FILENAME. |
| 21330 | 21373 | ||
| 21331 | \(fn FILENAME)" t nil) | 21374 | \(fn FILENAME)" t nil) |
| 21332 | 21375 | ||
| 21333 | (autoload (quote pr-ps-file-ps-print) "printing" "\ | 21376 | (autoload 'pr-ps-file-ps-print "printing" "\ |
| 21334 | Send PostScript file FILENAME to printer or use ghostscript to print it. | 21377 | Send PostScript file FILENAME to printer or use ghostscript to print it. |
| 21335 | 21378 | ||
| 21336 | \(fn FILENAME)" t nil) | 21379 | \(fn FILENAME)" t nil) |
| 21337 | 21380 | ||
| 21338 | (autoload (quote pr-ps-file-up-ps-print) "printing" "\ | 21381 | (autoload 'pr-ps-file-up-ps-print "printing" "\ |
| 21339 | Process a PostScript file IFILENAME and send it to printer. | 21382 | Process a PostScript file IFILENAME and send it to printer. |
| 21340 | 21383 | ||
| 21341 | Interactively, the command prompts for N-UP printing number, for an input | 21384 | Interactively, the command prompts for N-UP printing number, for an input |
| @@ -21353,12 +21396,12 @@ file name. | |||
| 21353 | 21396 | ||
| 21354 | \(fn N-UP IFILENAME &optional OFILENAME)" t nil) | 21397 | \(fn N-UP IFILENAME &optional OFILENAME)" t nil) |
| 21355 | 21398 | ||
| 21356 | (autoload (quote pr-toggle-file-duplex) "printing" "\ | 21399 | (autoload 'pr-toggle-file-duplex "printing" "\ |
| 21357 | Toggle duplex for PostScript file. | 21400 | Toggle duplex for PostScript file. |
| 21358 | 21401 | ||
| 21359 | \(fn)" t nil) | 21402 | \(fn)" t nil) |
| 21360 | 21403 | ||
| 21361 | (autoload (quote pr-toggle-file-tumble) "printing" "\ | 21404 | (autoload 'pr-toggle-file-tumble "printing" "\ |
| 21362 | Toggle tumble for PostScript file. | 21405 | Toggle tumble for PostScript file. |
| 21363 | 21406 | ||
| 21364 | If tumble is off, produces a printing suitable for binding on the left or | 21407 | If tumble is off, produces a printing suitable for binding on the left or |
| @@ -21368,32 +21411,32 @@ bottom. | |||
| 21368 | 21411 | ||
| 21369 | \(fn)" t nil) | 21412 | \(fn)" t nil) |
| 21370 | 21413 | ||
| 21371 | (autoload (quote pr-toggle-file-landscape) "printing" "\ | 21414 | (autoload 'pr-toggle-file-landscape "printing" "\ |
| 21372 | Toggle landscape for PostScript file. | 21415 | Toggle landscape for PostScript file. |
| 21373 | 21416 | ||
| 21374 | \(fn)" t nil) | 21417 | \(fn)" t nil) |
| 21375 | 21418 | ||
| 21376 | (autoload (quote pr-toggle-ghostscript) "printing" "\ | 21419 | (autoload 'pr-toggle-ghostscript "printing" "\ |
| 21377 | Toggle printing using ghostscript. | 21420 | Toggle printing using ghostscript. |
| 21378 | 21421 | ||
| 21379 | \(fn)" t nil) | 21422 | \(fn)" t nil) |
| 21380 | 21423 | ||
| 21381 | (autoload (quote pr-toggle-faces) "printing" "\ | 21424 | (autoload 'pr-toggle-faces "printing" "\ |
| 21382 | Toggle printing with faces. | 21425 | Toggle printing with faces. |
| 21383 | 21426 | ||
| 21384 | \(fn)" t nil) | 21427 | \(fn)" t nil) |
| 21385 | 21428 | ||
| 21386 | (autoload (quote pr-toggle-spool) "printing" "\ | 21429 | (autoload 'pr-toggle-spool "printing" "\ |
| 21387 | Toggle spooling. | 21430 | Toggle spooling. |
| 21388 | 21431 | ||
| 21389 | \(fn)" t nil) | 21432 | \(fn)" t nil) |
| 21390 | 21433 | ||
| 21391 | (autoload (quote pr-toggle-duplex) "printing" "\ | 21434 | (autoload 'pr-toggle-duplex "printing" "\ |
| 21392 | Toggle duplex. | 21435 | Toggle duplex. |
| 21393 | 21436 | ||
| 21394 | \(fn)" t nil) | 21437 | \(fn)" t nil) |
| 21395 | 21438 | ||
| 21396 | (autoload (quote pr-toggle-tumble) "printing" "\ | 21439 | (autoload 'pr-toggle-tumble "printing" "\ |
| 21397 | Toggle tumble. | 21440 | Toggle tumble. |
| 21398 | 21441 | ||
| 21399 | If tumble is off, produces a printing suitable for binding on the left or | 21442 | If tumble is off, produces a printing suitable for binding on the left or |
| @@ -21403,97 +21446,97 @@ bottom. | |||
| 21403 | 21446 | ||
| 21404 | \(fn)" t nil) | 21447 | \(fn)" t nil) |
| 21405 | 21448 | ||
| 21406 | (autoload (quote pr-toggle-landscape) "printing" "\ | 21449 | (autoload 'pr-toggle-landscape "printing" "\ |
| 21407 | Toggle landscape. | 21450 | Toggle landscape. |
| 21408 | 21451 | ||
| 21409 | \(fn)" t nil) | 21452 | \(fn)" t nil) |
| 21410 | 21453 | ||
| 21411 | (autoload (quote pr-toggle-upside-down) "printing" "\ | 21454 | (autoload 'pr-toggle-upside-down "printing" "\ |
| 21412 | Toggle upside-down. | 21455 | Toggle upside-down. |
| 21413 | 21456 | ||
| 21414 | \(fn)" t nil) | 21457 | \(fn)" t nil) |
| 21415 | 21458 | ||
| 21416 | (autoload (quote pr-toggle-line) "printing" "\ | 21459 | (autoload 'pr-toggle-line "printing" "\ |
| 21417 | Toggle line number. | 21460 | Toggle line number. |
| 21418 | 21461 | ||
| 21419 | \(fn)" t nil) | 21462 | \(fn)" t nil) |
| 21420 | 21463 | ||
| 21421 | (autoload (quote pr-toggle-zebra) "printing" "\ | 21464 | (autoload 'pr-toggle-zebra "printing" "\ |
| 21422 | Toggle zebra stripes. | 21465 | Toggle zebra stripes. |
| 21423 | 21466 | ||
| 21424 | \(fn)" t nil) | 21467 | \(fn)" t nil) |
| 21425 | 21468 | ||
| 21426 | (autoload (quote pr-toggle-header) "printing" "\ | 21469 | (autoload 'pr-toggle-header "printing" "\ |
| 21427 | Toggle printing header. | 21470 | Toggle printing header. |
| 21428 | 21471 | ||
| 21429 | \(fn)" t nil) | 21472 | \(fn)" t nil) |
| 21430 | 21473 | ||
| 21431 | (autoload (quote pr-toggle-header-frame) "printing" "\ | 21474 | (autoload 'pr-toggle-header-frame "printing" "\ |
| 21432 | Toggle printing header frame. | 21475 | Toggle printing header frame. |
| 21433 | 21476 | ||
| 21434 | \(fn)" t nil) | 21477 | \(fn)" t nil) |
| 21435 | 21478 | ||
| 21436 | (autoload (quote pr-toggle-lock) "printing" "\ | 21479 | (autoload 'pr-toggle-lock "printing" "\ |
| 21437 | Toggle menu lock. | 21480 | Toggle menu lock. |
| 21438 | 21481 | ||
| 21439 | \(fn)" t nil) | 21482 | \(fn)" t nil) |
| 21440 | 21483 | ||
| 21441 | (autoload (quote pr-toggle-region) "printing" "\ | 21484 | (autoload 'pr-toggle-region "printing" "\ |
| 21442 | Toggle auto region. | 21485 | Toggle auto region. |
| 21443 | 21486 | ||
| 21444 | \(fn)" t nil) | 21487 | \(fn)" t nil) |
| 21445 | 21488 | ||
| 21446 | (autoload (quote pr-toggle-mode) "printing" "\ | 21489 | (autoload 'pr-toggle-mode "printing" "\ |
| 21447 | Toggle auto mode. | 21490 | Toggle auto mode. |
| 21448 | 21491 | ||
| 21449 | \(fn)" t nil) | 21492 | \(fn)" t nil) |
| 21450 | 21493 | ||
| 21451 | (autoload (quote pr-customize) "printing" "\ | 21494 | (autoload 'pr-customize "printing" "\ |
| 21452 | Customization of the `printing' group. | 21495 | Customization of the `printing' group. |
| 21453 | 21496 | ||
| 21454 | \(fn &rest IGNORE)" t nil) | 21497 | \(fn &rest IGNORE)" t nil) |
| 21455 | 21498 | ||
| 21456 | (autoload (quote lpr-customize) "printing" "\ | 21499 | (autoload 'lpr-customize "printing" "\ |
| 21457 | Customization of the `lpr' group. | 21500 | Customization of the `lpr' group. |
| 21458 | 21501 | ||
| 21459 | \(fn &rest IGNORE)" t nil) | 21502 | \(fn &rest IGNORE)" t nil) |
| 21460 | 21503 | ||
| 21461 | (autoload (quote pr-help) "printing" "\ | 21504 | (autoload 'pr-help "printing" "\ |
| 21462 | Help for the printing package. | 21505 | Help for the printing package. |
| 21463 | 21506 | ||
| 21464 | \(fn &rest IGNORE)" t nil) | 21507 | \(fn &rest IGNORE)" t nil) |
| 21465 | 21508 | ||
| 21466 | (autoload (quote pr-ps-name) "printing" "\ | 21509 | (autoload 'pr-ps-name "printing" "\ |
| 21467 | Interactively select a PostScript printer. | 21510 | Interactively select a PostScript printer. |
| 21468 | 21511 | ||
| 21469 | \(fn)" t nil) | 21512 | \(fn)" t nil) |
| 21470 | 21513 | ||
| 21471 | (autoload (quote pr-txt-name) "printing" "\ | 21514 | (autoload 'pr-txt-name "printing" "\ |
| 21472 | Interactively select a text printer. | 21515 | Interactively select a text printer. |
| 21473 | 21516 | ||
| 21474 | \(fn)" t nil) | 21517 | \(fn)" t nil) |
| 21475 | 21518 | ||
| 21476 | (autoload (quote pr-ps-utility) "printing" "\ | 21519 | (autoload 'pr-ps-utility "printing" "\ |
| 21477 | Interactively select a PostScript utility. | 21520 | Interactively select a PostScript utility. |
| 21478 | 21521 | ||
| 21479 | \(fn)" t nil) | 21522 | \(fn)" t nil) |
| 21480 | 21523 | ||
| 21481 | (autoload (quote pr-show-ps-setup) "printing" "\ | 21524 | (autoload 'pr-show-ps-setup "printing" "\ |
| 21482 | Show current ps-print settings. | 21525 | Show current ps-print settings. |
| 21483 | 21526 | ||
| 21484 | \(fn &rest IGNORE)" t nil) | 21527 | \(fn &rest IGNORE)" t nil) |
| 21485 | 21528 | ||
| 21486 | (autoload (quote pr-show-pr-setup) "printing" "\ | 21529 | (autoload 'pr-show-pr-setup "printing" "\ |
| 21487 | Show current printing settings. | 21530 | Show current printing settings. |
| 21488 | 21531 | ||
| 21489 | \(fn &rest IGNORE)" t nil) | 21532 | \(fn &rest IGNORE)" t nil) |
| 21490 | 21533 | ||
| 21491 | (autoload (quote pr-show-lpr-setup) "printing" "\ | 21534 | (autoload 'pr-show-lpr-setup "printing" "\ |
| 21492 | Show current lpr settings. | 21535 | Show current lpr settings. |
| 21493 | 21536 | ||
| 21494 | \(fn &rest IGNORE)" t nil) | 21537 | \(fn &rest IGNORE)" t nil) |
| 21495 | 21538 | ||
| 21496 | (autoload (quote pr-ps-fast-fire) "printing" "\ | 21539 | (autoload 'pr-ps-fast-fire "printing" "\ |
| 21497 | Fast fire function for PostScript printing. | 21540 | Fast fire function for PostScript printing. |
| 21498 | 21541 | ||
| 21499 | If a region is active, the region will be printed instead of the whole buffer. | 21542 | If a region is active, the region will be printed instead of the whole buffer. |
| @@ -21556,7 +21599,7 @@ are both set to t. | |||
| 21556 | 21599 | ||
| 21557 | \(fn N-UP &optional SELECT)" t nil) | 21600 | \(fn N-UP &optional SELECT)" t nil) |
| 21558 | 21601 | ||
| 21559 | (autoload (quote pr-txt-fast-fire) "printing" "\ | 21602 | (autoload 'pr-txt-fast-fire "printing" "\ |
| 21560 | Fast fire function for text printing. | 21603 | Fast fire function for text printing. |
| 21561 | 21604 | ||
| 21562 | If a region is active, the region will be printed instead of the whole buffer. | 21605 | If a region is active, the region will be printed instead of the whole buffer. |
| @@ -21585,10 +21628,10 @@ are both set to t. | |||
| 21585 | ;;;*** | 21628 | ;;;*** |
| 21586 | 21629 | ||
| 21587 | ;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el" | 21630 | ;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el" |
| 21588 | ;;;;;; (18104 24768)) | 21631 | ;;;;;; (18203 37789)) |
| 21589 | ;;; Generated autoloads from progmodes/prolog.el | 21632 | ;;; Generated autoloads from progmodes/prolog.el |
| 21590 | 21633 | ||
| 21591 | (autoload (quote prolog-mode) "prolog" "\ | 21634 | (autoload 'prolog-mode "prolog" "\ |
| 21592 | Major mode for editing Prolog code for Prologs. | 21635 | Major mode for editing Prolog code for Prologs. |
| 21593 | Blank lines and `%%...' separate paragraphs. `%'s start comments. | 21636 | Blank lines and `%%...' separate paragraphs. `%'s start comments. |
| 21594 | Commands: | 21637 | Commands: |
| @@ -21598,9 +21641,9 @@ if that value is non-nil. | |||
| 21598 | 21641 | ||
| 21599 | \(fn)" t nil) | 21642 | \(fn)" t nil) |
| 21600 | 21643 | ||
| 21601 | (defalias (quote run-prolog) (quote switch-to-prolog)) | 21644 | (defalias 'run-prolog 'switch-to-prolog) |
| 21602 | 21645 | ||
| 21603 | (autoload (quote switch-to-prolog) "prolog" "\ | 21646 | (autoload 'switch-to-prolog "prolog" "\ |
| 21604 | Run an inferior Prolog process, input and output via buffer *prolog*. | 21647 | Run an inferior Prolog process, input and output via buffer *prolog*. |
| 21605 | With prefix argument \\[universal-prefix], prompt for the program to use. | 21648 | With prefix argument \\[universal-prefix], prompt for the program to use. |
| 21606 | 21649 | ||
| @@ -21608,20 +21651,20 @@ With prefix argument \\[universal-prefix], prompt for the program to use. | |||
| 21608 | 21651 | ||
| 21609 | ;;;*** | 21652 | ;;;*** |
| 21610 | 21653 | ||
| 21611 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (18104 24739)) | 21654 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (18088 55088)) |
| 21612 | ;;; Generated autoloads from ps-bdf.el | 21655 | ;;; Generated autoloads from ps-bdf.el |
| 21613 | 21656 | ||
| 21614 | (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"))) "\ | 21657 | (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ |
| 21615 | *List of directories to search for `BDF' font files. | 21658 | *List of directories to search for `BDF' font files. |
| 21616 | The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | 21659 | The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") |
| 21617 | 21660 | ||
| 21618 | ;;;*** | 21661 | ;;;*** |
| 21619 | 21662 | ||
| 21620 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (18104 | 21663 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (18210 |
| 21621 | ;;;;;; 24768)) | 21664 | ;;;;;; 13716)) |
| 21622 | ;;; Generated autoloads from progmodes/ps-mode.el | 21665 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 21623 | 21666 | ||
| 21624 | (autoload (quote ps-mode) "ps-mode" "\ | 21667 | (autoload 'ps-mode "ps-mode" "\ |
| 21625 | Major mode for editing PostScript with GNU Emacs. | 21668 | Major mode for editing PostScript with GNU Emacs. |
| 21626 | 21669 | ||
| 21627 | Entry to this mode calls `ps-mode-hook'. | 21670 | Entry to this mode calls `ps-mode-hook'. |
| @@ -21669,24 +21712,24 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number | |||
| 21669 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer | 21712 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer |
| 21670 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces | 21713 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces |
| 21671 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type | 21714 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type |
| 21672 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (18104 | 21715 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (18214 |
| 21673 | ;;;;;; 24739)) | 21716 | ;;;;;; 4479)) |
| 21674 | ;;; Generated autoloads from ps-print.el | 21717 | ;;; Generated autoloads from ps-print.el |
| 21675 | 21718 | ||
| 21676 | (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")) "\ | 21719 | (defvar ps-page-dimensions-database (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5")) "\ |
| 21677 | *List associating a symbolic paper type to its width, height and doc media. | 21720 | *List associating a symbolic paper type to its width, height and doc media. |
| 21678 | See `ps-paper-type'.") | 21721 | See `ps-paper-type'.") |
| 21679 | 21722 | ||
| 21680 | (custom-autoload (quote ps-page-dimensions-database) "ps-print" t) | 21723 | (custom-autoload 'ps-page-dimensions-database "ps-print" t) |
| 21681 | 21724 | ||
| 21682 | (defvar ps-paper-type (quote letter) "\ | 21725 | (defvar ps-paper-type 'letter "\ |
| 21683 | *Specify the size of paper to format for. | 21726 | *Specify the size of paper to format for. |
| 21684 | Should be one of the paper types defined in `ps-page-dimensions-database', for | 21727 | Should be one of the paper types defined in `ps-page-dimensions-database', for |
| 21685 | example `letter', `legal' or `a4'.") | 21728 | example `letter', `legal' or `a4'.") |
| 21686 | 21729 | ||
| 21687 | (custom-autoload (quote ps-paper-type) "ps-print" t) | 21730 | (custom-autoload 'ps-paper-type "ps-print" t) |
| 21688 | 21731 | ||
| 21689 | (defvar ps-print-color-p (or (fboundp (quote x-color-values)) (fboundp (quote color-instance-rgb-components))) "\ | 21732 | (defvar ps-print-color-p (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) "\ |
| 21690 | *Specify how buffer's text color is printed. | 21733 | *Specify how buffer's text color is printed. |
| 21691 | 21734 | ||
| 21692 | Valid values are: | 21735 | Valid values are: |
| @@ -21700,14 +21743,14 @@ Valid values are: | |||
| 21700 | 21743 | ||
| 21701 | Any other value is treated as t.") | 21744 | Any other value is treated as t.") |
| 21702 | 21745 | ||
| 21703 | (custom-autoload (quote ps-print-color-p) "ps-print" t) | 21746 | (custom-autoload 'ps-print-color-p "ps-print" t) |
| 21704 | 21747 | ||
| 21705 | (autoload (quote ps-print-customize) "ps-print" "\ | 21748 | (autoload 'ps-print-customize "ps-print" "\ |
| 21706 | Customization of ps-print group. | 21749 | Customization of ps-print group. |
| 21707 | 21750 | ||
| 21708 | \(fn)" t nil) | 21751 | \(fn)" t nil) |
| 21709 | 21752 | ||
| 21710 | (autoload (quote ps-print-buffer) "ps-print" "\ | 21753 | (autoload 'ps-print-buffer "ps-print" "\ |
| 21711 | Generate and print a PostScript image of the buffer. | 21754 | Generate and print a PostScript image of the buffer. |
| 21712 | 21755 | ||
| 21713 | Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the | 21756 | Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the |
| @@ -21720,7 +21763,7 @@ image in a file with that name. | |||
| 21720 | 21763 | ||
| 21721 | \(fn &optional FILENAME)" t nil) | 21764 | \(fn &optional FILENAME)" t nil) |
| 21722 | 21765 | ||
| 21723 | (autoload (quote ps-print-buffer-with-faces) "ps-print" "\ | 21766 | (autoload 'ps-print-buffer-with-faces "ps-print" "\ |
| 21724 | Generate and print a PostScript image of the buffer. | 21767 | Generate and print a PostScript image of the buffer. |
| 21725 | Like `ps-print-buffer', but includes font, color, and underline information in | 21768 | Like `ps-print-buffer', but includes font, color, and underline information in |
| 21726 | the generated image. This command works only if you are using a window system, | 21769 | the generated image. This command works only if you are using a window system, |
| @@ -21728,13 +21771,13 @@ so it has a way to determine color values. | |||
| 21728 | 21771 | ||
| 21729 | \(fn &optional FILENAME)" t nil) | 21772 | \(fn &optional FILENAME)" t nil) |
| 21730 | 21773 | ||
| 21731 | (autoload (quote ps-print-region) "ps-print" "\ | 21774 | (autoload 'ps-print-region "ps-print" "\ |
| 21732 | Generate and print a PostScript image of the region. | 21775 | Generate and print a PostScript image of the region. |
| 21733 | Like `ps-print-buffer', but prints just the current region. | 21776 | Like `ps-print-buffer', but prints just the current region. |
| 21734 | 21777 | ||
| 21735 | \(fn FROM TO &optional FILENAME)" t nil) | 21778 | \(fn FROM TO &optional FILENAME)" t nil) |
| 21736 | 21779 | ||
| 21737 | (autoload (quote ps-print-region-with-faces) "ps-print" "\ | 21780 | (autoload 'ps-print-region-with-faces "ps-print" "\ |
| 21738 | Generate and print a PostScript image of the region. | 21781 | Generate and print a PostScript image of the region. |
| 21739 | Like `ps-print-region', but includes font, color, and underline information in | 21782 | Like `ps-print-region', but includes font, color, and underline information in |
| 21740 | the generated image. This command works only if you are using a window system, | 21783 | the generated image. This command works only if you are using a window system, |
| @@ -21742,7 +21785,7 @@ so it has a way to determine color values. | |||
| 21742 | 21785 | ||
| 21743 | \(fn FROM TO &optional FILENAME)" t nil) | 21786 | \(fn FROM TO &optional FILENAME)" t nil) |
| 21744 | 21787 | ||
| 21745 | (autoload (quote ps-spool-buffer) "ps-print" "\ | 21788 | (autoload 'ps-spool-buffer "ps-print" "\ |
| 21746 | Generate and spool a PostScript image of the buffer. | 21789 | Generate and spool a PostScript image of the buffer. |
| 21747 | Like `ps-print-buffer' except that the PostScript image is saved in a local | 21790 | Like `ps-print-buffer' except that the PostScript image is saved in a local |
| 21748 | buffer to be sent to the printer later. | 21791 | buffer to be sent to the printer later. |
| @@ -21751,7 +21794,7 @@ Use the command `ps-despool' to send the spooled images to the printer. | |||
| 21751 | 21794 | ||
| 21752 | \(fn)" t nil) | 21795 | \(fn)" t nil) |
| 21753 | 21796 | ||
| 21754 | (autoload (quote ps-spool-buffer-with-faces) "ps-print" "\ | 21797 | (autoload 'ps-spool-buffer-with-faces "ps-print" "\ |
| 21755 | Generate and spool a PostScript image of the buffer. | 21798 | Generate and spool a PostScript image of the buffer. |
| 21756 | Like `ps-spool-buffer', but includes font, color, and underline information in | 21799 | Like `ps-spool-buffer', but includes font, color, and underline information in |
| 21757 | the generated image. This command works only if you are using a window system, | 21800 | the generated image. This command works only if you are using a window system, |
| @@ -21761,7 +21804,7 @@ Use the command `ps-despool' to send the spooled images to the printer. | |||
| 21761 | 21804 | ||
| 21762 | \(fn)" t nil) | 21805 | \(fn)" t nil) |
| 21763 | 21806 | ||
| 21764 | (autoload (quote ps-spool-region) "ps-print" "\ | 21807 | (autoload 'ps-spool-region "ps-print" "\ |
| 21765 | Generate a PostScript image of the region and spool locally. | 21808 | Generate a PostScript image of the region and spool locally. |
| 21766 | Like `ps-spool-buffer', but spools just the current region. | 21809 | Like `ps-spool-buffer', but spools just the current region. |
| 21767 | 21810 | ||
| @@ -21769,7 +21812,7 @@ Use the command `ps-despool' to send the spooled images to the printer. | |||
| 21769 | 21812 | ||
| 21770 | \(fn FROM TO)" t nil) | 21813 | \(fn FROM TO)" t nil) |
| 21771 | 21814 | ||
| 21772 | (autoload (quote ps-spool-region-with-faces) "ps-print" "\ | 21815 | (autoload 'ps-spool-region-with-faces "ps-print" "\ |
| 21773 | Generate a PostScript image of the region and spool locally. | 21816 | Generate a PostScript image of the region and spool locally. |
| 21774 | Like `ps-spool-region', but includes font, color, and underline information in | 21817 | Like `ps-spool-region', but includes font, color, and underline information in |
| 21775 | the generated image. This command works only if you are using a window system, | 21818 | the generated image. This command works only if you are using a window system, |
| @@ -21779,7 +21822,7 @@ Use the command `ps-despool' to send the spooled images to the printer. | |||
| 21779 | 21822 | ||
| 21780 | \(fn FROM TO)" t nil) | 21823 | \(fn FROM TO)" t nil) |
| 21781 | 21824 | ||
| 21782 | (autoload (quote ps-despool) "ps-print" "\ | 21825 | (autoload 'ps-despool "ps-print" "\ |
| 21783 | Send the spooled PostScript to the printer. | 21826 | Send the spooled PostScript to the printer. |
| 21784 | 21827 | ||
| 21785 | Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the | 21828 | Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the |
| @@ -21792,7 +21835,7 @@ image in a file with that name. | |||
| 21792 | 21835 | ||
| 21793 | \(fn &optional FILENAME)" t nil) | 21836 | \(fn &optional FILENAME)" t nil) |
| 21794 | 21837 | ||
| 21795 | (autoload (quote ps-line-lengths) "ps-print" "\ | 21838 | (autoload 'ps-line-lengths "ps-print" "\ |
| 21796 | Display the correspondence between a line length and a font size. | 21839 | Display the correspondence between a line length and a font size. |
| 21797 | Done using the current ps-print setup. | 21840 | Done using the current ps-print setup. |
| 21798 | Try: pr -t file | awk '{printf \"%3d %s | 21841 | Try: pr -t file | awk '{printf \"%3d %s |
| @@ -21800,24 +21843,24 @@ Try: pr -t file | awk '{printf \"%3d %s | |||
| 21800 | 21843 | ||
| 21801 | \(fn)" t nil) | 21844 | \(fn)" t nil) |
| 21802 | 21845 | ||
| 21803 | (autoload (quote ps-nb-pages-buffer) "ps-print" "\ | 21846 | (autoload 'ps-nb-pages-buffer "ps-print" "\ |
| 21804 | Display number of pages to print this buffer, for various font heights. | 21847 | Display number of pages to print this buffer, for various font heights. |
| 21805 | The table depends on the current ps-print setup. | 21848 | The table depends on the current ps-print setup. |
| 21806 | 21849 | ||
| 21807 | \(fn NB-LINES)" t nil) | 21850 | \(fn NB-LINES)" t nil) |
| 21808 | 21851 | ||
| 21809 | (autoload (quote ps-nb-pages-region) "ps-print" "\ | 21852 | (autoload 'ps-nb-pages-region "ps-print" "\ |
| 21810 | Display number of pages to print the region, for various font heights. | 21853 | Display number of pages to print the region, for various font heights. |
| 21811 | The table depends on the current ps-print setup. | 21854 | The table depends on the current ps-print setup. |
| 21812 | 21855 | ||
| 21813 | \(fn NB-LINES)" t nil) | 21856 | \(fn NB-LINES)" t nil) |
| 21814 | 21857 | ||
| 21815 | (autoload (quote ps-setup) "ps-print" "\ | 21858 | (autoload 'ps-setup "ps-print" "\ |
| 21816 | Return the current PostScript-generation setup. | 21859 | Return the current PostScript-generation setup. |
| 21817 | 21860 | ||
| 21818 | \(fn)" nil nil) | 21861 | \(fn)" nil nil) |
| 21819 | 21862 | ||
| 21820 | (autoload (quote ps-extend-face-list) "ps-print" "\ | 21863 | (autoload 'ps-extend-face-list "ps-print" "\ |
| 21821 | Extend face in ALIST-SYM. | 21864 | Extend face in ALIST-SYM. |
| 21822 | 21865 | ||
| 21823 | If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged | 21866 | If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged |
| @@ -21832,7 +21875,7 @@ See `ps-extend-face' for documentation. | |||
| 21832 | 21875 | ||
| 21833 | \(fn FACE-EXTENSION-LIST &optional MERGE-P ALIST-SYM)" nil nil) | 21876 | \(fn FACE-EXTENSION-LIST &optional MERGE-P ALIST-SYM)" nil nil) |
| 21834 | 21877 | ||
| 21835 | (autoload (quote ps-extend-face) "ps-print" "\ | 21878 | (autoload 'ps-extend-face "ps-print" "\ |
| 21836 | Extend face in ALIST-SYM. | 21879 | Extend face in ALIST-SYM. |
| 21837 | 21880 | ||
| 21838 | If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged | 21881 | If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged |
| @@ -21867,16 +21910,16 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 21867 | ;;;*** | 21910 | ;;;*** |
| 21868 | 21911 | ||
| 21869 | ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" | 21912 | ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" |
| 21870 | ;;;;;; (18104 24768)) | 21913 | ;;;;;; (18208 48754)) |
| 21871 | ;;; Generated autoloads from progmodes/python.el | 21914 | ;;; Generated autoloads from progmodes/python.el |
| 21872 | 21915 | ||
| 21873 | (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) | 21916 | (add-to-list 'interpreter-mode-alist '("jython" . jython-mode)) |
| 21874 | 21917 | ||
| 21875 | (add-to-list (quote interpreter-mode-alist) (quote ("python" . python-mode))) | 21918 | (add-to-list 'interpreter-mode-alist '("python" . python-mode)) |
| 21876 | 21919 | ||
| 21877 | (add-to-list (quote auto-mode-alist) (quote ("\\.py\\'" . python-mode))) | 21920 | (add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode)) |
| 21878 | 21921 | ||
| 21879 | (autoload (quote run-python) "python" "\ | 21922 | (autoload 'run-python "python" "\ |
| 21880 | Run an inferior Python process, input and output via buffer *Python*. | 21923 | Run an inferior Python process, input and output via buffer *Python*. |
| 21881 | CMD is the Python command to run. NOSHOW non-nil means don't show the | 21924 | CMD is the Python command to run. NOSHOW non-nil means don't show the |
| 21882 | buffer automatically. | 21925 | buffer automatically. |
| @@ -21895,7 +21938,7 @@ buffer for a list of commands.) | |||
| 21895 | 21938 | ||
| 21896 | \(fn &optional CMD NOSHOW NEW)" t nil) | 21939 | \(fn &optional CMD NOSHOW NEW)" t nil) |
| 21897 | 21940 | ||
| 21898 | (autoload (quote python-mode) "python" "\ | 21941 | (autoload 'python-mode "python" "\ |
| 21899 | Major mode for editing Python files. | 21942 | Major mode for editing Python files. |
| 21900 | Font Lock mode is currently required for correct parsing of the source. | 21943 | Font Lock mode is currently required for correct parsing of the source. |
| 21901 | See also `jython-mode', which is actually invoked if the buffer appears to | 21944 | See also `jython-mode', which is actually invoked if the buffer appears to |
| @@ -21932,7 +21975,7 @@ with skeleton expansions for compound statement templates. | |||
| 21932 | 21975 | ||
| 21933 | \(fn)" t nil) | 21976 | \(fn)" t nil) |
| 21934 | 21977 | ||
| 21935 | (autoload (quote jython-mode) "python" "\ | 21978 | (autoload 'jython-mode "python" "\ |
| 21936 | Major mode for editing Jython files. | 21979 | Major mode for editing Jython files. |
| 21937 | Like `python-mode', but sets up parameters for Jython subprocesses. | 21980 | Like `python-mode', but sets up parameters for Jython subprocesses. |
| 21938 | Runs `jython-mode-hook' after `python-mode-hook'. | 21981 | Runs `jython-mode-hook' after `python-mode-hook'. |
| @@ -21942,10 +21985,10 @@ Runs `jython-mode-hook' after `python-mode-hook'. | |||
| 21942 | ;;;*** | 21985 | ;;;*** |
| 21943 | 21986 | ||
| 21944 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" | 21987 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" |
| 21945 | ;;;;;; (18104 24754)) | 21988 | ;;;;;; (18212 46007)) |
| 21946 | ;;; Generated autoloads from gnus/qp.el | 21989 | ;;; Generated autoloads from gnus/qp.el |
| 21947 | 21990 | ||
| 21948 | (autoload (quote quoted-printable-decode-region) "qp" "\ | 21991 | (autoload 'quoted-printable-decode-region "qp" "\ |
| 21949 | Decode quoted-printable in the region between FROM and TO, per RFC 2045. | 21992 | Decode quoted-printable in the region between FROM and TO, per RFC 2045. |
| 21950 | If CODING-SYSTEM is non-nil, decode bytes into characters with that | 21993 | If CODING-SYSTEM is non-nil, decode bytes into characters with that |
| 21951 | coding-system. | 21994 | coding-system. |
| @@ -21965,15 +22008,15 @@ them into characters should be done separately. | |||
| 21965 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map | 22008 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map |
| 21966 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout | 22009 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout |
| 21967 | ;;;;;; quail-define-package quail-use-package quail-title) "quail" | 22010 | ;;;;;; quail-define-package quail-use-package quail-title) "quail" |
| 21968 | ;;;;;; "international/quail.el" (18104 24757)) | 22011 | ;;;;;; "international/quail.el" (18120 34751)) |
| 21969 | ;;; Generated autoloads from international/quail.el | 22012 | ;;; Generated autoloads from international/quail.el |
| 21970 | 22013 | ||
| 21971 | (autoload (quote quail-title) "quail" "\ | 22014 | (autoload 'quail-title "quail" "\ |
| 21972 | Return the title of the current Quail package. | 22015 | Return the title of the current Quail package. |
| 21973 | 22016 | ||
| 21974 | \(fn)" nil nil) | 22017 | \(fn)" nil nil) |
| 21975 | 22018 | ||
| 21976 | (autoload (quote quail-use-package) "quail" "\ | 22019 | (autoload 'quail-use-package "quail" "\ |
| 21977 | Start using Quail package PACKAGE-NAME. | 22020 | Start using Quail package PACKAGE-NAME. |
| 21978 | The remaining arguments are libraries to be loaded before using the package. | 22021 | The remaining arguments are libraries to be loaded before using the package. |
| 21979 | 22022 | ||
| @@ -21982,7 +22025,7 @@ This activates input method defined by PACKAGE-NAME by running | |||
| 21982 | 22025 | ||
| 21983 | \(fn PACKAGE-NAME &rest LIBRARIES)" nil nil) | 22026 | \(fn PACKAGE-NAME &rest LIBRARIES)" nil nil) |
| 21984 | 22027 | ||
| 21985 | (autoload (quote quail-define-package) "quail" "\ | 22028 | (autoload 'quail-define-package "quail" "\ |
| 21986 | Define NAME as a new Quail package for input LANGUAGE. | 22029 | Define NAME as a new Quail package for input LANGUAGE. |
| 21987 | TITLE is a string to be displayed at mode-line to indicate this package. | 22030 | TITLE is a string to be displayed at mode-line to indicate this package. |
| 21988 | Optional arguments are GUIDANCE, DOCSTRING, TRANSLATION-KEYS, | 22031 | Optional arguments are GUIDANCE, DOCSTRING, TRANSLATION-KEYS, |
| @@ -22063,7 +22106,7 @@ non-Quail commands. | |||
| 22063 | 22106 | ||
| 22064 | \(fn NAME LANGUAGE TITLE &optional GUIDANCE DOCSTRING TRANSLATION-KEYS FORGET-LAST-SELECTION DETERMINISTIC KBD-TRANSLATE SHOW-LAYOUT CREATE-DECODE-MAP MAXIMUM-SHORTEST OVERLAY-PLIST UPDATE-TRANSLATION-FUNCTION CONVERSION-KEYS SIMPLE)" nil nil) | 22107 | \(fn NAME LANGUAGE TITLE &optional GUIDANCE DOCSTRING TRANSLATION-KEYS FORGET-LAST-SELECTION DETERMINISTIC KBD-TRANSLATE SHOW-LAYOUT CREATE-DECODE-MAP MAXIMUM-SHORTEST OVERLAY-PLIST UPDATE-TRANSLATION-FUNCTION CONVERSION-KEYS SIMPLE)" nil nil) |
| 22065 | 22108 | ||
| 22066 | (autoload (quote quail-set-keyboard-layout) "quail" "\ | 22109 | (autoload 'quail-set-keyboard-layout "quail" "\ |
| 22067 | Set the current keyboard layout to the same as keyboard KBD-TYPE. | 22110 | Set the current keyboard layout to the same as keyboard KBD-TYPE. |
| 22068 | 22111 | ||
| 22069 | Since some Quail packages depends on a physical layout of keys (not | 22112 | Since some Quail packages depends on a physical layout of keys (not |
| @@ -22074,7 +22117,7 @@ you type is correctly handled. | |||
| 22074 | 22117 | ||
| 22075 | \(fn KBD-TYPE)" t nil) | 22118 | \(fn KBD-TYPE)" t nil) |
| 22076 | 22119 | ||
| 22077 | (autoload (quote quail-show-keyboard-layout) "quail" "\ | 22120 | (autoload 'quail-show-keyboard-layout "quail" "\ |
| 22078 | Show the physical layout of the keyboard type KEYBOARD-TYPE. | 22121 | Show the physical layout of the keyboard type KEYBOARD-TYPE. |
| 22079 | 22122 | ||
| 22080 | The variable `quail-keyboard-layout-type' holds the currently selected | 22123 | The variable `quail-keyboard-layout-type' holds the currently selected |
| @@ -22082,7 +22125,7 @@ keyboard type. | |||
| 22082 | 22125 | ||
| 22083 | \(fn &optional KEYBOARD-TYPE)" t nil) | 22126 | \(fn &optional KEYBOARD-TYPE)" t nil) |
| 22084 | 22127 | ||
| 22085 | (autoload (quote quail-define-rules) "quail" "\ | 22128 | (autoload 'quail-define-rules "quail" "\ |
| 22086 | Define translation rules of the current Quail package. | 22129 | Define translation rules of the current Quail package. |
| 22087 | Each argument is a list of KEY and TRANSLATION. | 22130 | Each argument is a list of KEY and TRANSLATION. |
| 22088 | KEY is a string meaning a sequence of keystrokes to be translated. | 22131 | KEY is a string meaning a sequence of keystrokes to be translated. |
| @@ -22117,7 +22160,7 @@ the following annotation types are supported. | |||
| 22117 | 22160 | ||
| 22118 | \(fn &rest RULES)" nil (quote macro)) | 22161 | \(fn &rest RULES)" nil (quote macro)) |
| 22119 | 22162 | ||
| 22120 | (autoload (quote quail-install-map) "quail" "\ | 22163 | (autoload 'quail-install-map "quail" "\ |
| 22121 | Install the Quail map MAP in the current Quail package. | 22164 | Install the Quail map MAP in the current Quail package. |
| 22122 | 22165 | ||
| 22123 | Optional 2nd arg NAME, if non-nil, is a name of Quail package for | 22166 | Optional 2nd arg NAME, if non-nil, is a name of Quail package for |
| @@ -22127,7 +22170,7 @@ The installed map can be referred by the function `quail-map'. | |||
| 22127 | 22170 | ||
| 22128 | \(fn MAP &optional NAME)" nil nil) | 22171 | \(fn MAP &optional NAME)" nil nil) |
| 22129 | 22172 | ||
| 22130 | (autoload (quote quail-install-decode-map) "quail" "\ | 22173 | (autoload 'quail-install-decode-map "quail" "\ |
| 22131 | Install the Quail decode map DECODE-MAP in the current Quail package. | 22174 | Install the Quail decode map DECODE-MAP in the current Quail package. |
| 22132 | 22175 | ||
| 22133 | Optional 2nd arg NAME, if non-nil, is a name of Quail package for | 22176 | Optional 2nd arg NAME, if non-nil, is a name of Quail package for |
| @@ -22137,7 +22180,7 @@ The installed decode map can be referred by the function `quail-decode-map'. | |||
| 22137 | 22180 | ||
| 22138 | \(fn DECODE-MAP &optional NAME)" nil nil) | 22181 | \(fn DECODE-MAP &optional NAME)" nil nil) |
| 22139 | 22182 | ||
| 22140 | (autoload (quote quail-defrule) "quail" "\ | 22183 | (autoload 'quail-defrule "quail" "\ |
| 22141 | Add one translation rule, KEY to TRANSLATION, in the current Quail package. | 22184 | Add one translation rule, KEY to TRANSLATION, in the current Quail package. |
| 22142 | KEY is a string meaning a sequence of keystrokes to be translated. | 22185 | KEY is a string meaning a sequence of keystrokes to be translated. |
| 22143 | TRANSLATION is a character, a string, a vector, a Quail map, | 22186 | TRANSLATION is a character, a string, a vector, a Quail map, |
| @@ -22164,7 +22207,7 @@ to the current translations for KEY instead of replacing them. | |||
| 22164 | 22207 | ||
| 22165 | \(fn KEY TRANSLATION &optional NAME APPEND)" nil nil) | 22208 | \(fn KEY TRANSLATION &optional NAME APPEND)" nil nil) |
| 22166 | 22209 | ||
| 22167 | (autoload (quote quail-defrule-internal) "quail" "\ | 22210 | (autoload 'quail-defrule-internal "quail" "\ |
| 22168 | Define KEY as TRANS in a Quail map MAP. | 22211 | Define KEY as TRANS in a Quail map MAP. |
| 22169 | 22212 | ||
| 22170 | If Optional 4th arg APPEND is non-nil, TRANS is appended to the | 22213 | If Optional 4th arg APPEND is non-nil, TRANS is appended to the |
| @@ -22177,7 +22220,7 @@ function `quail-define-rules' for the detail. | |||
| 22177 | 22220 | ||
| 22178 | \(fn KEY TRANS MAP &optional APPEND DECODE-MAP PROPS)" nil nil) | 22221 | \(fn KEY TRANS MAP &optional APPEND DECODE-MAP PROPS)" nil nil) |
| 22179 | 22222 | ||
| 22180 | (autoload (quote quail-update-leim-list-file) "quail" "\ | 22223 | (autoload 'quail-update-leim-list-file "quail" "\ |
| 22181 | Update entries for Quail packages in `LEIM' list file in directory DIRNAME. | 22224 | Update entries for Quail packages in `LEIM' list file in directory DIRNAME. |
| 22182 | DIRNAME is a directory containing Emacs input methods; | 22225 | DIRNAME is a directory containing Emacs input methods; |
| 22183 | normally, it should specify the `leim' subdirectory | 22226 | normally, it should specify the `leim' subdirectory |
| @@ -22196,8 +22239,8 @@ of each directory. | |||
| 22196 | 22239 | ||
| 22197 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls | 22240 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls |
| 22198 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url | 22241 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url |
| 22199 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (18104 | 22242 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (18088 |
| 22200 | ;;;;;; 24760)) | 22243 | ;;;;;; 55112)) |
| 22201 | ;;; Generated autoloads from net/quickurl.el | 22244 | ;;; Generated autoloads from net/quickurl.el |
| 22202 | 22245 | ||
| 22203 | (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" "\ | 22246 | (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" "\ |
| @@ -22211,7 +22254,7 @@ To make use of this do something like: | |||
| 22211 | 22254 | ||
| 22212 | in your ~/.emacs (after loading/requiring quickurl).") | 22255 | in your ~/.emacs (after loading/requiring quickurl).") |
| 22213 | 22256 | ||
| 22214 | (autoload (quote quickurl) "quickurl" "\ | 22257 | (autoload 'quickurl "quickurl" "\ |
| 22215 | Insert an URL based on LOOKUP. | 22258 | Insert an URL based on LOOKUP. |
| 22216 | 22259 | ||
| 22217 | If not supplied LOOKUP is taken to be the word at point in the current | 22260 | If not supplied LOOKUP is taken to be the word at point in the current |
| @@ -22220,12 +22263,12 @@ buffer, this default action can be modifed via | |||
| 22220 | 22263 | ||
| 22221 | \(fn &optional LOOKUP)" t nil) | 22264 | \(fn &optional LOOKUP)" t nil) |
| 22222 | 22265 | ||
| 22223 | (autoload (quote quickurl-ask) "quickurl" "\ | 22266 | (autoload 'quickurl-ask "quickurl" "\ |
| 22224 | Insert an URL, with `completing-read' prompt, based on LOOKUP. | 22267 | Insert an URL, with `completing-read' prompt, based on LOOKUP. |
| 22225 | 22268 | ||
| 22226 | \(fn LOOKUP)" t nil) | 22269 | \(fn LOOKUP)" t nil) |
| 22227 | 22270 | ||
| 22228 | (autoload (quote quickurl-add-url) "quickurl" "\ | 22271 | (autoload 'quickurl-add-url "quickurl" "\ |
| 22229 | Allow the user to interactively add a new URL associated with WORD. | 22272 | Allow the user to interactively add a new URL associated with WORD. |
| 22230 | 22273 | ||
| 22231 | See `quickurl-grab-url' for details on how the default word/url combination | 22274 | See `quickurl-grab-url' for details on how the default word/url combination |
| @@ -22233,7 +22276,7 @@ is decided. | |||
| 22233 | 22276 | ||
| 22234 | \(fn WORD URL COMMENT)" t nil) | 22277 | \(fn WORD URL COMMENT)" t nil) |
| 22235 | 22278 | ||
| 22236 | (autoload (quote quickurl-browse-url) "quickurl" "\ | 22279 | (autoload 'quickurl-browse-url "quickurl" "\ |
| 22237 | Browse the URL associated with LOOKUP. | 22280 | Browse the URL associated with LOOKUP. |
| 22238 | 22281 | ||
| 22239 | If not supplied LOOKUP is taken to be the word at point in the | 22282 | If not supplied LOOKUP is taken to be the word at point in the |
| @@ -22242,17 +22285,17 @@ current buffer, this default action can be modifed via | |||
| 22242 | 22285 | ||
| 22243 | \(fn &optional LOOKUP)" t nil) | 22286 | \(fn &optional LOOKUP)" t nil) |
| 22244 | 22287 | ||
| 22245 | (autoload (quote quickurl-browse-url-ask) "quickurl" "\ | 22288 | (autoload 'quickurl-browse-url-ask "quickurl" "\ |
| 22246 | Browse the URL, with `completing-read' prompt, associated with LOOKUP. | 22289 | Browse the URL, with `completing-read' prompt, associated with LOOKUP. |
| 22247 | 22290 | ||
| 22248 | \(fn LOOKUP)" t nil) | 22291 | \(fn LOOKUP)" t nil) |
| 22249 | 22292 | ||
| 22250 | (autoload (quote quickurl-edit-urls) "quickurl" "\ | 22293 | (autoload 'quickurl-edit-urls "quickurl" "\ |
| 22251 | Pull `quickurl-url-file' into a buffer for hand editing. | 22294 | Pull `quickurl-url-file' into a buffer for hand editing. |
| 22252 | 22295 | ||
| 22253 | \(fn)" t nil) | 22296 | \(fn)" t nil) |
| 22254 | 22297 | ||
| 22255 | (autoload (quote quickurl-list-mode) "quickurl" "\ | 22298 | (autoload 'quickurl-list-mode "quickurl" "\ |
| 22256 | A mode for browsing the quickurl URL list. | 22299 | A mode for browsing the quickurl URL list. |
| 22257 | 22300 | ||
| 22258 | The key bindings for `quickurl-list-mode' are: | 22301 | The key bindings for `quickurl-list-mode' are: |
| @@ -22261,7 +22304,7 @@ The key bindings for `quickurl-list-mode' are: | |||
| 22261 | 22304 | ||
| 22262 | \(fn)" t nil) | 22305 | \(fn)" t nil) |
| 22263 | 22306 | ||
| 22264 | (autoload (quote quickurl-list) "quickurl" "\ | 22307 | (autoload 'quickurl-list "quickurl" "\ |
| 22265 | Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | 22308 | Display `quickurl-list' as a formatted list using `quickurl-list-mode'. |
| 22266 | 22309 | ||
| 22267 | \(fn)" t nil) | 22310 | \(fn)" t nil) |
| @@ -22269,10 +22312,10 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | |||
| 22269 | ;;;*** | 22312 | ;;;*** |
| 22270 | 22313 | ||
| 22271 | ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" | 22314 | ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" |
| 22272 | ;;;;;; "net/rcirc.el" (18104 24760)) | 22315 | ;;;;;; "net/rcirc.el" (18213 14317)) |
| 22273 | ;;; Generated autoloads from net/rcirc.el | 22316 | ;;; Generated autoloads from net/rcirc.el |
| 22274 | 22317 | ||
| 22275 | (autoload (quote rcirc) "rcirc" "\ | 22318 | (autoload 'rcirc "rcirc" "\ |
| 22276 | Connect to all servers in `rcirc-server-alist'. | 22319 | Connect to all servers in `rcirc-server-alist'. |
| 22277 | 22320 | ||
| 22278 | Do not connect to a server if it is already connected. | 22321 | Do not connect to a server if it is already connected. |
| @@ -22281,9 +22324,9 @@ If ARG is non-nil, instead prompt for connection parameters. | |||
| 22281 | 22324 | ||
| 22282 | \(fn ARG)" t nil) | 22325 | \(fn ARG)" t nil) |
| 22283 | 22326 | ||
| 22284 | (defalias (quote irc) (quote rcirc)) | 22327 | (defalias 'irc 'rcirc) |
| 22285 | 22328 | ||
| 22286 | (autoload (quote rcirc-connect) "rcirc" "\ | 22329 | (autoload 'rcirc-connect "rcirc" "\ |
| 22287 | Not documented | 22330 | Not documented |
| 22288 | 22331 | ||
| 22289 | \(fn SERVER &optional PORT NICK USER-NAME FULL-NAME STARTUP-CHANNELS)" nil nil) | 22332 | \(fn SERVER &optional PORT NICK USER-NAME FULL-NAME STARTUP-CHANNELS)" nil nil) |
| @@ -22295,20 +22338,20 @@ Setting this variable directly does not take effect; | |||
| 22295 | either customize it (see the info node `Easy Customization') | 22338 | either customize it (see the info node `Easy Customization') |
| 22296 | or call the function `rcirc-track-minor-mode'.") | 22339 | or call the function `rcirc-track-minor-mode'.") |
| 22297 | 22340 | ||
| 22298 | (custom-autoload (quote rcirc-track-minor-mode) "rcirc" nil) | 22341 | (custom-autoload 'rcirc-track-minor-mode "rcirc" nil) |
| 22299 | 22342 | ||
| 22300 | (autoload (quote rcirc-track-minor-mode) "rcirc" "\ | 22343 | (autoload 'rcirc-track-minor-mode "rcirc" "\ |
| 22301 | Global minor mode for tracking activity in rcirc buffers. | 22344 | Global minor mode for tracking activity in rcirc buffers. |
| 22302 | 22345 | ||
| 22303 | \(fn &optional ARG)" t nil) | 22346 | \(fn &optional ARG)" t nil) |
| 22304 | 22347 | ||
| 22305 | ;;;*** | 22348 | ;;;*** |
| 22306 | 22349 | ||
| 22307 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (18104 | 22350 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (18088 |
| 22308 | ;;;;;; 24760)) | 22351 | ;;;;;; 55112)) |
| 22309 | ;;; Generated autoloads from net/rcompile.el | 22352 | ;;; Generated autoloads from net/rcompile.el |
| 22310 | 22353 | ||
| 22311 | (autoload (quote remote-compile) "rcompile" "\ | 22354 | (autoload 'remote-compile "rcompile" "\ |
| 22312 | Compile the current buffer's directory on HOST. Log in as USER. | 22355 | Compile the current buffer's directory on HOST. Log in as USER. |
| 22313 | See \\[compile]. | 22356 | See \\[compile]. |
| 22314 | 22357 | ||
| @@ -22317,19 +22360,19 @@ See \\[compile]. | |||
| 22317 | ;;;*** | 22360 | ;;;*** |
| 22318 | 22361 | ||
| 22319 | ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" | 22362 | ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" |
| 22320 | ;;;;;; (18104 24748)) | 22363 | ;;;;;; (18173 8195)) |
| 22321 | ;;; Generated autoloads from emacs-lisp/re-builder.el | 22364 | ;;; Generated autoloads from emacs-lisp/re-builder.el |
| 22322 | 22365 | ||
| 22323 | (defalias (quote regexp-builder) (quote re-builder)) | 22366 | (defalias 'regexp-builder 're-builder) |
| 22324 | 22367 | ||
| 22325 | (autoload (quote re-builder) "re-builder" "\ | 22368 | (autoload 're-builder "re-builder" "\ |
| 22326 | Construct a regexp interactively. | 22369 | Construct a regexp interactively. |
| 22327 | 22370 | ||
| 22328 | \(fn)" t nil) | 22371 | \(fn)" t nil) |
| 22329 | 22372 | ||
| 22330 | ;;;*** | 22373 | ;;;*** |
| 22331 | 22374 | ||
| 22332 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (18104 24739)) | 22375 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (18161 20994)) |
| 22333 | ;;; Generated autoloads from recentf.el | 22376 | ;;; Generated autoloads from recentf.el |
| 22334 | 22377 | ||
| 22335 | (defvar recentf-mode nil "\ | 22378 | (defvar recentf-mode nil "\ |
| @@ -22339,9 +22382,9 @@ Setting this variable directly does not take effect; | |||
| 22339 | either customize it (see the info node `Easy Customization') | 22382 | either customize it (see the info node `Easy Customization') |
| 22340 | or call the function `recentf-mode'.") | 22383 | or call the function `recentf-mode'.") |
| 22341 | 22384 | ||
| 22342 | (custom-autoload (quote recentf-mode) "recentf" nil) | 22385 | (custom-autoload 'recentf-mode "recentf" nil) |
| 22343 | 22386 | ||
| 22344 | (autoload (quote recentf-mode) "recentf" "\ | 22387 | (autoload 'recentf-mode "recentf" "\ |
| 22345 | Toggle recentf mode. | 22388 | Toggle recentf mode. |
| 22346 | With prefix argument ARG, turn on if positive, otherwise off. | 22389 | With prefix argument ARG, turn on if positive, otherwise off. |
| 22347 | Returns non-nil if the new state is enabled. | 22390 | Returns non-nil if the new state is enabled. |
| @@ -22356,20 +22399,20 @@ that were operated on recently. | |||
| 22356 | ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle | 22399 | ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle |
| 22357 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle | 22400 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle |
| 22358 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle | 22401 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle |
| 22359 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (18104 | 22402 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (18088 |
| 22360 | ;;;;;; 24739)) | 22403 | ;;;;;; 55088)) |
| 22361 | ;;; Generated autoloads from rect.el | 22404 | ;;; Generated autoloads from rect.el |
| 22362 | 22405 | ||
| 22363 | (autoload (quote move-to-column-force) "rect" "\ | 22406 | (autoload 'move-to-column-force "rect" "\ |
| 22364 | If COLUMN is within a multi-column character, replace it by spaces and tab. | 22407 | If COLUMN is within a multi-column character, replace it by spaces and tab. |
| 22365 | As for `move-to-column', passing anything but nil or t in FLAG will move to | 22408 | As for `move-to-column', passing anything but nil or t in FLAG will move to |
| 22366 | the desired column only if the line is long enough. | 22409 | the desired column only if the line is long enough. |
| 22367 | 22410 | ||
| 22368 | \(fn COLUMN &optional FLAG)" nil nil) | 22411 | \(fn COLUMN &optional FLAG)" nil nil) |
| 22369 | 22412 | ||
| 22370 | (make-obsolete (quote move-to-column-force) (quote move-to-column) "21.2") | 22413 | (make-obsolete 'move-to-column-force 'move-to-column "21.2") |
| 22371 | 22414 | ||
| 22372 | (autoload (quote delete-rectangle) "rect" "\ | 22415 | (autoload 'delete-rectangle "rect" "\ |
| 22373 | Delete (don't save) text in the region-rectangle. | 22416 | Delete (don't save) text in the region-rectangle. |
| 22374 | The same range of columns is deleted in each line starting with the | 22417 | The same range of columns is deleted in each line starting with the |
| 22375 | line where the region begins and ending with the line where the region | 22418 | line where the region begins and ending with the line where the region |
| @@ -22381,7 +22424,7 @@ to be deleted. | |||
| 22381 | 22424 | ||
| 22382 | \(fn START END &optional FILL)" t nil) | 22425 | \(fn START END &optional FILL)" t nil) |
| 22383 | 22426 | ||
| 22384 | (autoload (quote delete-extract-rectangle) "rect" "\ | 22427 | (autoload 'delete-extract-rectangle "rect" "\ |
| 22385 | Delete the contents of the rectangle with corners at START and END. | 22428 | Delete the contents of the rectangle with corners at START and END. |
| 22386 | Return it as a list of strings, one for each line of the rectangle. | 22429 | Return it as a list of strings, one for each line of the rectangle. |
| 22387 | 22430 | ||
| @@ -22391,13 +22434,13 @@ deleted. | |||
| 22391 | 22434 | ||
| 22392 | \(fn START END &optional FILL)" nil nil) | 22435 | \(fn START END &optional FILL)" nil nil) |
| 22393 | 22436 | ||
| 22394 | (autoload (quote extract-rectangle) "rect" "\ | 22437 | (autoload 'extract-rectangle "rect" "\ |
| 22395 | Return the contents of the rectangle with corners at START and END. | 22438 | Return the contents of the rectangle with corners at START and END. |
| 22396 | Return it as a list of strings, one for each line of the rectangle. | 22439 | Return it as a list of strings, one for each line of the rectangle. |
| 22397 | 22440 | ||
| 22398 | \(fn START END)" nil nil) | 22441 | \(fn START END)" nil nil) |
| 22399 | 22442 | ||
| 22400 | (autoload (quote kill-rectangle) "rect" "\ | 22443 | (autoload 'kill-rectangle "rect" "\ |
| 22401 | Delete the region-rectangle and save it as the last killed one. | 22444 | Delete the region-rectangle and save it as the last killed one. |
| 22402 | 22445 | ||
| 22403 | When called from a program the rectangle's corners are START and END. | 22446 | When called from a program the rectangle's corners are START and END. |
| @@ -22414,12 +22457,12 @@ even beep.) | |||
| 22414 | 22457 | ||
| 22415 | \(fn START END &optional FILL)" t nil) | 22458 | \(fn START END &optional FILL)" t nil) |
| 22416 | 22459 | ||
| 22417 | (autoload (quote yank-rectangle) "rect" "\ | 22460 | (autoload 'yank-rectangle "rect" "\ |
| 22418 | Yank the last killed rectangle with upper left corner at point. | 22461 | Yank the last killed rectangle with upper left corner at point. |
| 22419 | 22462 | ||
| 22420 | \(fn)" t nil) | 22463 | \(fn)" t nil) |
| 22421 | 22464 | ||
| 22422 | (autoload (quote insert-rectangle) "rect" "\ | 22465 | (autoload 'insert-rectangle "rect" "\ |
| 22423 | Insert text of RECTANGLE with upper left corner at point. | 22466 | Insert text of RECTANGLE with upper left corner at point. |
| 22424 | RECTANGLE's first line is inserted at point, its second | 22467 | RECTANGLE's first line is inserted at point, its second |
| 22425 | line is inserted at a point vertically under point, etc. | 22468 | line is inserted at a point vertically under point, etc. |
| @@ -22429,7 +22472,7 @@ and point is at the lower right corner. | |||
| 22429 | 22472 | ||
| 22430 | \(fn RECTANGLE)" nil nil) | 22473 | \(fn RECTANGLE)" nil nil) |
| 22431 | 22474 | ||
| 22432 | (autoload (quote open-rectangle) "rect" "\ | 22475 | (autoload 'open-rectangle "rect" "\ |
| 22433 | Blank out the region-rectangle, shifting text right. | 22476 | Blank out the region-rectangle, shifting text right. |
| 22434 | 22477 | ||
| 22435 | The text previously in the region is not overwritten by the blanks, | 22478 | The text previously in the region is not overwritten by the blanks, |
| @@ -22441,9 +22484,9 @@ on the right side of the rectangle. | |||
| 22441 | 22484 | ||
| 22442 | \(fn START END &optional FILL)" t nil) | 22485 | \(fn START END &optional FILL)" t nil) |
| 22443 | 22486 | ||
| 22444 | (defalias (quote close-rectangle) (quote delete-whitespace-rectangle)) | 22487 | (defalias 'close-rectangle 'delete-whitespace-rectangle) |
| 22445 | 22488 | ||
| 22446 | (autoload (quote delete-whitespace-rectangle) "rect" "\ | 22489 | (autoload 'delete-whitespace-rectangle "rect" "\ |
| 22447 | Delete all whitespace following a specified column in each line. | 22490 | Delete all whitespace following a specified column in each line. |
| 22448 | The left edge of the rectangle specifies the position in each line | 22491 | The left edge of the rectangle specifies the position in each line |
| 22449 | at which whitespace deletion should begin. On each line in the | 22492 | at which whitespace deletion should begin. On each line in the |
| @@ -22454,7 +22497,7 @@ With a prefix (or a FILL) argument, also fill too short lines. | |||
| 22454 | 22497 | ||
| 22455 | \(fn START END &optional FILL)" t nil) | 22498 | \(fn START END &optional FILL)" t nil) |
| 22456 | 22499 | ||
| 22457 | (autoload (quote string-rectangle) "rect" "\ | 22500 | (autoload 'string-rectangle "rect" "\ |
| 22458 | Replace rectangle contents with STRING on each line. | 22501 | Replace rectangle contents with STRING on each line. |
| 22459 | The length of STRING need not be the same as the rectangle width. | 22502 | The length of STRING need not be the same as the rectangle width. |
| 22460 | 22503 | ||
| @@ -22462,9 +22505,9 @@ Called from a program, takes three args; START, END and STRING. | |||
| 22462 | 22505 | ||
| 22463 | \(fn START END STRING)" t nil) | 22506 | \(fn START END STRING)" t nil) |
| 22464 | 22507 | ||
| 22465 | (defalias (quote replace-rectangle) (quote string-rectangle)) | 22508 | (defalias 'replace-rectangle 'string-rectangle) |
| 22466 | 22509 | ||
| 22467 | (autoload (quote string-insert-rectangle) "rect" "\ | 22510 | (autoload 'string-insert-rectangle "rect" "\ |
| 22468 | Insert STRING on each line of region-rectangle, shifting text right. | 22511 | Insert STRING on each line of region-rectangle, shifting text right. |
| 22469 | 22512 | ||
| 22470 | When called from a program, the rectangle's corners are START and END. | 22513 | When called from a program, the rectangle's corners are START and END. |
| @@ -22473,7 +22516,7 @@ This command does not delete or overwrite any existing text. | |||
| 22473 | 22516 | ||
| 22474 | \(fn START END STRING)" t nil) | 22517 | \(fn START END STRING)" t nil) |
| 22475 | 22518 | ||
| 22476 | (autoload (quote clear-rectangle) "rect" "\ | 22519 | (autoload 'clear-rectangle "rect" "\ |
| 22477 | Blank out the region-rectangle. | 22520 | Blank out the region-rectangle. |
| 22478 | The text previously in the region is overwritten with blanks. | 22521 | The text previously in the region is overwritten with blanks. |
| 22479 | 22522 | ||
| @@ -22485,13 +22528,13 @@ rectangle which were empty. | |||
| 22485 | 22528 | ||
| 22486 | ;;;*** | 22529 | ;;;*** |
| 22487 | 22530 | ||
| 22488 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (18104 | 22531 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (18120 |
| 22489 | ;;;;;; 24772)) | 22532 | ;;;;;; 34753)) |
| 22490 | ;;; Generated autoloads from textmodes/refill.el | 22533 | ;;; Generated autoloads from textmodes/refill.el |
| 22491 | 22534 | ||
| 22492 | (autoload (quote refill-mode) "refill" "\ | 22535 | (autoload 'refill-mode "refill" "\ |
| 22493 | Toggle Refill minor mode. | 22536 | Toggle Refill minor mode. |
| 22494 | With prefix arg, turn Refill mode on iff arg is positive. | 22537 | With prefix arg, turn Refill mode on if arg is positive, otherwise turn it off. |
| 22495 | 22538 | ||
| 22496 | When Refill mode is on, the current paragraph will be formatted when | 22539 | When Refill mode is on, the current paragraph will be formatted when |
| 22497 | changes are made within it. Self-inserting characters only cause | 22540 | changes are made within it. Self-inserting characters only cause |
| @@ -22502,15 +22545,15 @@ refilling if they would cause auto-filling. | |||
| 22502 | ;;;*** | 22545 | ;;;*** |
| 22503 | 22546 | ||
| 22504 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode | 22547 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode |
| 22505 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (18104 24772)) | 22548 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (18203 37790)) |
| 22506 | ;;; Generated autoloads from textmodes/reftex.el | 22549 | ;;; Generated autoloads from textmodes/reftex.el |
| 22507 | 22550 | ||
| 22508 | (autoload (quote turn-on-reftex) "reftex" "\ | 22551 | (autoload 'turn-on-reftex "reftex" "\ |
| 22509 | Turn on RefTeX mode. | 22552 | Turn on RefTeX mode. |
| 22510 | 22553 | ||
| 22511 | \(fn)" nil nil) | 22554 | \(fn)" nil nil) |
| 22512 | 22555 | ||
| 22513 | (autoload (quote reftex-mode) "reftex" "\ | 22556 | (autoload 'reftex-mode "reftex" "\ |
| 22514 | Minor mode with distinct support for \\label, \\ref and \\cite in LaTeX. | 22557 | Minor mode with distinct support for \\label, \\ref and \\cite in LaTeX. |
| 22515 | 22558 | ||
| 22516 | \\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing | 22559 | \\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing |
| @@ -22543,7 +22586,7 @@ on the menu bar. | |||
| 22543 | 22586 | ||
| 22544 | \(fn &optional ARG)" t nil) | 22587 | \(fn &optional ARG)" t nil) |
| 22545 | 22588 | ||
| 22546 | (autoload (quote reftex-reset-scanning-information) "reftex" "\ | 22589 | (autoload 'reftex-reset-scanning-information "reftex" "\ |
| 22547 | Reset the symbols containing information from buffer scanning. | 22590 | Reset the symbols containing information from buffer scanning. |
| 22548 | This enforces rescanning the buffer on next use. | 22591 | This enforces rescanning the buffer on next use. |
| 22549 | 22592 | ||
| @@ -22552,10 +22595,10 @@ This enforces rescanning the buffer on next use. | |||
| 22552 | ;;;*** | 22595 | ;;;*** |
| 22553 | 22596 | ||
| 22554 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" | 22597 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" |
| 22555 | ;;;;;; (18104 24772)) | 22598 | ;;;;;; (18191 7159)) |
| 22556 | ;;; Generated autoloads from textmodes/reftex-cite.el | 22599 | ;;; Generated autoloads from textmodes/reftex-cite.el |
| 22557 | 22600 | ||
| 22558 | (autoload (quote reftex-citation) "reftex-cite" "\ | 22601 | (autoload 'reftex-citation "reftex-cite" "\ |
| 22559 | Make a citation using BibTeX database files. | 22602 | Make a citation using BibTeX database files. |
| 22560 | After prompting for a regular expression, scans the buffers with | 22603 | After prompting for a regular expression, scans the buffers with |
| 22561 | bibtex entries (taken from the \\bibliography command) and offers the | 22604 | bibtex entries (taken from the \\bibliography command) and offers the |
| @@ -22582,27 +22625,27 @@ While entering the regexp, completion on knows citation keys is possible. | |||
| 22582 | ;;;*** | 22625 | ;;;*** |
| 22583 | 22626 | ||
| 22584 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" | 22627 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" |
| 22585 | ;;;;;; (18104 24772)) | 22628 | ;;;;;; (18120 34753)) |
| 22586 | ;;; Generated autoloads from textmodes/reftex-global.el | 22629 | ;;; Generated autoloads from textmodes/reftex-global.el |
| 22587 | 22630 | ||
| 22588 | (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ | 22631 | (autoload 'reftex-isearch-minor-mode "reftex-global" "\ |
| 22589 | When on, isearch searches the whole document, not only the current file. | 22632 | When on, isearch searches the whole document, not only the current file. |
| 22590 | This minor mode allows isearch to search through all the files of | 22633 | This minor mode allows isearch to search through all the files of |
| 22591 | the current TeX document. | 22634 | the current TeX document. |
| 22592 | 22635 | ||
| 22593 | With no argument, this command toggles | 22636 | With no argument, this command toggles |
| 22594 | `reftex-isearch-minor-mode'. With a prefix argument ARG, turn | 22637 | `reftex-isearch-minor-mode'. With a prefix argument ARG, turn |
| 22595 | `reftex-isearch-minor-mode' on iff ARG is positive. | 22638 | `reftex-isearch-minor-mode' on if ARG is positive, otherwise turn it off. |
| 22596 | 22639 | ||
| 22597 | \(fn &optional ARG)" t nil) | 22640 | \(fn &optional ARG)" t nil) |
| 22598 | 22641 | ||
| 22599 | ;;;*** | 22642 | ;;;*** |
| 22600 | 22643 | ||
| 22601 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" | 22644 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" |
| 22602 | ;;;;;; (18104 24772)) | 22645 | ;;;;;; (18088 55120)) |
| 22603 | ;;; Generated autoloads from textmodes/reftex-index.el | 22646 | ;;; Generated autoloads from textmodes/reftex-index.el |
| 22604 | 22647 | ||
| 22605 | (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ | 22648 | (autoload 'reftex-index-phrases-mode "reftex-index" "\ |
| 22606 | Major mode for managing the Index phrases of a LaTeX document. | 22649 | Major mode for managing the Index phrases of a LaTeX document. |
| 22607 | This buffer was created with RefTeX. | 22650 | This buffer was created with RefTeX. |
| 22608 | 22651 | ||
| @@ -22632,10 +22675,10 @@ Here are all local bindings. | |||
| 22632 | ;;;*** | 22675 | ;;;*** |
| 22633 | 22676 | ||
| 22634 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" | 22677 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" |
| 22635 | ;;;;;; (18104 24772)) | 22678 | ;;;;;; (18088 55120)) |
| 22636 | ;;; Generated autoloads from textmodes/reftex-parse.el | 22679 | ;;; Generated autoloads from textmodes/reftex-parse.el |
| 22637 | 22680 | ||
| 22638 | (autoload (quote reftex-all-document-files) "reftex-parse" "\ | 22681 | (autoload 'reftex-all-document-files "reftex-parse" "\ |
| 22639 | Return a list of all files belonging to the current document. | 22682 | Return a list of all files belonging to the current document. |
| 22640 | When RELATIVE is non-nil, give file names relative to directory | 22683 | When RELATIVE is non-nil, give file names relative to directory |
| 22641 | of master file. | 22684 | of master file. |
| @@ -22644,8 +22687,8 @@ of master file. | |||
| 22644 | 22687 | ||
| 22645 | ;;;*** | 22688 | ;;;*** |
| 22646 | 22689 | ||
| 22647 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (18104 | 22690 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (18088 |
| 22648 | ;;;;;; 24772)) | 22691 | ;;;;;; 55120)) |
| 22649 | ;;; Generated autoloads from textmodes/reftex-vars.el | 22692 | ;;; Generated autoloads from textmodes/reftex-vars.el |
| 22650 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22693 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| 22651 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22694 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| @@ -22655,10 +22698,10 @@ of master file. | |||
| 22655 | ;;;*** | 22698 | ;;;*** |
| 22656 | 22699 | ||
| 22657 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" | 22700 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" |
| 22658 | ;;;;;; (18104 24748)) | 22701 | ;;;;;; (18088 55096)) |
| 22659 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el | 22702 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el |
| 22660 | 22703 | ||
| 22661 | (autoload (quote regexp-opt) "regexp-opt" "\ | 22704 | (autoload 'regexp-opt "regexp-opt" "\ |
| 22662 | Return a regexp to match a string in the list STRINGS. | 22705 | Return a regexp to match a string in the list STRINGS. |
| 22663 | Each string should be unique in STRINGS and should not contain any regexps, | 22706 | Each string should be unique in STRINGS and should not contain any regexps, |
| 22664 | quoted or not. If optional PAREN is non-nil, ensure that the returned regexp | 22707 | quoted or not. If optional PAREN is non-nil, ensure that the returned regexp |
| @@ -22673,7 +22716,7 @@ by \\=\\< and \\>. | |||
| 22673 | 22716 | ||
| 22674 | \(fn STRINGS &optional PAREN)" nil nil) | 22717 | \(fn STRINGS &optional PAREN)" nil nil) |
| 22675 | 22718 | ||
| 22676 | (autoload (quote regexp-opt-depth) "regexp-opt" "\ | 22719 | (autoload 'regexp-opt-depth "regexp-opt" "\ |
| 22677 | Return the depth of REGEXP. | 22720 | Return the depth of REGEXP. |
| 22678 | This means the number of non-shy regexp grouping constructs | 22721 | This means the number of non-shy regexp grouping constructs |
| 22679 | \(parenthesized expressions) in REGEXP. | 22722 | \(parenthesized expressions) in REGEXP. |
| @@ -22682,28 +22725,33 @@ This means the number of non-shy regexp grouping constructs | |||
| 22682 | 22725 | ||
| 22683 | ;;;*** | 22726 | ;;;*** |
| 22684 | 22727 | ||
| 22685 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (18104 24739)) | 22728 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (18187 36839)) |
| 22686 | ;;; Generated autoloads from repeat.el | 22729 | ;;; Generated autoloads from repeat.el |
| 22687 | 22730 | ||
| 22688 | (autoload (quote repeat) "repeat" "\ | 22731 | (autoload 'repeat "repeat" "\ |
| 22689 | Repeat most recently executed command. | 22732 | Repeat most recently executed command. |
| 22690 | With prefix arg, apply new prefix arg to that command; otherwise, use | 22733 | With prefix arg, apply new prefix arg to that command; otherwise, |
| 22691 | the prefix arg that was used before (if any). | 22734 | use the prefix arg that was used before (if any). |
| 22692 | This command is like the `.' command in the vi editor. | 22735 | This command is like the `.' command in the vi editor. |
| 22693 | 22736 | ||
| 22694 | If this command is invoked by a multi-character key sequence, it can then | 22737 | If this command is invoked by a multi-character key sequence, it |
| 22695 | be repeated by repeating the final character of that sequence. This behavior | 22738 | can then be repeated by repeating the final character of that |
| 22696 | can be modified by the global variable `repeat-on-final-keystroke'. | 22739 | sequence. This behavior can be modified by the global variable |
| 22740 | `repeat-on-final-keystroke'. | ||
| 22741 | |||
| 22742 | `repeat' ignores commands bound to input events. Hence the term | ||
| 22743 | \"most recently executed command\" shall be read as \"most | ||
| 22744 | recently executed command not bound to an input event\". | ||
| 22697 | 22745 | ||
| 22698 | \(fn REPEAT-ARG)" t nil) | 22746 | \(fn REPEAT-ARG)" t nil) |
| 22699 | 22747 | ||
| 22700 | ;;;*** | 22748 | ;;;*** |
| 22701 | 22749 | ||
| 22702 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" | 22750 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" |
| 22703 | ;;;;;; (18104 24758)) | 22751 | ;;;;;; (18192 17587)) |
| 22704 | ;;; Generated autoloads from mail/reporter.el | 22752 | ;;; Generated autoloads from mail/reporter.el |
| 22705 | 22753 | ||
| 22706 | (autoload (quote reporter-submit-bug-report) "reporter" "\ | 22754 | (autoload 'reporter-submit-bug-report "reporter" "\ |
| 22707 | Begin submitting a bug report via email. | 22755 | Begin submitting a bug report via email. |
| 22708 | 22756 | ||
| 22709 | ADDRESS is the email address for the package's maintainer. PKGNAME is | 22757 | ADDRESS is the email address for the package's maintainer. PKGNAME is |
| @@ -22732,10 +22780,10 @@ mail-sending package is used for editing and sending the message. | |||
| 22732 | ;;;*** | 22780 | ;;;*** |
| 22733 | 22781 | ||
| 22734 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" | 22782 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" |
| 22735 | ;;;;;; (18104 24739)) | 22783 | ;;;;;; (18088 55088)) |
| 22736 | ;;; Generated autoloads from reposition.el | 22784 | ;;; Generated autoloads from reposition.el |
| 22737 | 22785 | ||
| 22738 | (autoload (quote reposition-window) "reposition" "\ | 22786 | (autoload 'reposition-window "reposition" "\ |
| 22739 | Make the current definition and/or comment visible. | 22787 | Make the current definition and/or comment visible. |
| 22740 | Further invocations move it to the top of the window or toggle the | 22788 | Further invocations move it to the top of the window or toggle the |
| 22741 | visibility of comments that precede it. | 22789 | visibility of comments that precede it. |
| @@ -22759,11 +22807,11 @@ first comment line visible (if point is in a comment). | |||
| 22759 | 22807 | ||
| 22760 | ;;;*** | 22808 | ;;;*** |
| 22761 | 22809 | ||
| 22762 | ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (18104 | 22810 | ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (18088 |
| 22763 | ;;;;;; 24739)) | 22811 | ;;;;;; 55088)) |
| 22764 | ;;; Generated autoloads from resume.el | 22812 | ;;; Generated autoloads from resume.el |
| 22765 | 22813 | ||
| 22766 | (autoload (quote resume-suspend-hook) "resume" "\ | 22814 | (autoload 'resume-suspend-hook "resume" "\ |
| 22767 | Clear out the file used for transmitting args when Emacs resumes. | 22815 | Clear out the file used for transmitting args when Emacs resumes. |
| 22768 | 22816 | ||
| 22769 | \(fn)" nil nil) | 22817 | \(fn)" nil nil) |
| @@ -22771,10 +22819,10 @@ Clear out the file used for transmitting args when Emacs resumes. | |||
| 22771 | ;;;*** | 22819 | ;;;*** |
| 22772 | 22820 | ||
| 22773 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" | 22821 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" |
| 22774 | ;;;;;; (18104 24739)) | 22822 | ;;;;;; (18088 55088)) |
| 22775 | ;;; Generated autoloads from reveal.el | 22823 | ;;; Generated autoloads from reveal.el |
| 22776 | 22824 | ||
| 22777 | (autoload (quote reveal-mode) "reveal" "\ | 22825 | (autoload 'reveal-mode "reveal" "\ |
| 22778 | Toggle Reveal mode on or off. | 22826 | Toggle Reveal mode on or off. |
| 22779 | Reveal mode renders invisible text around point visible again. | 22827 | Reveal mode renders invisible text around point visible again. |
| 22780 | 22828 | ||
| @@ -22791,9 +22839,9 @@ Setting this variable directly does not take effect; | |||
| 22791 | either customize it (see the info node `Easy Customization') | 22839 | either customize it (see the info node `Easy Customization') |
| 22792 | or call the function `global-reveal-mode'.") | 22840 | or call the function `global-reveal-mode'.") |
| 22793 | 22841 | ||
| 22794 | (custom-autoload (quote global-reveal-mode) "reveal" nil) | 22842 | (custom-autoload 'global-reveal-mode "reveal" nil) |
| 22795 | 22843 | ||
| 22796 | (autoload (quote global-reveal-mode) "reveal" "\ | 22844 | (autoload 'global-reveal-mode "reveal" "\ |
| 22797 | Toggle Reveal mode in all buffers on or off. | 22845 | Toggle Reveal mode in all buffers on or off. |
| 22798 | Reveal mode renders invisible text around point visible again. | 22846 | Reveal mode renders invisible text around point visible again. |
| 22799 | 22847 | ||
| @@ -22806,26 +22854,26 @@ With zero or negative ARG turn mode off. | |||
| 22806 | ;;;*** | 22854 | ;;;*** |
| 22807 | 22855 | ||
| 22808 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" | 22856 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" |
| 22809 | ;;;;;; (18104 24748)) | 22857 | ;;;;;; (18197 21672)) |
| 22810 | ;;; Generated autoloads from emacs-lisp/ring.el | 22858 | ;;; Generated autoloads from emacs-lisp/ring.el |
| 22811 | 22859 | ||
| 22812 | (autoload (quote ring-p) "ring" "\ | 22860 | (autoload 'ring-p "ring" "\ |
| 22813 | Return t if X is a ring; nil otherwise. | 22861 | Return t if X is a ring; nil otherwise. |
| 22814 | 22862 | ||
| 22815 | \(fn X)" nil nil) | 22863 | \(fn X)" nil nil) |
| 22816 | 22864 | ||
| 22817 | (autoload (quote make-ring) "ring" "\ | 22865 | (autoload 'make-ring "ring" "\ |
| 22818 | Make a ring that can contain SIZE elements. | 22866 | Make a ring that can contain SIZE elements. |
| 22819 | 22867 | ||
| 22820 | \(fn SIZE)" nil nil) | 22868 | \(fn SIZE)" nil nil) |
| 22821 | 22869 | ||
| 22822 | ;;;*** | 22870 | ;;;*** |
| 22823 | 22871 | ||
| 22824 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (18104 24760)) | 22872 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (18088 55112)) |
| 22825 | ;;; Generated autoloads from net/rlogin.el | 22873 | ;;; Generated autoloads from net/rlogin.el |
| 22826 | (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") | 22874 | (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") |
| 22827 | 22875 | ||
| 22828 | (autoload (quote rlogin) "rlogin" "\ | 22876 | (autoload 'rlogin "rlogin" "\ |
| 22829 | Open a network login connection via `rlogin' with args INPUT-ARGS. | 22877 | Open a network login connection via `rlogin' with args INPUT-ARGS. |
| 22830 | INPUT-ARGS should start with a host name; it may also contain | 22878 | INPUT-ARGS should start with a host name; it may also contain |
| 22831 | other arguments for `rlogin'. | 22879 | other arguments for `rlogin'. |
| @@ -22872,11 +22920,11 @@ variable. | |||
| 22872 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output | 22920 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output |
| 22873 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers | 22921 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers |
| 22874 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names | 22922 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names |
| 22875 | ;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (18104 | 22923 | ;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (18191 |
| 22876 | ;;;;;; 24758)) | 22924 | ;;;;;; 7159)) |
| 22877 | ;;; Generated autoloads from mail/rmail.el | 22925 | ;;; Generated autoloads from mail/rmail.el |
| 22878 | 22926 | ||
| 22879 | (autoload (quote rmail-movemail-variant-p) "rmail" "\ | 22927 | (autoload 'rmail-movemail-variant-p "rmail" "\ |
| 22880 | Return t if the current movemail variant is any of VARIANTS. | 22928 | Return t if the current movemail variant is any of VARIANTS. |
| 22881 | Currently known variants are 'emacs and 'mailutils. | 22929 | Currently known variants are 'emacs and 'mailutils. |
| 22882 | 22930 | ||
| @@ -22887,7 +22935,7 @@ Currently known variants are 'emacs and 'mailutils. | |||
| 22887 | A value of nil means exclude your own email address as an address | 22935 | A value of nil means exclude your own email address as an address |
| 22888 | plus whatever is specified by `rmail-default-dont-reply-to-names'.") | 22936 | plus whatever is specified by `rmail-default-dont-reply-to-names'.") |
| 22889 | 22937 | ||
| 22890 | (custom-autoload (quote rmail-dont-reply-to-names) "rmail" t) | 22938 | (custom-autoload 'rmail-dont-reply-to-names "rmail" t) |
| 22891 | 22939 | ||
| 22892 | (defvar rmail-default-dont-reply-to-names "\\`info-" "\ | 22940 | (defvar rmail-default-dont-reply-to-names "\\`info-" "\ |
| 22893 | A regular expression specifying part of the default value of the | 22941 | A regular expression specifying part of the default value of the |
| @@ -22906,36 +22954,36 @@ To make a change in this variable take effect | |||
| 22906 | for a message that you have already viewed, | 22954 | for a message that you have already viewed, |
| 22907 | go to that message and type \\[rmail-toggle-header] twice.") | 22955 | go to that message and type \\[rmail-toggle-header] twice.") |
| 22908 | 22956 | ||
| 22909 | (custom-autoload (quote rmail-ignored-headers) "rmail" t) | 22957 | (custom-autoload 'rmail-ignored-headers "rmail" t) |
| 22910 | 22958 | ||
| 22911 | (defvar rmail-displayed-headers nil "\ | 22959 | (defvar rmail-displayed-headers nil "\ |
| 22912 | *Regexp to match Header fields that Rmail should display. | 22960 | *Regexp to match Header fields that Rmail should display. |
| 22913 | If nil, display all header fields except those matched by | 22961 | If nil, display all header fields except those matched by |
| 22914 | `rmail-ignored-headers'.") | 22962 | `rmail-ignored-headers'.") |
| 22915 | 22963 | ||
| 22916 | (custom-autoload (quote rmail-displayed-headers) "rmail" t) | 22964 | (custom-autoload 'rmail-displayed-headers "rmail" t) |
| 22917 | 22965 | ||
| 22918 | (defvar rmail-retry-ignored-headers "^x-authentication-warning:" "\ | 22966 | (defvar rmail-retry-ignored-headers "^x-authentication-warning:" "\ |
| 22919 | *Headers that should be stripped when retrying a failed message.") | 22967 | *Headers that should be stripped when retrying a failed message.") |
| 22920 | 22968 | ||
| 22921 | (custom-autoload (quote rmail-retry-ignored-headers) "rmail" t) | 22969 | (custom-autoload 'rmail-retry-ignored-headers "rmail" t) |
| 22922 | 22970 | ||
| 22923 | (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\ | 22971 | (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\ |
| 22924 | *Regexp to match Header fields that Rmail should normally highlight. | 22972 | *Regexp to match Header fields that Rmail should normally highlight. |
| 22925 | A value of nil means don't highlight. | 22973 | A value of nil means don't highlight. |
| 22926 | See also `rmail-highlight-face'.") | 22974 | See also `rmail-highlight-face'.") |
| 22927 | 22975 | ||
| 22928 | (custom-autoload (quote rmail-highlighted-headers) "rmail" t) | 22976 | (custom-autoload 'rmail-highlighted-headers "rmail" t) |
| 22929 | 22977 | ||
| 22930 | (defvar rmail-highlight-face (quote rmail-highlight) "\ | 22978 | (defvar rmail-highlight-face 'rmail-highlight "\ |
| 22931 | *Face used by Rmail for highlighting headers.") | 22979 | *Face used by Rmail for highlighting headers.") |
| 22932 | 22980 | ||
| 22933 | (custom-autoload (quote rmail-highlight-face) "rmail" t) | 22981 | (custom-autoload 'rmail-highlight-face "rmail" t) |
| 22934 | 22982 | ||
| 22935 | (defvar rmail-delete-after-output nil "\ | 22983 | (defvar rmail-delete-after-output nil "\ |
| 22936 | *Non-nil means automatically delete a message that is copied to a file.") | 22984 | *Non-nil means automatically delete a message that is copied to a file.") |
| 22937 | 22985 | ||
| 22938 | (custom-autoload (quote rmail-delete-after-output) "rmail" t) | 22986 | (custom-autoload 'rmail-delete-after-output "rmail" t) |
| 22939 | 22987 | ||
| 22940 | (defvar rmail-primary-inbox-list nil "\ | 22988 | (defvar rmail-primary-inbox-list nil "\ |
| 22941 | *List of files which are inboxes for user's primary mail file `~/RMAIL'. | 22989 | *List of files which are inboxes for user's primary mail file `~/RMAIL'. |
| @@ -22943,29 +22991,29 @@ nil means the default, which is (\"/usr/spool/mail/$USER\") | |||
| 22943 | \(the name varies depending on the operating system, | 22991 | \(the name varies depending on the operating system, |
| 22944 | and the value of the environment variable MAIL overrides it).") | 22992 | and the value of the environment variable MAIL overrides it).") |
| 22945 | 22993 | ||
| 22946 | (custom-autoload (quote rmail-primary-inbox-list) "rmail" t) | 22994 | (custom-autoload 'rmail-primary-inbox-list "rmail" t) |
| 22947 | 22995 | ||
| 22948 | (defvar rmail-mail-new-frame nil "\ | 22996 | (defvar rmail-mail-new-frame nil "\ |
| 22949 | *Non-nil means Rmail makes a new frame for composing outgoing mail. | 22997 | *Non-nil means Rmail makes a new frame for composing outgoing mail. |
| 22950 | This is handy if you want to preserve the window configuration of | 22998 | This is handy if you want to preserve the window configuration of |
| 22951 | the frame where you have the RMAIL buffer displayed.") | 22999 | the frame where you have the RMAIL buffer displayed.") |
| 22952 | 23000 | ||
| 22953 | (custom-autoload (quote rmail-mail-new-frame) "rmail" t) | 23001 | (custom-autoload 'rmail-mail-new-frame "rmail" t) |
| 22954 | 23002 | ||
| 22955 | (defvar rmail-secondary-file-directory "~/" "\ | 23003 | (defvar rmail-secondary-file-directory "~/" "\ |
| 22956 | *Directory for additional secondary Rmail files.") | 23004 | *Directory for additional secondary Rmail files.") |
| 22957 | 23005 | ||
| 22958 | (custom-autoload (quote rmail-secondary-file-directory) "rmail" t) | 23006 | (custom-autoload 'rmail-secondary-file-directory "rmail" t) |
| 22959 | 23007 | ||
| 22960 | (defvar rmail-secondary-file-regexp "\\.xmail$" "\ | 23008 | (defvar rmail-secondary-file-regexp "\\.xmail$" "\ |
| 22961 | *Regexp for which files are secondary Rmail files.") | 23009 | *Regexp for which files are secondary Rmail files.") |
| 22962 | 23010 | ||
| 22963 | (custom-autoload (quote rmail-secondary-file-regexp) "rmail" t) | 23011 | (custom-autoload 'rmail-secondary-file-regexp "rmail" t) |
| 22964 | 23012 | ||
| 22965 | (defvar rmail-confirm-expunge (quote y-or-n-p) "\ | 23013 | (defvar rmail-confirm-expunge 'y-or-n-p "\ |
| 22966 | *Whether and how to ask for confirmation before expunging deleted messages.") | 23014 | *Whether and how to ask for confirmation before expunging deleted messages.") |
| 22967 | 23015 | ||
| 22968 | (custom-autoload (quote rmail-confirm-expunge) "rmail" t) | 23016 | (custom-autoload 'rmail-confirm-expunge "rmail" t) |
| 22969 | 23017 | ||
| 22970 | (defvar rmail-mode-hook nil "\ | 23018 | (defvar rmail-mode-hook nil "\ |
| 22971 | List of functions to call when Rmail is invoked.") | 23019 | List of functions to call when Rmail is invoked.") |
| @@ -22976,7 +23024,7 @@ List of functions to call when Rmail has retrieved new mail.") | |||
| 22976 | (defvar rmail-show-message-hook nil "\ | 23024 | (defvar rmail-show-message-hook nil "\ |
| 22977 | List of functions to call when Rmail displays a message.") | 23025 | List of functions to call when Rmail displays a message.") |
| 22978 | 23026 | ||
| 22979 | (custom-autoload (quote rmail-show-message-hook) "rmail" t) | 23027 | (custom-autoload 'rmail-show-message-hook "rmail" t) |
| 22980 | 23028 | ||
| 22981 | (defvar rmail-quit-hook nil "\ | 23029 | (defvar rmail-quit-hook nil "\ |
| 22982 | List of functions to call when quitting out of Rmail.") | 23030 | List of functions to call when quitting out of Rmail.") |
| @@ -23001,7 +23049,7 @@ Even if the value is non-nil, you can't use MIME feature | |||
| 23001 | if the feature specified by `rmail-mime-feature' is not available | 23049 | if the feature specified by `rmail-mime-feature' is not available |
| 23002 | in your session.") | 23050 | in your session.") |
| 23003 | 23051 | ||
| 23004 | (custom-autoload (quote rmail-enable-mime) "rmail" t) | 23052 | (custom-autoload 'rmail-enable-mime "rmail" t) |
| 23005 | 23053 | ||
| 23006 | (defvar rmail-show-mime-function nil "\ | 23054 | (defvar rmail-show-mime-function nil "\ |
| 23007 | Function to show MIME decoded message of RMAIL file. | 23055 | Function to show MIME decoded message of RMAIL file. |
| @@ -23037,7 +23085,7 @@ MSG is the message number, | |||
| 23037 | REGEXP is the regular expression, | 23085 | REGEXP is the regular expression, |
| 23038 | LIMIT is the position specifying the end of header.") | 23086 | LIMIT is the position specifying the end of header.") |
| 23039 | 23087 | ||
| 23040 | (defvar rmail-mime-feature (quote rmail-mime) "\ | 23088 | (defvar rmail-mime-feature 'rmail-mime "\ |
| 23041 | Feature to require to load MIME support in Rmail. | 23089 | Feature to require to load MIME support in Rmail. |
| 23042 | When starting Rmail, if `rmail-enable-mime' is non-nil, | 23090 | When starting Rmail, if `rmail-enable-mime' is non-nil, |
| 23043 | this feature is required with `require'. | 23091 | this feature is required with `require'. |
| @@ -23058,7 +23106,7 @@ the variable `rmail-mime-feature'.") | |||
| 23058 | Regexp to match MIME-charset specification in a header of message. | 23106 | Regexp to match MIME-charset specification in a header of message. |
| 23059 | The first parenthesized expression should match the MIME-charset name.") | 23107 | The first parenthesized expression should match the MIME-charset name.") |
| 23060 | 23108 | ||
| 23061 | (autoload (quote rmail) "rmail" "\ | 23109 | (autoload 'rmail "rmail" "\ |
| 23062 | Read and edit incoming mail. | 23110 | Read and edit incoming mail. |
| 23063 | Moves messages into file named by `rmail-file-name' (a babyl format file) | 23111 | Moves messages into file named by `rmail-file-name' (a babyl format file) |
| 23064 | and edits that file in RMAIL Mode. | 23112 | and edits that file in RMAIL Mode. |
| @@ -23073,7 +23121,7 @@ If `rmail-display-summary' is non-nil, make a summary for this RMAIL file. | |||
| 23073 | 23121 | ||
| 23074 | \(fn &optional FILE-NAME-ARG)" t nil) | 23122 | \(fn &optional FILE-NAME-ARG)" t nil) |
| 23075 | 23123 | ||
| 23076 | (autoload (quote rmail-mode) "rmail" "\ | 23124 | (autoload 'rmail-mode "rmail" "\ |
| 23077 | Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | 23125 | Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. |
| 23078 | All normal editing commands are turned off. | 23126 | All normal editing commands are turned off. |
| 23079 | Instead, these commands are available: | 23127 | Instead, these commands are available: |
| @@ -23125,12 +23173,12 @@ Instead, these commands are available: | |||
| 23125 | 23173 | ||
| 23126 | \(fn)" t nil) | 23174 | \(fn)" t nil) |
| 23127 | 23175 | ||
| 23128 | (autoload (quote rmail-input) "rmail" "\ | 23176 | (autoload 'rmail-input "rmail" "\ |
| 23129 | Run Rmail on file FILENAME. | 23177 | Run Rmail on file FILENAME. |
| 23130 | 23178 | ||
| 23131 | \(fn FILENAME)" t nil) | 23179 | \(fn FILENAME)" t nil) |
| 23132 | 23180 | ||
| 23133 | (autoload (quote rmail-set-remote-password) "rmail" "\ | 23181 | (autoload 'rmail-set-remote-password "rmail" "\ |
| 23134 | Set PASSWORD to be used for retrieving mail from a POP or IMAP server. | 23182 | Set PASSWORD to be used for retrieving mail from a POP or IMAP server. |
| 23135 | 23183 | ||
| 23136 | \(fn PASSWORD)" t nil) | 23184 | \(fn PASSWORD)" t nil) |
| @@ -23138,10 +23186,10 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. | |||
| 23138 | ;;;*** | 23186 | ;;;*** |
| 23139 | 23187 | ||
| 23140 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" | 23188 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" |
| 23141 | ;;;;;; (18104 24758)) | 23189 | ;;;;;; (18088 55110)) |
| 23142 | ;;; Generated autoloads from mail/rmailedit.el | 23190 | ;;; Generated autoloads from mail/rmailedit.el |
| 23143 | 23191 | ||
| 23144 | (autoload (quote rmail-edit-current-message) "rmailedit" "\ | 23192 | (autoload 'rmail-edit-current-message "rmailedit" "\ |
| 23145 | Edit the contents of this message. | 23193 | Edit the contents of this message. |
| 23146 | 23194 | ||
| 23147 | \(fn)" t nil) | 23195 | \(fn)" t nil) |
| @@ -23150,27 +23198,27 @@ Edit the contents of this message. | |||
| 23150 | 23198 | ||
| 23151 | ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message | 23199 | ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message |
| 23152 | ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" | 23200 | ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" |
| 23153 | ;;;;;; "mail/rmailkwd.el" (18104 24758)) | 23201 | ;;;;;; "mail/rmailkwd.el" (18088 55110)) |
| 23154 | ;;; Generated autoloads from mail/rmailkwd.el | 23202 | ;;; Generated autoloads from mail/rmailkwd.el |
| 23155 | 23203 | ||
| 23156 | (autoload (quote rmail-add-label) "rmailkwd" "\ | 23204 | (autoload 'rmail-add-label "rmailkwd" "\ |
| 23157 | Add LABEL to labels associated with current RMAIL message. | 23205 | Add LABEL to labels associated with current RMAIL message. |
| 23158 | Completion is performed over known labels when reading. | 23206 | Completion is performed over known labels when reading. |
| 23159 | 23207 | ||
| 23160 | \(fn STRING)" t nil) | 23208 | \(fn STRING)" t nil) |
| 23161 | 23209 | ||
| 23162 | (autoload (quote rmail-kill-label) "rmailkwd" "\ | 23210 | (autoload 'rmail-kill-label "rmailkwd" "\ |
| 23163 | Remove LABEL from labels associated with current RMAIL message. | 23211 | Remove LABEL from labels associated with current RMAIL message. |
| 23164 | Completion is performed over known labels when reading. | 23212 | Completion is performed over known labels when reading. |
| 23165 | 23213 | ||
| 23166 | \(fn STRING)" t nil) | 23214 | \(fn STRING)" t nil) |
| 23167 | 23215 | ||
| 23168 | (autoload (quote rmail-read-label) "rmailkwd" "\ | 23216 | (autoload 'rmail-read-label "rmailkwd" "\ |
| 23169 | Not documented | 23217 | Not documented |
| 23170 | 23218 | ||
| 23171 | \(fn PROMPT)" nil nil) | 23219 | \(fn PROMPT)" nil nil) |
| 23172 | 23220 | ||
| 23173 | (autoload (quote rmail-previous-labeled-message) "rmailkwd" "\ | 23221 | (autoload 'rmail-previous-labeled-message "rmailkwd" "\ |
| 23174 | Show previous message with one of the labels LABELS. | 23222 | Show previous message with one of the labels LABELS. |
| 23175 | LABELS should be a comma-separated list of label names. | 23223 | LABELS should be a comma-separated list of label names. |
| 23176 | If LABELS is empty, the last set of labels specified is used. | 23224 | If LABELS is empty, the last set of labels specified is used. |
| @@ -23178,7 +23226,7 @@ With prefix argument N moves backward N messages with these labels. | |||
| 23178 | 23226 | ||
| 23179 | \(fn N LABELS)" t nil) | 23227 | \(fn N LABELS)" t nil) |
| 23180 | 23228 | ||
| 23181 | (autoload (quote rmail-next-labeled-message) "rmailkwd" "\ | 23229 | (autoload 'rmail-next-labeled-message "rmailkwd" "\ |
| 23182 | Show next message with one of the labels LABELS. | 23230 | Show next message with one of the labels LABELS. |
| 23183 | LABELS should be a comma-separated list of label names. | 23231 | LABELS should be a comma-separated list of label names. |
| 23184 | If LABELS is empty, the last set of labels specified is used. | 23232 | If LABELS is empty, the last set of labels specified is used. |
| @@ -23189,10 +23237,10 @@ With prefix argument N moves forward N messages with these labels. | |||
| 23189 | ;;;*** | 23237 | ;;;*** |
| 23190 | 23238 | ||
| 23191 | ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" | 23239 | ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" |
| 23192 | ;;;;;; (18104 24758)) | 23240 | ;;;;;; (18088 55110)) |
| 23193 | ;;; Generated autoloads from mail/rmailmsc.el | 23241 | ;;; Generated autoloads from mail/rmailmsc.el |
| 23194 | 23242 | ||
| 23195 | (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ | 23243 | (autoload 'set-rmail-inbox-list "rmailmsc" "\ |
| 23196 | Set the inbox list of the current RMAIL file to FILE-NAME. | 23244 | Set the inbox list of the current RMAIL file to FILE-NAME. |
| 23197 | You can specify one file name, or several names separated by commas. | 23245 | You can specify one file name, or several names separated by commas. |
| 23198 | If FILE-NAME is empty, remove any existing inbox list. | 23246 | If FILE-NAME is empty, remove any existing inbox list. |
| @@ -23203,7 +23251,7 @@ If FILE-NAME is empty, remove any existing inbox list. | |||
| 23203 | 23251 | ||
| 23204 | ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output | 23252 | ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output |
| 23205 | ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" | 23253 | ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" |
| 23206 | ;;;;;; "mail/rmailout.el" (18104 24758)) | 23254 | ;;;;;; "mail/rmailout.el" (18088 55110)) |
| 23207 | ;;; Generated autoloads from mail/rmailout.el | 23255 | ;;; Generated autoloads from mail/rmailout.el |
| 23208 | 23256 | ||
| 23209 | (defvar rmail-output-file-alist nil "\ | 23257 | (defvar rmail-output-file-alist nil "\ |
| @@ -23214,9 +23262,9 @@ NAME-EXP may be a string constant giving the file name to use, | |||
| 23214 | or more generally it may be any kind of expression that returns | 23262 | or more generally it may be any kind of expression that returns |
| 23215 | a file name as a string.") | 23263 | a file name as a string.") |
| 23216 | 23264 | ||
| 23217 | (custom-autoload (quote rmail-output-file-alist) "rmailout" t) | 23265 | (custom-autoload 'rmail-output-file-alist "rmailout" t) |
| 23218 | 23266 | ||
| 23219 | (autoload (quote rmail-output-to-rmail-file) "rmailout" "\ | 23267 | (autoload 'rmail-output-to-rmail-file "rmailout" "\ |
| 23220 | Append the current message to an Rmail file named FILE-NAME. | 23268 | Append the current message to an Rmail file named FILE-NAME. |
| 23221 | If the file does not exist, ask if it should be created. | 23269 | If the file does not exist, ask if it should be created. |
| 23222 | If file is being visited, the message is appended to the Emacs | 23270 | If file is being visited, the message is appended to the Emacs |
| @@ -23238,9 +23286,9 @@ message up instead of moving forward to the next non-deleted message. | |||
| 23238 | (defvar rmail-fields-not-to-output nil "\ | 23286 | (defvar rmail-fields-not-to-output nil "\ |
| 23239 | *Regexp describing fields to exclude when outputting a message to a file.") | 23287 | *Regexp describing fields to exclude when outputting a message to a file.") |
| 23240 | 23288 | ||
| 23241 | (custom-autoload (quote rmail-fields-not-to-output) "rmailout" t) | 23289 | (custom-autoload 'rmail-fields-not-to-output "rmailout" t) |
| 23242 | 23290 | ||
| 23243 | (autoload (quote rmail-output) "rmailout" "\ | 23291 | (autoload 'rmail-output "rmailout" "\ |
| 23244 | Append this message to system-inbox-format mail file named FILE-NAME. | 23292 | Append this message to system-inbox-format mail file named FILE-NAME. |
| 23245 | A prefix argument COUNT says to output that many consecutive messages, | 23293 | A prefix argument COUNT says to output that many consecutive messages, |
| 23246 | starting with the current one. Deleted messages are skipped and don't count. | 23294 | starting with the current one. Deleted messages are skipped and don't count. |
| @@ -23260,7 +23308,7 @@ The optional fourth argument FROM-GNUS is set when called from GNUS. | |||
| 23260 | 23308 | ||
| 23261 | \(fn FILE-NAME &optional COUNT NOATTRIBUTE FROM-GNUS)" t nil) | 23309 | \(fn FILE-NAME &optional COUNT NOATTRIBUTE FROM-GNUS)" t nil) |
| 23262 | 23310 | ||
| 23263 | (autoload (quote rmail-output-body-to-file) "rmailout" "\ | 23311 | (autoload 'rmail-output-body-to-file "rmailout" "\ |
| 23264 | Write this message body to the file FILE-NAME. | 23312 | Write this message body to the file FILE-NAME. |
| 23265 | FILE-NAME defaults, interactively, from the Subject field of the message. | 23313 | FILE-NAME defaults, interactively, from the Subject field of the message. |
| 23266 | 23314 | ||
| @@ -23270,47 +23318,47 @@ FILE-NAME defaults, interactively, from the Subject field of the message. | |||
| 23270 | 23318 | ||
| 23271 | ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent | 23319 | ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent |
| 23272 | ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject | 23320 | ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject |
| 23273 | ;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (18104 | 23321 | ;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (18088 |
| 23274 | ;;;;;; 24758)) | 23322 | ;;;;;; 55110)) |
| 23275 | ;;; Generated autoloads from mail/rmailsort.el | 23323 | ;;; Generated autoloads from mail/rmailsort.el |
| 23276 | 23324 | ||
| 23277 | (autoload (quote rmail-sort-by-date) "rmailsort" "\ | 23325 | (autoload 'rmail-sort-by-date "rmailsort" "\ |
| 23278 | Sort messages of current Rmail file by date. | 23326 | Sort messages of current Rmail file by date. |
| 23279 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23327 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23280 | 23328 | ||
| 23281 | \(fn REVERSE)" t nil) | 23329 | \(fn REVERSE)" t nil) |
| 23282 | 23330 | ||
| 23283 | (autoload (quote rmail-sort-by-subject) "rmailsort" "\ | 23331 | (autoload 'rmail-sort-by-subject "rmailsort" "\ |
| 23284 | Sort messages of current Rmail file by subject. | 23332 | Sort messages of current Rmail file by subject. |
| 23285 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23333 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23286 | 23334 | ||
| 23287 | \(fn REVERSE)" t nil) | 23335 | \(fn REVERSE)" t nil) |
| 23288 | 23336 | ||
| 23289 | (autoload (quote rmail-sort-by-author) "rmailsort" "\ | 23337 | (autoload 'rmail-sort-by-author "rmailsort" "\ |
| 23290 | Sort messages of current Rmail file by author. | 23338 | Sort messages of current Rmail file by author. |
| 23291 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23339 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23292 | 23340 | ||
| 23293 | \(fn REVERSE)" t nil) | 23341 | \(fn REVERSE)" t nil) |
| 23294 | 23342 | ||
| 23295 | (autoload (quote rmail-sort-by-recipient) "rmailsort" "\ | 23343 | (autoload 'rmail-sort-by-recipient "rmailsort" "\ |
| 23296 | Sort messages of current Rmail file by recipient. | 23344 | Sort messages of current Rmail file by recipient. |
| 23297 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23345 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23298 | 23346 | ||
| 23299 | \(fn REVERSE)" t nil) | 23347 | \(fn REVERSE)" t nil) |
| 23300 | 23348 | ||
| 23301 | (autoload (quote rmail-sort-by-correspondent) "rmailsort" "\ | 23349 | (autoload 'rmail-sort-by-correspondent "rmailsort" "\ |
| 23302 | Sort messages of current Rmail file by other correspondent. | 23350 | Sort messages of current Rmail file by other correspondent. |
| 23303 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23351 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23304 | 23352 | ||
| 23305 | \(fn REVERSE)" t nil) | 23353 | \(fn REVERSE)" t nil) |
| 23306 | 23354 | ||
| 23307 | (autoload (quote rmail-sort-by-lines) "rmailsort" "\ | 23355 | (autoload 'rmail-sort-by-lines "rmailsort" "\ |
| 23308 | Sort messages of current Rmail file by number of lines. | 23356 | Sort messages of current Rmail file by number of lines. |
| 23309 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23357 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23310 | 23358 | ||
| 23311 | \(fn REVERSE)" t nil) | 23359 | \(fn REVERSE)" t nil) |
| 23312 | 23360 | ||
| 23313 | (autoload (quote rmail-sort-by-labels) "rmailsort" "\ | 23361 | (autoload 'rmail-sort-by-labels "rmailsort" "\ |
| 23314 | Sort messages of current Rmail file by labels. | 23362 | Sort messages of current Rmail file by labels. |
| 23315 | If prefix argument REVERSE is non-nil, sort them in reverse order. | 23363 | If prefix argument REVERSE is non-nil, sort them in reverse order. |
| 23316 | KEYWORDS is a comma-separated list of labels. | 23364 | KEYWORDS is a comma-separated list of labels. |
| @@ -23323,31 +23371,31 @@ KEYWORDS is a comma-separated list of labels. | |||
| 23323 | ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp | 23371 | ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp |
| 23324 | ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary | 23372 | ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary |
| 23325 | ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) | 23373 | ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) |
| 23326 | ;;;;;; "rmailsum" "mail/rmailsum.el" (18104 24758)) | 23374 | ;;;;;; "rmailsum" "mail/rmailsum.el" (18101 9759)) |
| 23327 | ;;; Generated autoloads from mail/rmailsum.el | 23375 | ;;; Generated autoloads from mail/rmailsum.el |
| 23328 | 23376 | ||
| 23329 | (defvar rmail-summary-scroll-between-messages t "\ | 23377 | (defvar rmail-summary-scroll-between-messages t "\ |
| 23330 | *Non-nil means Rmail summary scroll commands move between messages.") | 23378 | *Non-nil means Rmail summary scroll commands move between messages.") |
| 23331 | 23379 | ||
| 23332 | (custom-autoload (quote rmail-summary-scroll-between-messages) "rmailsum" t) | 23380 | (custom-autoload 'rmail-summary-scroll-between-messages "rmailsum" t) |
| 23333 | 23381 | ||
| 23334 | (defvar rmail-summary-line-count-flag t "\ | 23382 | (defvar rmail-summary-line-count-flag t "\ |
| 23335 | *Non-nil means Rmail summary should show the number of lines in each message.") | 23383 | *Non-nil means Rmail summary should show the number of lines in each message.") |
| 23336 | 23384 | ||
| 23337 | (custom-autoload (quote rmail-summary-line-count-flag) "rmailsum" t) | 23385 | (custom-autoload 'rmail-summary-line-count-flag "rmailsum" t) |
| 23338 | 23386 | ||
| 23339 | (autoload (quote rmail-summary) "rmailsum" "\ | 23387 | (autoload 'rmail-summary "rmailsum" "\ |
| 23340 | Display a summary of all messages, one line per message. | 23388 | Display a summary of all messages, one line per message. |
| 23341 | 23389 | ||
| 23342 | \(fn)" t nil) | 23390 | \(fn)" t nil) |
| 23343 | 23391 | ||
| 23344 | (autoload (quote rmail-summary-by-labels) "rmailsum" "\ | 23392 | (autoload 'rmail-summary-by-labels "rmailsum" "\ |
| 23345 | Display a summary of all messages with one or more LABELS. | 23393 | Display a summary of all messages with one or more LABELS. |
| 23346 | LABELS should be a string containing the desired labels, separated by commas. | 23394 | LABELS should be a string containing the desired labels, separated by commas. |
| 23347 | 23395 | ||
| 23348 | \(fn LABELS)" t nil) | 23396 | \(fn LABELS)" t nil) |
| 23349 | 23397 | ||
| 23350 | (autoload (quote rmail-summary-by-recipients) "rmailsum" "\ | 23398 | (autoload 'rmail-summary-by-recipients "rmailsum" "\ |
| 23351 | Display a summary of all messages with the given RECIPIENTS. | 23399 | Display a summary of all messages with the given RECIPIENTS. |
| 23352 | Normally checks the To, From and Cc fields of headers; | 23400 | Normally checks the To, From and Cc fields of headers; |
| 23353 | but if PRIMARY-ONLY is non-nil (prefix arg given), | 23401 | but if PRIMARY-ONLY is non-nil (prefix arg given), |
| @@ -23356,7 +23404,7 @@ RECIPIENTS is a string of regexps separated by commas. | |||
| 23356 | 23404 | ||
| 23357 | \(fn RECIPIENTS &optional PRIMARY-ONLY)" t nil) | 23405 | \(fn RECIPIENTS &optional PRIMARY-ONLY)" t nil) |
| 23358 | 23406 | ||
| 23359 | (autoload (quote rmail-summary-by-regexp) "rmailsum" "\ | 23407 | (autoload 'rmail-summary-by-regexp "rmailsum" "\ |
| 23360 | Display a summary of all messages according to regexp REGEXP. | 23408 | Display a summary of all messages according to regexp REGEXP. |
| 23361 | If the regular expression is found in the header of the message | 23409 | If the regular expression is found in the header of the message |
| 23362 | \(including in the date and other lines, as well as the subject line), | 23410 | \(including in the date and other lines, as well as the subject line), |
| @@ -23364,7 +23412,7 @@ Emacs will list the header line in the RMAIL-summary. | |||
| 23364 | 23412 | ||
| 23365 | \(fn REGEXP)" t nil) | 23413 | \(fn REGEXP)" t nil) |
| 23366 | 23414 | ||
| 23367 | (autoload (quote rmail-summary-by-topic) "rmailsum" "\ | 23415 | (autoload 'rmail-summary-by-topic "rmailsum" "\ |
| 23368 | Display a summary of all messages with the given SUBJECT. | 23416 | Display a summary of all messages with the given SUBJECT. |
| 23369 | Normally checks the Subject field of headers; | 23417 | Normally checks the Subject field of headers; |
| 23370 | but if WHOLE-MESSAGE is non-nil (prefix arg given), | 23418 | but if WHOLE-MESSAGE is non-nil (prefix arg given), |
| @@ -23373,18 +23421,18 @@ SUBJECT is a string of regexps separated by commas. | |||
| 23373 | 23421 | ||
| 23374 | \(fn SUBJECT &optional WHOLE-MESSAGE)" t nil) | 23422 | \(fn SUBJECT &optional WHOLE-MESSAGE)" t nil) |
| 23375 | 23423 | ||
| 23376 | (autoload (quote rmail-summary-by-senders) "rmailsum" "\ | 23424 | (autoload 'rmail-summary-by-senders "rmailsum" "\ |
| 23377 | Display a summary of all messages with the given SENDERS. | 23425 | Display a summary of all messages with the given SENDERS. |
| 23378 | SENDERS is a string of names separated by commas. | 23426 | SENDERS is a string of names separated by commas. |
| 23379 | 23427 | ||
| 23380 | \(fn SENDERS)" t nil) | 23428 | \(fn SENDERS)" t nil) |
| 23381 | 23429 | ||
| 23382 | (defvar rmail-summary-line-decoder (function identity) "\ | 23430 | (defvar rmail-summary-line-decoder #'identity "\ |
| 23383 | *Function to decode summary-line. | 23431 | *Function to decode summary-line. |
| 23384 | 23432 | ||
| 23385 | By default, `identity' is set.") | 23433 | By default, `identity' is set.") |
| 23386 | 23434 | ||
| 23387 | (custom-autoload (quote rmail-summary-line-decoder) "rmailsum" t) | 23435 | (custom-autoload 'rmail-summary-line-decoder "rmailsum" t) |
| 23388 | 23436 | ||
| 23389 | (defvar rmail-user-mail-address-regexp nil "\ | 23437 | (defvar rmail-user-mail-address-regexp nil "\ |
| 23390 | *Regexp matching user mail addresses. | 23438 | *Regexp matching user mail addresses. |
| @@ -23400,43 +23448,30 @@ Then it should be a regexp matching your mail addresses. | |||
| 23400 | 23448 | ||
| 23401 | Setting this variable has an effect only before reading a mail.") | 23449 | Setting this variable has an effect only before reading a mail.") |
| 23402 | 23450 | ||
| 23403 | (custom-autoload (quote rmail-user-mail-address-regexp) "rmailsum" t) | 23451 | (custom-autoload 'rmail-user-mail-address-regexp "rmailsum" t) |
| 23404 | |||
| 23405 | ;;;*** | ||
| 23406 | |||
| 23407 | ;;;### (autoloads (news-post-news) "rnewspost" "obsolete/rnewspost.el" | ||
| 23408 | ;;;;;; (18104 24760)) | ||
| 23409 | ;;; Generated autoloads from obsolete/rnewspost.el | ||
| 23410 | |||
| 23411 | (autoload (quote news-post-news) "rnewspost" "\ | ||
| 23412 | Begin editing a new USENET news article to be posted. | ||
| 23413 | Type \\[describe-mode] once editing the article to get a list of commands. | ||
| 23414 | If NOQUERY is non-nil, we do not query before doing the work. | ||
| 23415 | |||
| 23416 | \(fn &optional NOQUERY)" t nil) | ||
| 23417 | 23452 | ||
| 23418 | ;;;*** | 23453 | ;;;*** |
| 23419 | 23454 | ||
| 23420 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region | 23455 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region |
| 23421 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (18104 24739)) | 23456 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (18088 55088)) |
| 23422 | ;;; Generated autoloads from rot13.el | 23457 | ;;; Generated autoloads from rot13.el |
| 23423 | 23458 | ||
| 23424 | (autoload (quote rot13) "rot13" "\ | 23459 | (autoload 'rot13 "rot13" "\ |
| 23425 | Return ROT13 encryption of OBJECT, a buffer or string. | 23460 | Return ROT13 encryption of OBJECT, a buffer or string. |
| 23426 | 23461 | ||
| 23427 | \(fn OBJECT &optional START END)" nil nil) | 23462 | \(fn OBJECT &optional START END)" nil nil) |
| 23428 | 23463 | ||
| 23429 | (autoload (quote rot13-string) "rot13" "\ | 23464 | (autoload 'rot13-string "rot13" "\ |
| 23430 | Return ROT13 encryption of STRING. | 23465 | Return ROT13 encryption of STRING. |
| 23431 | 23466 | ||
| 23432 | \(fn STRING)" nil nil) | 23467 | \(fn STRING)" nil nil) |
| 23433 | 23468 | ||
| 23434 | (autoload (quote rot13-region) "rot13" "\ | 23469 | (autoload 'rot13-region "rot13" "\ |
| 23435 | ROT13 encrypt the region between START and END in current buffer. | 23470 | ROT13 encrypt the region between START and END in current buffer. |
| 23436 | 23471 | ||
| 23437 | \(fn START END)" t nil) | 23472 | \(fn START END)" t nil) |
| 23438 | 23473 | ||
| 23439 | (autoload (quote rot13-other-window) "rot13" "\ | 23474 | (autoload 'rot13-other-window "rot13" "\ |
| 23440 | Display current buffer in ROT13 in another window. | 23475 | Display current buffer in ROT13 in another window. |
| 23441 | The text itself is not modified, only the way it is displayed is affected. | 23476 | The text itself is not modified, only the way it is displayed is affected. |
| 23442 | 23477 | ||
| @@ -23448,36 +23483,36 @@ See also `toggle-rot13-mode'. | |||
| 23448 | 23483 | ||
| 23449 | \(fn)" t nil) | 23484 | \(fn)" t nil) |
| 23450 | 23485 | ||
| 23451 | (autoload (quote toggle-rot13-mode) "rot13" "\ | 23486 | (autoload 'toggle-rot13-mode "rot13" "\ |
| 23452 | Toggle the use of ROT13 encoding for the current window. | 23487 | Toggle the use of ROT13 encoding for the current window. |
| 23453 | 23488 | ||
| 23454 | \(fn)" t nil) | 23489 | \(fn)" t nil) |
| 23455 | 23490 | ||
| 23456 | ;;;*** | 23491 | ;;;*** |
| 23457 | 23492 | ||
| 23458 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (18104 | 23493 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (18088 |
| 23459 | ;;;;;; 24739)) | 23494 | ;;;;;; 55088)) |
| 23460 | ;;; Generated autoloads from ruler-mode.el | 23495 | ;;; Generated autoloads from ruler-mode.el |
| 23461 | 23496 | ||
| 23462 | (autoload (quote ruler-mode) "ruler-mode" "\ | 23497 | (autoload 'ruler-mode "ruler-mode" "\ |
| 23463 | Display a ruler in the header line if ARG > 0. | 23498 | Display a ruler in the header line if ARG > 0. |
| 23464 | 23499 | ||
| 23465 | \(fn &optional ARG)" t nil) | 23500 | \(fn &optional ARG)" t nil) |
| 23466 | 23501 | ||
| 23467 | ;;;*** | 23502 | ;;;*** |
| 23468 | 23503 | ||
| 23469 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (18104 | 23504 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (18142 |
| 23470 | ;;;;;; 24748)) | 23505 | ;;;;;; 63529)) |
| 23471 | ;;; Generated autoloads from emacs-lisp/rx.el | 23506 | ;;; Generated autoloads from emacs-lisp/rx.el |
| 23472 | 23507 | ||
| 23473 | (autoload (quote rx-to-string) "rx" "\ | 23508 | (autoload 'rx-to-string "rx" "\ |
| 23474 | Parse and produce code for regular expression FORM. | 23509 | Parse and produce code for regular expression FORM. |
| 23475 | FORM is a regular expression in sexp form. | 23510 | FORM is a regular expression in sexp form. |
| 23476 | NO-GROUP non-nil means don't put shy groups around the result. | 23511 | NO-GROUP non-nil means don't put shy groups around the result. |
| 23477 | 23512 | ||
| 23478 | \(fn FORM &optional NO-GROUP)" nil nil) | 23513 | \(fn FORM &optional NO-GROUP)" nil nil) |
| 23479 | 23514 | ||
| 23480 | (autoload (quote rx) "rx" "\ | 23515 | (autoload 'rx "rx" "\ |
| 23481 | Translate regular expressions REGEXPS in sexp form to a regexp string. | 23516 | Translate regular expressions REGEXPS in sexp form to a regexp string. |
| 23482 | REGEXPS is a non-empty sequence of forms of the sort listed below. | 23517 | REGEXPS is a non-empty sequence of forms of the sort listed below. |
| 23483 | See also `rx-to-string' for how to do such a translation at run-time. | 23518 | See also `rx-to-string' for how to do such a translation at run-time. |
| @@ -23493,7 +23528,7 @@ CHAR | |||
| 23493 | 23528 | ||
| 23494 | `not-newline', `nonl' | 23529 | `not-newline', `nonl' |
| 23495 | matches any character except a newline. | 23530 | matches any character except a newline. |
| 23496 | . | 23531 | |
| 23497 | `anything' | 23532 | `anything' |
| 23498 | matches any character | 23533 | matches any character |
| 23499 | 23534 | ||
| @@ -23780,7 +23815,7 @@ enclosed in `(and ...)'. | |||
| 23780 | ;;;*** | 23815 | ;;;*** |
| 23781 | 23816 | ||
| 23782 | ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" | 23817 | ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" |
| 23783 | ;;;;;; (18104 24739)) | 23818 | ;;;;;; (18211 32385)) |
| 23784 | ;;; Generated autoloads from savehist.el | 23819 | ;;; Generated autoloads from savehist.el |
| 23785 | 23820 | ||
| 23786 | (defvar savehist-mode nil "\ | 23821 | (defvar savehist-mode nil "\ |
| @@ -23788,9 +23823,9 @@ Mode for automatic saving of minibuffer history. | |||
| 23788 | Set this by calling the `savehist-mode' function or using the customize | 23823 | Set this by calling the `savehist-mode' function or using the customize |
| 23789 | interface.") | 23824 | interface.") |
| 23790 | 23825 | ||
| 23791 | (custom-autoload (quote savehist-mode) "savehist" nil) | 23826 | (custom-autoload 'savehist-mode "savehist" nil) |
| 23792 | 23827 | ||
| 23793 | (autoload (quote savehist-mode) "savehist" "\ | 23828 | (autoload 'savehist-mode "savehist" "\ |
| 23794 | Toggle savehist-mode. | 23829 | Toggle savehist-mode. |
| 23795 | Positive ARG turns on `savehist-mode'. When on, savehist-mode causes | 23830 | Positive ARG turns on `savehist-mode'. When on, savehist-mode causes |
| 23796 | minibuffer history to be saved periodically and when exiting Emacs. | 23831 | minibuffer history to be saved periodically and when exiting Emacs. |
| @@ -23806,10 +23841,10 @@ which is probably undesirable. | |||
| 23806 | ;;;*** | 23841 | ;;;*** |
| 23807 | 23842 | ||
| 23808 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" | 23843 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" |
| 23809 | ;;;;;; (18104 24768)) | 23844 | ;;;;;; (18120 34753)) |
| 23810 | ;;; Generated autoloads from progmodes/scheme.el | 23845 | ;;; Generated autoloads from progmodes/scheme.el |
| 23811 | 23846 | ||
| 23812 | (autoload (quote scheme-mode) "scheme" "\ | 23847 | (autoload 'scheme-mode "scheme" "\ |
| 23813 | Major mode for editing Scheme code. | 23848 | Major mode for editing Scheme code. |
| 23814 | Editing commands are similar to those of `lisp-mode'. | 23849 | Editing commands are similar to those of `lisp-mode'. |
| 23815 | 23850 | ||
| @@ -23831,7 +23866,7 @@ if that value is non-nil. | |||
| 23831 | 23866 | ||
| 23832 | \(fn)" t nil) | 23867 | \(fn)" t nil) |
| 23833 | 23868 | ||
| 23834 | (autoload (quote dsssl-mode) "scheme" "\ | 23869 | (autoload 'dsssl-mode "scheme" "\ |
| 23835 | Major mode for editing DSSSL code. | 23870 | Major mode for editing DSSSL code. |
| 23836 | Editing commands are similar to those of `lisp-mode'. | 23871 | Editing commands are similar to those of `lisp-mode'. |
| 23837 | 23872 | ||
| @@ -23848,10 +23883,10 @@ that variable's value is a string. | |||
| 23848 | ;;;*** | 23883 | ;;;*** |
| 23849 | 23884 | ||
| 23850 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" | 23885 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" |
| 23851 | ;;;;;; (18104 24755)) | 23886 | ;;;;;; (18212 46007)) |
| 23852 | ;;; Generated autoloads from gnus/score-mode.el | 23887 | ;;; Generated autoloads from gnus/score-mode.el |
| 23853 | 23888 | ||
| 23854 | (autoload (quote gnus-score-mode) "score-mode" "\ | 23889 | (autoload 'gnus-score-mode "score-mode" "\ |
| 23855 | Mode for editing Gnus score files. | 23890 | Mode for editing Gnus score files. |
| 23856 | This mode is an extended emacs-lisp mode. | 23891 | This mode is an extended emacs-lisp mode. |
| 23857 | 23892 | ||
| @@ -23861,33 +23896,8 @@ This mode is an extended emacs-lisp mode. | |||
| 23861 | 23896 | ||
| 23862 | ;;;*** | 23897 | ;;;*** |
| 23863 | 23898 | ||
| 23864 | ;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (18104 | ||
| 23865 | ;;;;;; 24760)) | ||
| 23866 | ;;; Generated autoloads from obsolete/scribe.el | ||
| 23867 | |||
| 23868 | (autoload (quote scribe-mode) "scribe" "\ | ||
| 23869 | Major mode for editing files of Scribe (a text formatter) source. | ||
| 23870 | Scribe-mode is similar to text-mode, with a few extra commands added. | ||
| 23871 | \\{scribe-mode-map} | ||
| 23872 | |||
| 23873 | Interesting variables: | ||
| 23874 | |||
| 23875 | `scribe-fancy-paragraphs' | ||
| 23876 | Non-nil makes Scribe mode use a different style of paragraph separation. | ||
| 23877 | |||
| 23878 | `scribe-electric-quote' | ||
| 23879 | Non-nil makes insert of double quote use `` or '' depending on context. | ||
| 23880 | |||
| 23881 | `scribe-electric-parenthesis' | ||
| 23882 | Non-nil makes an open-parenthesis char (one of `([<{') | ||
| 23883 | automatically insert its close if typed after an @Command form. | ||
| 23884 | |||
| 23885 | \(fn)" t nil) | ||
| 23886 | |||
| 23887 | ;;;*** | ||
| 23888 | |||
| 23889 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" | 23899 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" |
| 23890 | ;;;;;; (18104 24739)) | 23900 | ;;;;;; (18088 55088)) |
| 23891 | ;;; Generated autoloads from scroll-all.el | 23901 | ;;; Generated autoloads from scroll-all.el |
| 23892 | 23902 | ||
| 23893 | (defvar scroll-all-mode nil "\ | 23903 | (defvar scroll-all-mode nil "\ |
| @@ -23897,9 +23907,9 @@ Setting this variable directly does not take effect; | |||
| 23897 | either customize it (see the info node `Easy Customization') | 23907 | either customize it (see the info node `Easy Customization') |
| 23898 | or call the function `scroll-all-mode'.") | 23908 | or call the function `scroll-all-mode'.") |
| 23899 | 23909 | ||
| 23900 | (custom-autoload (quote scroll-all-mode) "scroll-all" nil) | 23910 | (custom-autoload 'scroll-all-mode "scroll-all" nil) |
| 23901 | 23911 | ||
| 23902 | (autoload (quote scroll-all-mode) "scroll-all" "\ | 23912 | (autoload 'scroll-all-mode "scroll-all" "\ |
| 23903 | Toggle Scroll-All minor mode. | 23913 | Toggle Scroll-All minor mode. |
| 23904 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. | 23914 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. |
| 23905 | When Scroll-All mode is on, scrolling commands entered in one window | 23915 | When Scroll-All mode is on, scrolling commands entered in one window |
| @@ -23910,10 +23920,10 @@ apply to all visible windows in the same frame. | |||
| 23910 | ;;;*** | 23920 | ;;;*** |
| 23911 | 23921 | ||
| 23912 | ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" | 23922 | ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" |
| 23913 | ;;;;;; (18104 24739)) | 23923 | ;;;;;; (18202 3996)) |
| 23914 | ;;; Generated autoloads from scroll-lock.el | 23924 | ;;; Generated autoloads from scroll-lock.el |
| 23915 | 23925 | ||
| 23916 | (autoload (quote scroll-lock-mode) "scroll-lock" "\ | 23926 | (autoload 'scroll-lock-mode "scroll-lock" "\ |
| 23917 | Buffer-local minor mode for pager-like scrolling. | 23927 | Buffer-local minor mode for pager-like scrolling. |
| 23918 | Keys which normally move point by line or paragraph will scroll | 23928 | Keys which normally move point by line or paragraph will scroll |
| 23919 | the buffer by the respective amount of lines instead and point | 23929 | the buffer by the respective amount of lines instead and point |
| @@ -23932,10 +23942,10 @@ during scrolling. | |||
| 23932 | ;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name | 23942 | ;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name |
| 23933 | ;;;;;; mail-header-separator send-mail-function mail-interactive | 23943 | ;;;;;; mail-header-separator send-mail-function mail-interactive |
| 23934 | ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) | 23944 | ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) |
| 23935 | ;;;;;; "sendmail" "mail/sendmail.el" (18104 24758)) | 23945 | ;;;;;; "sendmail" "mail/sendmail.el" (18197 21674)) |
| 23936 | ;;; Generated autoloads from mail/sendmail.el | 23946 | ;;; Generated autoloads from mail/sendmail.el |
| 23937 | 23947 | ||
| 23938 | (defvar mail-from-style (quote angles) "\ | 23948 | (defvar mail-from-style 'angles "\ |
| 23939 | Specifies how \"From:\" fields look. | 23949 | Specifies how \"From:\" fields look. |
| 23940 | 23950 | ||
| 23941 | If `nil', they contain just the return address like: | 23951 | If `nil', they contain just the return address like: |
| @@ -23952,7 +23962,7 @@ Emacs to pass the proper email address from `user-mail-address' | |||
| 23952 | to the mailer to specify the envelope-from address. But that is now | 23962 | to the mailer to specify the envelope-from address. But that is now |
| 23953 | controlled by a separate variable, `mail-specify-envelope-from'.") | 23963 | controlled by a separate variable, `mail-specify-envelope-from'.") |
| 23954 | 23964 | ||
| 23955 | (custom-autoload (quote mail-from-style) "sendmail" t) | 23965 | (custom-autoload 'mail-from-style "sendmail" t) |
| 23956 | 23966 | ||
| 23957 | (defvar mail-specify-envelope-from nil "\ | 23967 | (defvar mail-specify-envelope-from nil "\ |
| 23958 | If non-nil, specify the envelope-from address when sending mail. | 23968 | If non-nil, specify the envelope-from address when sending mail. |
| @@ -23964,24 +23974,24 @@ privileged operation. This variable affects sendmail and | |||
| 23964 | smtpmail -- if you use feedmail to send mail, see instead the | 23974 | smtpmail -- if you use feedmail to send mail, see instead the |
| 23965 | variable `feedmail-deduce-envelope-from'.") | 23975 | variable `feedmail-deduce-envelope-from'.") |
| 23966 | 23976 | ||
| 23967 | (custom-autoload (quote mail-specify-envelope-from) "sendmail" t) | 23977 | (custom-autoload 'mail-specify-envelope-from "sendmail" t) |
| 23968 | 23978 | ||
| 23969 | (defvar mail-self-blind nil "\ | 23979 | (defvar mail-self-blind nil "\ |
| 23970 | Non-nil means insert BCC to self in messages to be sent. | 23980 | Non-nil means insert BCC to self in messages to be sent. |
| 23971 | This is done when the message is initialized, | 23981 | This is done when the message is initialized, |
| 23972 | so you can remove or alter the BCC field to override the default.") | 23982 | so you can remove or alter the BCC field to override the default.") |
| 23973 | 23983 | ||
| 23974 | (custom-autoload (quote mail-self-blind) "sendmail" t) | 23984 | (custom-autoload 'mail-self-blind "sendmail" t) |
| 23975 | 23985 | ||
| 23976 | (defvar mail-interactive nil "\ | 23986 | (defvar mail-interactive nil "\ |
| 23977 | Non-nil means when sending a message wait for and display errors. | 23987 | Non-nil means when sending a message wait for and display errors. |
| 23978 | nil means let mailer mail back a message to report errors.") | 23988 | nil means let mailer mail back a message to report errors.") |
| 23979 | 23989 | ||
| 23980 | (custom-autoload (quote mail-interactive) "sendmail" t) | 23990 | (custom-autoload 'mail-interactive "sendmail" t) |
| 23981 | 23991 | ||
| 23982 | (put (quote send-mail-function) (quote standard-value) (quote ((if (and window-system (memq system-type (quote (darwin windows-nt)))) (quote mailclient-send-it) (quote sendmail-send-it))))) | 23992 | (put 'send-mail-function 'standard-value '((if (and window-system (memq system-type '(darwin windows-nt))) 'mailclient-send-it 'sendmail-send-it))) |
| 23983 | 23993 | ||
| 23984 | (defvar send-mail-function (if (and window-system (memq system-type (quote (darwin windows-nt)))) (quote mailclient-send-it) (quote sendmail-send-it)) "\ | 23994 | (defvar send-mail-function (if (and window-system (memq system-type '(darwin windows-nt))) 'mailclient-send-it 'sendmail-send-it) "\ |
| 23985 | Function to call to send the current buffer as mail. | 23995 | Function to call to send the current buffer as mail. |
| 23986 | The headers should be delimited by a line which is | 23996 | The headers should be delimited by a line which is |
| 23987 | not a valid RFC822 header or continuation line, | 23997 | not a valid RFC822 header or continuation line, |
| @@ -23989,25 +23999,25 @@ that matches the variable `mail-header-separator'. | |||
| 23989 | This is used by the default mail-sending commands. See also | 23999 | This is used by the default mail-sending commands. See also |
| 23990 | `message-send-mail-function' for use with the Message package.") | 24000 | `message-send-mail-function' for use with the Message package.") |
| 23991 | 24001 | ||
| 23992 | (custom-autoload (quote send-mail-function) "sendmail" t) | 24002 | (custom-autoload 'send-mail-function "sendmail" t) |
| 23993 | 24003 | ||
| 23994 | (defvar mail-header-separator "--text follows this line--" "\ | 24004 | (defvar mail-header-separator "--text follows this line--" "\ |
| 23995 | Line used to separate headers from text in messages being composed.") | 24005 | Line used to separate headers from text in messages being composed.") |
| 23996 | 24006 | ||
| 23997 | (custom-autoload (quote mail-header-separator) "sendmail" t) | 24007 | (custom-autoload 'mail-header-separator "sendmail" t) |
| 23998 | 24008 | ||
| 23999 | (defvar mail-archive-file-name nil "\ | 24009 | (defvar mail-archive-file-name nil "\ |
| 24000 | Name of file to write all outgoing messages in, or nil for none. | 24010 | Name of file to write all outgoing messages in, or nil for none. |
| 24001 | This can be an inbox file or an Rmail file.") | 24011 | This can be an inbox file or an Rmail file.") |
| 24002 | 24012 | ||
| 24003 | (custom-autoload (quote mail-archive-file-name) "sendmail" t) | 24013 | (custom-autoload 'mail-archive-file-name "sendmail" t) |
| 24004 | 24014 | ||
| 24005 | (defvar mail-default-reply-to nil "\ | 24015 | (defvar mail-default-reply-to nil "\ |
| 24006 | Address to insert as default Reply-to field of outgoing messages. | 24016 | Address to insert as default Reply-to field of outgoing messages. |
| 24007 | If nil, it will be initialized from the REPLYTO environment variable | 24017 | If nil, it will be initialized from the REPLYTO environment variable |
| 24008 | when you first send mail.") | 24018 | when you first send mail.") |
| 24009 | 24019 | ||
| 24010 | (custom-autoload (quote mail-default-reply-to) "sendmail" t) | 24020 | (custom-autoload 'mail-default-reply-to "sendmail" t) |
| 24011 | 24021 | ||
| 24012 | (defvar mail-alias-file nil "\ | 24022 | (defvar mail-alias-file nil "\ |
| 24013 | If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | 24023 | If non-nil, the name of a file to use instead of `/usr/lib/aliases'. |
| @@ -24015,7 +24025,7 @@ This file defines aliases to be expanded by the mailer; this is a different | |||
| 24015 | feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | 24025 | feature from that of defining aliases in `.mailrc' to be expanded in Emacs. |
| 24016 | This variable has no effect unless your system uses sendmail as its mailer.") | 24026 | This variable has no effect unless your system uses sendmail as its mailer.") |
| 24017 | 24027 | ||
| 24018 | (custom-autoload (quote mail-alias-file) "sendmail" t) | 24028 | (custom-autoload 'mail-alias-file "sendmail" t) |
| 24019 | 24029 | ||
| 24020 | (defvar mail-personal-alias-file "~/.mailrc" "\ | 24030 | (defvar mail-personal-alias-file "~/.mailrc" "\ |
| 24021 | If non-nil, the name of the user's personal mail alias file. | 24031 | If non-nil, the name of the user's personal mail alias file. |
| @@ -24023,13 +24033,13 @@ This file typically should be in same format as the `.mailrc' file used by | |||
| 24023 | the `Mail' or `mailx' program. | 24033 | the `Mail' or `mailx' program. |
| 24024 | This file need not actually exist.") | 24034 | This file need not actually exist.") |
| 24025 | 24035 | ||
| 24026 | (custom-autoload (quote mail-personal-alias-file) "sendmail" t) | 24036 | (custom-autoload 'mail-personal-alias-file "sendmail" t) |
| 24027 | 24037 | ||
| 24028 | (defvar mail-setup-hook nil "\ | 24038 | (defvar mail-setup-hook nil "\ |
| 24029 | Normal hook, run each time a new outgoing mail message is initialized. | 24039 | Normal hook, run each time a new outgoing mail message is initialized. |
| 24030 | The function `mail-setup' runs this hook.") | 24040 | The function `mail-setup' runs this hook.") |
| 24031 | 24041 | ||
| 24032 | (custom-autoload (quote mail-setup-hook) "sendmail" t) | 24042 | (custom-autoload 'mail-setup-hook "sendmail" t) |
| 24033 | 24043 | ||
| 24034 | (defvar mail-aliases t "\ | 24044 | (defvar mail-aliases t "\ |
| 24035 | Alist of mail address aliases, | 24045 | Alist of mail address aliases, |
| @@ -24043,13 +24053,13 @@ The alias definitions in the file have this form: | |||
| 24043 | Prefix insert on lines of yanked message being replied to. | 24053 | Prefix insert on lines of yanked message being replied to. |
| 24044 | nil means use indentation.") | 24054 | nil means use indentation.") |
| 24045 | 24055 | ||
| 24046 | (custom-autoload (quote mail-yank-prefix) "sendmail" t) | 24056 | (custom-autoload 'mail-yank-prefix "sendmail" t) |
| 24047 | 24057 | ||
| 24048 | (defvar mail-indentation-spaces 3 "\ | 24058 | (defvar mail-indentation-spaces 3 "\ |
| 24049 | Number of spaces to insert at the beginning of each cited line. | 24059 | Number of spaces to insert at the beginning of each cited line. |
| 24050 | Used by `mail-yank-original' via `mail-indent-citation'.") | 24060 | Used by `mail-yank-original' via `mail-indent-citation'.") |
| 24051 | 24061 | ||
| 24052 | (custom-autoload (quote mail-indentation-spaces) "sendmail" t) | 24062 | (custom-autoload 'mail-indentation-spaces "sendmail" t) |
| 24053 | 24063 | ||
| 24054 | (defvar mail-citation-hook nil "\ | 24064 | (defvar mail-citation-hook nil "\ |
| 24055 | Hook for modifying a citation just inserted in the mail buffer. | 24065 | Hook for modifying a citation just inserted in the mail buffer. |
| @@ -24062,7 +24072,7 @@ in the cited portion of the message. | |||
| 24062 | If this hook is entirely empty (nil), a default action is taken | 24072 | If this hook is entirely empty (nil), a default action is taken |
| 24063 | instead of no action.") | 24073 | instead of no action.") |
| 24064 | 24074 | ||
| 24065 | (custom-autoload (quote mail-citation-hook) "sendmail" t) | 24075 | (custom-autoload 'mail-citation-hook "sendmail" t) |
| 24066 | 24076 | ||
| 24067 | (defvar mail-citation-prefix-regexp "[ ]*[-a-z0-9A-Z]*>+[ ]*\\|[ ]*" "\ | 24077 | (defvar mail-citation-prefix-regexp "[ ]*[-a-z0-9A-Z]*>+[ ]*\\|[ ]*" "\ |
| 24068 | Regular expression to match a citation prefix plus whitespace. | 24078 | Regular expression to match a citation prefix plus whitespace. |
| @@ -24070,7 +24080,7 @@ It should match whatever sort of citation prefixes you want to handle, | |||
| 24070 | with whitespace before and after; it should also match just whitespace. | 24080 | with whitespace before and after; it should also match just whitespace. |
| 24071 | The default value matches citations like `foo-bar>' plus whitespace.") | 24081 | The default value matches citations like `foo-bar>' plus whitespace.") |
| 24072 | 24082 | ||
| 24073 | (custom-autoload (quote mail-citation-prefix-regexp) "sendmail" t) | 24083 | (custom-autoload 'mail-citation-prefix-regexp "sendmail" t) |
| 24074 | 24084 | ||
| 24075 | (defvar mail-signature nil "\ | 24085 | (defvar mail-signature nil "\ |
| 24076 | Text inserted at end of mail buffer when a message is initialized. | 24086 | Text inserted at end of mail buffer when a message is initialized. |
| @@ -24081,26 +24091,26 @@ If a string, that string is inserted. | |||
| 24081 | Otherwise, it should be an expression; it is evaluated | 24091 | Otherwise, it should be an expression; it is evaluated |
| 24082 | and should insert whatever you want to insert.") | 24092 | and should insert whatever you want to insert.") |
| 24083 | 24093 | ||
| 24084 | (custom-autoload (quote mail-signature) "sendmail" t) | 24094 | (custom-autoload 'mail-signature "sendmail" t) |
| 24085 | 24095 | ||
| 24086 | (defvar mail-signature-file "~/.signature" "\ | 24096 | (defvar mail-signature-file "~/.signature" "\ |
| 24087 | File containing the text inserted at end of mail buffer.") | 24097 | File containing the text inserted at end of mail buffer.") |
| 24088 | 24098 | ||
| 24089 | (custom-autoload (quote mail-signature-file) "sendmail" t) | 24099 | (custom-autoload 'mail-signature-file "sendmail" t) |
| 24090 | 24100 | ||
| 24091 | (defvar mail-default-directory "~/" "\ | 24101 | (defvar mail-default-directory "~/" "\ |
| 24092 | Directory for mail buffers. | 24102 | Directory for mail buffers. |
| 24093 | Value of `default-directory' for mail buffers. | 24103 | Value of `default-directory' for mail buffers. |
| 24094 | This directory is used for auto-save files of mail buffers.") | 24104 | This directory is used for auto-save files of mail buffers.") |
| 24095 | 24105 | ||
| 24096 | (custom-autoload (quote mail-default-directory) "sendmail" t) | 24106 | (custom-autoload 'mail-default-directory "sendmail" t) |
| 24097 | 24107 | ||
| 24098 | (defvar mail-default-headers nil "\ | 24108 | (defvar mail-default-headers nil "\ |
| 24099 | A string containing header lines, to be inserted in outgoing messages. | 24109 | A string containing header lines, to be inserted in outgoing messages. |
| 24100 | It is inserted before you edit the message, | 24110 | It is inserted before you edit the message, |
| 24101 | so you can edit or delete these lines.") | 24111 | so you can edit or delete these lines.") |
| 24102 | 24112 | ||
| 24103 | (custom-autoload (quote mail-default-headers) "sendmail" t) | 24113 | (custom-autoload 'mail-default-headers "sendmail" t) |
| 24104 | 24114 | ||
| 24105 | (defvar mail-bury-selects-summary t "\ | 24115 | (defvar mail-bury-selects-summary t "\ |
| 24106 | If non-nil, try to show RMAIL summary buffer after returning from mail. | 24116 | If non-nil, try to show RMAIL summary buffer after returning from mail. |
| @@ -24108,9 +24118,9 @@ The functions \\[mail-send-on-exit] or \\[mail-dont-send] select | |||
| 24108 | the RMAIL summary buffer before returning, if it exists and this variable | 24118 | the RMAIL summary buffer before returning, if it exists and this variable |
| 24109 | is non-nil.") | 24119 | is non-nil.") |
| 24110 | 24120 | ||
| 24111 | (custom-autoload (quote mail-bury-selects-summary) "sendmail" t) | 24121 | (custom-autoload 'mail-bury-selects-summary "sendmail" t) |
| 24112 | 24122 | ||
| 24113 | (defvar mail-send-nonascii (quote mime) "\ | 24123 | (defvar mail-send-nonascii 'mime "\ |
| 24114 | Specify whether to allow sending non-ASCII characters in mail. | 24124 | Specify whether to allow sending non-ASCII characters in mail. |
| 24115 | If t, that means do allow it. nil means don't allow it. | 24125 | If t, that means do allow it. nil means don't allow it. |
| 24116 | `query' means ask the user each time. | 24126 | `query' means ask the user each time. |
| @@ -24119,9 +24129,9 @@ The default is `mime'. | |||
| 24119 | Including non-ASCII characters in a mail message can be problematical | 24129 | Including non-ASCII characters in a mail message can be problematical |
| 24120 | for the recipient, who may not know how to decode them properly.") | 24130 | for the recipient, who may not know how to decode them properly.") |
| 24121 | 24131 | ||
| 24122 | (custom-autoload (quote mail-send-nonascii) "sendmail" t) | 24132 | (custom-autoload 'mail-send-nonascii "sendmail" t) |
| 24123 | 24133 | ||
| 24124 | (autoload (quote mail-mode) "sendmail" "\ | 24134 | (autoload 'mail-mode "sendmail" "\ |
| 24125 | Major mode for editing mail to be sent. | 24135 | Major mode for editing mail to be sent. |
| 24126 | Like Text Mode but with these additional commands: | 24136 | Like Text Mode but with these additional commands: |
| 24127 | 24137 | ||
| @@ -24150,7 +24160,7 @@ Turning on Mail mode runs the normal hooks `text-mode-hook' and | |||
| 24150 | The variable is used to trigger insertion of the \"Mail-Followup-To\" | 24160 | The variable is used to trigger insertion of the \"Mail-Followup-To\" |
| 24151 | header when sending a message to a mailing list.") | 24161 | header when sending a message to a mailing list.") |
| 24152 | 24162 | ||
| 24153 | (custom-autoload (quote mail-mailing-lists) "sendmail" t) | 24163 | (custom-autoload 'mail-mailing-lists "sendmail" t) |
| 24154 | 24164 | ||
| 24155 | (defvar sendmail-coding-system nil "\ | 24165 | (defvar sendmail-coding-system nil "\ |
| 24156 | *Coding system for encoding the outgoing mail. | 24166 | *Coding system for encoding the outgoing mail. |
| @@ -24159,7 +24169,7 @@ and `default-sendmail-coding-system', | |||
| 24159 | but lower priority than the local value of `buffer-file-coding-system'. | 24169 | but lower priority than the local value of `buffer-file-coding-system'. |
| 24160 | See also the function `select-message-coding-system'.") | 24170 | See also the function `select-message-coding-system'.") |
| 24161 | 24171 | ||
| 24162 | (defvar default-sendmail-coding-system (quote iso-latin-1) "\ | 24172 | (defvar default-sendmail-coding-system 'iso-latin-1 "\ |
| 24163 | Default coding system for encoding the outgoing mail. | 24173 | Default coding system for encoding the outgoing mail. |
| 24164 | This variable is used only when `sendmail-coding-system' is nil. | 24174 | This variable is used only when `sendmail-coding-system' is nil. |
| 24165 | 24175 | ||
| @@ -24170,7 +24180,7 @@ of outgoing mails regardless of the current language environment. | |||
| 24170 | See also the function `select-message-coding-system'.") | 24180 | See also the function `select-message-coding-system'.") |
| 24171 | (add-hook 'same-window-buffer-names "*mail*") | 24181 | (add-hook 'same-window-buffer-names "*mail*") |
| 24172 | 24182 | ||
| 24173 | (autoload (quote mail) "sendmail" "\ | 24183 | (autoload 'mail "sendmail" "\ |
| 24174 | Edit a message to be sent. Prefix arg means resume editing (don't erase). | 24184 | Edit a message to be sent. Prefix arg means resume editing (don't erase). |
| 24175 | When this function returns, the buffer `*mail*' is selected. | 24185 | When this function returns, the buffer `*mail*' is selected. |
| 24176 | The value is t if the message was newly initialized; otherwise, nil. | 24186 | The value is t if the message was newly initialized; otherwise, nil. |
| @@ -24220,12 +24230,12 @@ The seventh argument ACTIONS is a list of actions to take | |||
| 24220 | 24230 | ||
| 24221 | \(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER ACTIONS)" t nil) | 24231 | \(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER ACTIONS)" t nil) |
| 24222 | 24232 | ||
| 24223 | (autoload (quote mail-other-window) "sendmail" "\ | 24233 | (autoload 'mail-other-window "sendmail" "\ |
| 24224 | Like `mail' command, but display mail buffer in another window. | 24234 | Like `mail' command, but display mail buffer in another window. |
| 24225 | 24235 | ||
| 24226 | \(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) | 24236 | \(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) |
| 24227 | 24237 | ||
| 24228 | (autoload (quote mail-other-frame) "sendmail" "\ | 24238 | (autoload 'mail-other-frame "sendmail" "\ |
| 24229 | Like `mail' command, but display mail buffer in another frame. | 24239 | Like `mail' command, but display mail buffer in another frame. |
| 24230 | 24240 | ||
| 24231 | \(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) | 24241 | \(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil) |
| @@ -24233,10 +24243,10 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 24233 | ;;;*** | 24243 | ;;;*** |
| 24234 | 24244 | ||
| 24235 | ;;;### (autoloads (server-save-buffers-kill-terminal server-mode | 24245 | ;;;### (autoloads (server-save-buffers-kill-terminal server-mode |
| 24236 | ;;;;;; server-start) "server" "server.el" (18104 24739)) | 24246 | ;;;;;; server-start) "server" "server.el" (18213 13926)) |
| 24237 | ;;; Generated autoloads from server.el | 24247 | ;;; Generated autoloads from server.el |
| 24238 | 24248 | ||
| 24239 | (autoload (quote server-start) "server" "\ | 24249 | (autoload 'server-start "server" "\ |
| 24240 | Allow this Emacs process to be a server for client processes. | 24250 | Allow this Emacs process to be a server for client processes. |
| 24241 | This starts a server communications subprocess through which | 24251 | This starts a server communications subprocess through which |
| 24242 | client \"editors\" can send your editing commands to this Emacs | 24252 | client \"editors\" can send your editing commands to this Emacs |
| @@ -24255,9 +24265,9 @@ Setting this variable directly does not take effect; | |||
| 24255 | either customize it (see the info node `Easy Customization') | 24265 | either customize it (see the info node `Easy Customization') |
| 24256 | or call the function `server-mode'.") | 24266 | or call the function `server-mode'.") |
| 24257 | 24267 | ||
| 24258 | (custom-autoload (quote server-mode) "server" nil) | 24268 | (custom-autoload 'server-mode "server" nil) |
| 24259 | 24269 | ||
| 24260 | (autoload (quote server-mode) "server" "\ | 24270 | (autoload 'server-mode "server" "\ |
| 24261 | Toggle Server mode. | 24271 | Toggle Server mode. |
| 24262 | With ARG, turn Server mode on if ARG is positive, off otherwise. | 24272 | With ARG, turn Server mode on if ARG is positive, off otherwise. |
| 24263 | Server mode runs a process that accepts commands from the | 24273 | Server mode runs a process that accepts commands from the |
| @@ -24265,7 +24275,7 @@ Server mode runs a process that accepts commands from the | |||
| 24265 | 24275 | ||
| 24266 | \(fn &optional ARG)" t nil) | 24276 | \(fn &optional ARG)" t nil) |
| 24267 | 24277 | ||
| 24268 | (autoload (quote server-save-buffers-kill-terminal) "server" "\ | 24278 | (autoload 'server-save-buffers-kill-terminal "server" "\ |
| 24269 | Offer to save each buffer, then kill PROC. | 24279 | Offer to save each buffer, then kill PROC. |
| 24270 | 24280 | ||
| 24271 | With prefix arg, silently save all file-visiting buffers, then kill. | 24281 | With prefix arg, silently save all file-visiting buffers, then kill. |
| @@ -24277,10 +24287,10 @@ only these files will be asked to be saved. | |||
| 24277 | 24287 | ||
| 24278 | ;;;*** | 24288 | ;;;*** |
| 24279 | 24289 | ||
| 24280 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (18104 24739)) | 24290 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (18209 8664)) |
| 24281 | ;;; Generated autoloads from ses.el | 24291 | ;;; Generated autoloads from ses.el |
| 24282 | 24292 | ||
| 24283 | (autoload (quote ses-mode) "ses" "\ | 24293 | (autoload 'ses-mode "ses" "\ |
| 24284 | Major mode for Simple Emacs Spreadsheet. | 24294 | Major mode for Simple Emacs Spreadsheet. |
| 24285 | See \"ses-example.ses\" (in `data-directory') for more info. | 24295 | See \"ses-example.ses\" (in `data-directory') for more info. |
| 24286 | 24296 | ||
| @@ -24296,10 +24306,10 @@ These are active only in the minibuffer, when entering or editing a formula: | |||
| 24296 | ;;;*** | 24306 | ;;;*** |
| 24297 | 24307 | ||
| 24298 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" | 24308 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" |
| 24299 | ;;;;;; (18104 24772)) | 24309 | ;;;;;; (18120 34753)) |
| 24300 | ;;; Generated autoloads from textmodes/sgml-mode.el | 24310 | ;;; Generated autoloads from textmodes/sgml-mode.el |
| 24301 | 24311 | ||
| 24302 | (autoload (quote sgml-mode) "sgml-mode" "\ | 24312 | (autoload 'sgml-mode "sgml-mode" "\ |
| 24303 | Major mode for editing SGML documents. | 24313 | Major mode for editing SGML documents. |
| 24304 | Makes > match <. | 24314 | Makes > match <. |
| 24305 | Keys <, &, SPC within <>, \", / and ' can be electric depending on | 24315 | Keys <, &, SPC within <>, \", / and ' can be electric depending on |
| @@ -24320,9 +24330,9 @@ Do \\[describe-key] on the following bindings to discover what they do. | |||
| 24320 | 24330 | ||
| 24321 | \(fn)" t nil) | 24331 | \(fn)" t nil) |
| 24322 | 24332 | ||
| 24323 | (defalias (quote xml-mode) (quote sgml-mode)) | 24333 | (defalias 'xml-mode 'sgml-mode) |
| 24324 | 24334 | ||
| 24325 | (autoload (quote html-mode) "sgml-mode" "\ | 24335 | (autoload 'html-mode "sgml-mode" "\ |
| 24326 | Major mode based on SGML mode for editing HTML documents. | 24336 | Major mode based on SGML mode for editing HTML documents. |
| 24327 | This allows inserting skeleton constructs used in hypertext documents with | 24337 | This allows inserting skeleton constructs used in hypertext documents with |
| 24328 | completion. See below for an introduction to HTML. Use | 24338 | completion. See below for an introduction to HTML. Use |
| @@ -24364,11 +24374,11 @@ To work around that, do: | |||
| 24364 | ;;;*** | 24374 | ;;;*** |
| 24365 | 24375 | ||
| 24366 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" | 24376 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" |
| 24367 | ;;;;;; (18104 24768)) | 24377 | ;;;;;; (18173 8196)) |
| 24368 | ;;; Generated autoloads from progmodes/sh-script.el | 24378 | ;;; Generated autoloads from progmodes/sh-script.el |
| 24369 | (put 'sh-shell 'safe-local-variable 'symbolp) | 24379 | (put 'sh-shell 'safe-local-variable 'symbolp) |
| 24370 | 24380 | ||
| 24371 | (autoload (quote sh-mode) "sh-script" "\ | 24381 | (autoload 'sh-mode "sh-script" "\ |
| 24372 | Major mode for editing shell scripts. | 24382 | Major mode for editing shell scripts. |
| 24373 | This mode works for many shells, since they all have roughly the same syntax, | 24383 | This mode works for many shells, since they all have roughly the same syntax, |
| 24374 | as far as commands, arguments, variables, pipes, comments etc. are concerned. | 24384 | as far as commands, arguments, variables, pipes, comments etc. are concerned. |
| @@ -24424,14 +24434,14 @@ with your script for an edit-interpret-debug cycle. | |||
| 24424 | 24434 | ||
| 24425 | \(fn)" t nil) | 24435 | \(fn)" t nil) |
| 24426 | 24436 | ||
| 24427 | (defalias (quote shell-script-mode) (quote sh-mode)) | 24437 | (defalias 'shell-script-mode 'sh-mode) |
| 24428 | 24438 | ||
| 24429 | ;;;*** | 24439 | ;;;*** |
| 24430 | 24440 | ||
| 24431 | ;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (18104 24755)) | 24441 | ;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (18130 62048)) |
| 24432 | ;;; Generated autoloads from gnus/sha1.el | 24442 | ;;; Generated autoloads from gnus/sha1.el |
| 24433 | 24443 | ||
| 24434 | (autoload (quote sha1) "sha1" "\ | 24444 | (autoload 'sha1 "sha1" "\ |
| 24435 | Return the SHA1 (Secure Hash Algorithm) of an object. | 24445 | Return the SHA1 (Secure Hash Algorithm) of an object. |
| 24436 | OBJECT is either a string or a buffer. | 24446 | OBJECT is either a string or a buffer. |
| 24437 | Optional arguments BEG and END denote buffer positions for computing the | 24447 | Optional arguments BEG and END denote buffer positions for computing the |
| @@ -24443,10 +24453,10 @@ If BINARY is non-nil, return a string in binary form. | |||
| 24443 | ;;;*** | 24453 | ;;;*** |
| 24444 | 24454 | ||
| 24445 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" | 24455 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" |
| 24446 | ;;;;;; (18104 24748)) | 24456 | ;;;;;; (18088 55096)) |
| 24447 | ;;; Generated autoloads from emacs-lisp/shadow.el | 24457 | ;;; Generated autoloads from emacs-lisp/shadow.el |
| 24448 | 24458 | ||
| 24449 | (autoload (quote list-load-path-shadows) "shadow" "\ | 24459 | (autoload 'list-load-path-shadows "shadow" "\ |
| 24450 | Display a list of Emacs Lisp files that shadow other files. | 24460 | Display a list of Emacs Lisp files that shadow other files. |
| 24451 | 24461 | ||
| 24452 | This function lists potential load path problems. Directories in | 24462 | This function lists potential load path problems. Directories in |
| @@ -24490,11 +24500,11 @@ buffer called `*Shadows*'. Shadowings are located by calling the | |||
| 24490 | ;;;*** | 24500 | ;;;*** |
| 24491 | 24501 | ||
| 24492 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group | 24502 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group |
| 24493 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (18104 | 24503 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (18120 |
| 24494 | ;;;;;; 24739)) | 24504 | ;;;;;; 34749)) |
| 24495 | ;;; Generated autoloads from shadowfile.el | 24505 | ;;; Generated autoloads from shadowfile.el |
| 24496 | 24506 | ||
| 24497 | (autoload (quote shadow-define-cluster) "shadowfile" "\ | 24507 | (autoload 'shadow-define-cluster "shadowfile" "\ |
| 24498 | Edit (or create) the definition of a cluster NAME. | 24508 | Edit (or create) the definition of a cluster NAME. |
| 24499 | This is a group of hosts that share directories, so that copying to or from | 24509 | This is a group of hosts that share directories, so that copying to or from |
| 24500 | one of them is sufficient to update the file on all of them. Clusters are | 24510 | one of them is sufficient to update the file on all of them. Clusters are |
| @@ -24504,7 +24514,7 @@ in the cluster. | |||
| 24504 | 24514 | ||
| 24505 | \(fn NAME)" t nil) | 24515 | \(fn NAME)" t nil) |
| 24506 | 24516 | ||
| 24507 | (autoload (quote shadow-define-literal-group) "shadowfile" "\ | 24517 | (autoload 'shadow-define-literal-group "shadowfile" "\ |
| 24508 | Declare a single file to be shared between sites. | 24518 | Declare a single file to be shared between sites. |
| 24509 | It may have different filenames on each site. When this file is edited, the | 24519 | It may have different filenames on each site. When this file is edited, the |
| 24510 | new version will be copied to each of the other locations. Sites can be | 24520 | new version will be copied to each of the other locations. Sites can be |
| @@ -24512,7 +24522,7 @@ specific hostnames, or names of clusters (see `shadow-define-cluster'). | |||
| 24512 | 24522 | ||
| 24513 | \(fn)" t nil) | 24523 | \(fn)" t nil) |
| 24514 | 24524 | ||
| 24515 | (autoload (quote shadow-define-regexp-group) "shadowfile" "\ | 24525 | (autoload 'shadow-define-regexp-group "shadowfile" "\ |
| 24516 | Make each of a group of files be shared between hosts. | 24526 | Make each of a group of files be shared between hosts. |
| 24517 | Prompts for regular expression; files matching this are shared between a list | 24527 | Prompts for regular expression; files matching this are shared between a list |
| 24518 | of sites, which are also prompted for. The filenames must be identical on all | 24528 | of sites, which are also prompted for. The filenames must be identical on all |
| @@ -24522,7 +24532,7 @@ Each site can be either a hostname or the name of a cluster (see | |||
| 24522 | 24532 | ||
| 24523 | \(fn)" t nil) | 24533 | \(fn)" t nil) |
| 24524 | 24534 | ||
| 24525 | (autoload (quote shadow-initialize) "shadowfile" "\ | 24535 | (autoload 'shadow-initialize "shadowfile" "\ |
| 24526 | Set up file shadowing. | 24536 | Set up file shadowing. |
| 24527 | 24537 | ||
| 24528 | \(fn)" t nil) | 24538 | \(fn)" t nil) |
| @@ -24530,7 +24540,7 @@ Set up file shadowing. | |||
| 24530 | ;;;*** | 24540 | ;;;*** |
| 24531 | 24541 | ||
| 24532 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" | 24542 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" |
| 24533 | ;;;;;; (18104 24739)) | 24543 | ;;;;;; (18212 46004)) |
| 24534 | ;;; Generated autoloads from shell.el | 24544 | ;;; Generated autoloads from shell.el |
| 24535 | 24545 | ||
| 24536 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ | 24546 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ |
| @@ -24540,11 +24550,14 @@ match this regexp, Emacs will write out the command history when the | |||
| 24540 | shell finishes, and won't remove backslashes when it unquotes shell | 24550 | shell finishes, and won't remove backslashes when it unquotes shell |
| 24541 | arguments.") | 24551 | arguments.") |
| 24542 | 24552 | ||
| 24543 | (custom-autoload (quote shell-dumb-shell-regexp) "shell" t) | 24553 | (custom-autoload 'shell-dumb-shell-regexp "shell" t) |
| 24544 | 24554 | ||
| 24545 | (autoload (quote shell) "shell" "\ | 24555 | (autoload 'shell "shell" "\ |
| 24546 | Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*'). | 24556 | Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*'). |
| 24547 | Interactively, a prefix arg means to prompt for BUFFER. | 24557 | Interactively, a prefix arg means to prompt for BUFFER. |
| 24558 | If `default-directory' is a remote file name, it is also prompted | ||
| 24559 | to change if called with a prefix arg. | ||
| 24560 | |||
| 24548 | If BUFFER exists but shell process is not running, make new shell. | 24561 | If BUFFER exists but shell process is not running, make new shell. |
| 24549 | If BUFFER exists and shell process is running, just switch to BUFFER. | 24562 | If BUFFER exists and shell process is running, just switch to BUFFER. |
| 24550 | Program used comes from variable `explicit-shell-file-name', | 24563 | Program used comes from variable `explicit-shell-file-name', |
| @@ -24577,20 +24590,20 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 24577 | ;;;*** | 24590 | ;;;*** |
| 24578 | 24591 | ||
| 24579 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) | 24592 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) |
| 24580 | ;;;;;; "sieve" "gnus/sieve.el" (18104 24755)) | 24593 | ;;;;;; "sieve" "gnus/sieve.el" (18212 46007)) |
| 24581 | ;;; Generated autoloads from gnus/sieve.el | 24594 | ;;; Generated autoloads from gnus/sieve.el |
| 24582 | 24595 | ||
| 24583 | (autoload (quote sieve-manage) "sieve" "\ | 24596 | (autoload 'sieve-manage "sieve" "\ |
| 24584 | Not documented | 24597 | Not documented |
| 24585 | 24598 | ||
| 24586 | \(fn SERVER &optional PORT)" t nil) | 24599 | \(fn SERVER &optional PORT)" t nil) |
| 24587 | 24600 | ||
| 24588 | (autoload (quote sieve-upload) "sieve" "\ | 24601 | (autoload 'sieve-upload "sieve" "\ |
| 24589 | Not documented | 24602 | Not documented |
| 24590 | 24603 | ||
| 24591 | \(fn &optional NAME)" t nil) | 24604 | \(fn &optional NAME)" t nil) |
| 24592 | 24605 | ||
| 24593 | (autoload (quote sieve-upload-and-bury) "sieve" "\ | 24606 | (autoload 'sieve-upload-and-bury "sieve" "\ |
| 24594 | Not documented | 24607 | Not documented |
| 24595 | 24608 | ||
| 24596 | \(fn &optional NAME)" t nil) | 24609 | \(fn &optional NAME)" t nil) |
| @@ -24598,10 +24611,10 @@ Not documented | |||
| 24598 | ;;;*** | 24611 | ;;;*** |
| 24599 | 24612 | ||
| 24600 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" | 24613 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" |
| 24601 | ;;;;;; (18104 24755)) | 24614 | ;;;;;; (18212 46007)) |
| 24602 | ;;; Generated autoloads from gnus/sieve-mode.el | 24615 | ;;; Generated autoloads from gnus/sieve-mode.el |
| 24603 | 24616 | ||
| 24604 | (autoload (quote sieve-mode) "sieve-mode" "\ | 24617 | (autoload 'sieve-mode "sieve-mode" "\ |
| 24605 | Major mode for editing Sieve code. | 24618 | Major mode for editing Sieve code. |
| 24606 | This is much like C mode except for the syntax of comments. Its keymap | 24619 | This is much like C mode except for the syntax of comments. Its keymap |
| 24607 | inherits from C mode's and it has the same variables for customizing | 24620 | inherits from C mode's and it has the same variables for customizing |
| @@ -24613,17 +24626,17 @@ Turning on Sieve mode runs `sieve-mode-hook'. | |||
| 24613 | 24626 | ||
| 24614 | ;;;*** | 24627 | ;;;*** |
| 24615 | 24628 | ||
| 24616 | ;;;### (autoloads nil "simple" "simple.el" (18104 24740)) | 24629 | ;;;### (autoloads nil "simple" "simple.el" (18208 48751)) |
| 24617 | ;;; Generated autoloads from simple.el | 24630 | ;;; Generated autoloads from simple.el |
| 24618 | (put 'fill-prefix 'safe-local-variable 'string-or-null-p) | 24631 | (put 'fill-prefix 'safe-local-variable 'string-or-null-p) |
| 24619 | 24632 | ||
| 24620 | ;;;*** | 24633 | ;;;*** |
| 24621 | 24634 | ||
| 24622 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (18104 | 24635 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (18088 |
| 24623 | ;;;;;; 24769)) | 24636 | ;;;;;; 55117)) |
| 24624 | ;;; Generated autoloads from progmodes/simula.el | 24637 | ;;; Generated autoloads from progmodes/simula.el |
| 24625 | 24638 | ||
| 24626 | (autoload (quote simula-mode) "simula" "\ | 24639 | (autoload 'simula-mode "simula" "\ |
| 24627 | Major mode for editing SIMULA code. | 24640 | Major mode for editing SIMULA code. |
| 24628 | \\{simula-mode-map} | 24641 | \\{simula-mode-map} |
| 24629 | Variables controlling indentation style: | 24642 | Variables controlling indentation style: |
| @@ -24669,20 +24682,20 @@ with no arguments, if that value is non-nil. | |||
| 24669 | ;;;*** | 24682 | ;;;*** |
| 24670 | 24683 | ||
| 24671 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new | 24684 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new |
| 24672 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (18104 24740)) | 24685 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (18120 34749)) |
| 24673 | ;;; Generated autoloads from skeleton.el | 24686 | ;;; Generated autoloads from skeleton.el |
| 24674 | 24687 | ||
| 24675 | (defvar skeleton-filter-function (quote identity) "\ | 24688 | (defvar skeleton-filter-function 'identity "\ |
| 24676 | Function for transforming a skeleton proxy's aliases' variable value.") | 24689 | Function for transforming a skeleton proxy's aliases' variable value.") |
| 24677 | 24690 | ||
| 24678 | (autoload (quote define-skeleton) "skeleton" "\ | 24691 | (autoload 'define-skeleton "skeleton" "\ |
| 24679 | Define a user-configurable COMMAND that enters a statement skeleton. | 24692 | Define a user-configurable COMMAND that enters a statement skeleton. |
| 24680 | DOCUMENTATION is that of the command. | 24693 | DOCUMENTATION is that of the command. |
| 24681 | SKELETON is as defined under `skeleton-insert'. | 24694 | SKELETON is as defined under `skeleton-insert'. |
| 24682 | 24695 | ||
| 24683 | \(fn COMMAND DOCUMENTATION &rest SKELETON)" nil (quote macro)) | 24696 | \(fn COMMAND DOCUMENTATION &rest SKELETON)" nil (quote macro)) |
| 24684 | 24697 | ||
| 24685 | (autoload (quote skeleton-proxy-new) "skeleton" "\ | 24698 | (autoload 'skeleton-proxy-new "skeleton" "\ |
| 24686 | Insert SKELETON. | 24699 | Insert SKELETON. |
| 24687 | Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). | 24700 | Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). |
| 24688 | If no ARG was given, but the region is visible, ARG defaults to -1 depending | 24701 | If no ARG was given, but the region is visible, ARG defaults to -1 depending |
| @@ -24695,7 +24708,7 @@ of `str' whereas the skeleton's interactor is then ignored. | |||
| 24695 | 24708 | ||
| 24696 | \(fn SKELETON &optional STR ARG)" nil nil) | 24709 | \(fn SKELETON &optional STR ARG)" nil nil) |
| 24697 | 24710 | ||
| 24698 | (autoload (quote skeleton-insert) "skeleton" "\ | 24711 | (autoload 'skeleton-insert "skeleton" "\ |
| 24699 | Insert the complex statement skeleton SKELETON describes very concisely. | 24712 | Insert the complex statement skeleton SKELETON describes very concisely. |
| 24700 | 24713 | ||
| 24701 | With optional second argument REGIONS, wrap first interesting point | 24714 | With optional second argument REGIONS, wrap first interesting point |
| @@ -24724,8 +24737,8 @@ If ELEMENT is a string or a character it gets inserted (see also | |||
| 24724 | interesting point set by _ | 24737 | interesting point set by _ |
| 24725 | > indent line (or interregion if > _) according to major mode | 24738 | > indent line (or interregion if > _) according to major mode |
| 24726 | @ add position to `skeleton-positions' | 24739 | @ add position to `skeleton-positions' |
| 24727 | & do next ELEMENT iff previous moved point | 24740 | & do next ELEMENT if previous moved point |
| 24728 | | do next ELEMENT iff previous didn't move point | 24741 | | do next ELEMENT if previous didn't move point |
| 24729 | -num delete num preceding characters (see `skeleton-untabify') | 24742 | -num delete num preceding characters (see `skeleton-untabify') |
| 24730 | resume: skipped, continue here if quit is signaled | 24743 | resume: skipped, continue here if quit is signaled |
| 24731 | nil skipped | 24744 | nil skipped |
| @@ -24760,7 +24773,7 @@ When done with skeleton, but before going back to `_'-point call | |||
| 24760 | 24773 | ||
| 24761 | \(fn SKELETON &optional REGIONS STR)" nil nil) | 24774 | \(fn SKELETON &optional REGIONS STR)" nil nil) |
| 24762 | 24775 | ||
| 24763 | (autoload (quote skeleton-pair-insert-maybe) "skeleton" "\ | 24776 | (autoload 'skeleton-pair-insert-maybe "skeleton" "\ |
| 24764 | Insert the character you type ARG times. | 24777 | Insert the character you type ARG times. |
| 24765 | 24778 | ||
| 24766 | With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region | 24779 | With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region |
| @@ -24779,17 +24792,17 @@ symmetrical ones, and the same character twice for the others. | |||
| 24779 | ;;;*** | 24792 | ;;;*** |
| 24780 | 24793 | ||
| 24781 | ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" | 24794 | ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" |
| 24782 | ;;;;;; (18104 24740)) | 24795 | ;;;;;; (18202 3996)) |
| 24783 | ;;; Generated autoloads from smerge-mode.el | 24796 | ;;; Generated autoloads from smerge-mode.el |
| 24784 | 24797 | ||
| 24785 | (autoload (quote smerge-ediff) "smerge-mode" "\ | 24798 | (autoload 'smerge-ediff "smerge-mode" "\ |
| 24786 | Invoke ediff to resolve the conflicts. | 24799 | Invoke ediff to resolve the conflicts. |
| 24787 | NAME-MINE, NAME-OTHER, and NAME-BASE, if non-nil, are used for the | 24800 | NAME-MINE, NAME-OTHER, and NAME-BASE, if non-nil, are used for the |
| 24788 | buffer names. | 24801 | buffer names. |
| 24789 | 24802 | ||
| 24790 | \(fn &optional NAME-MINE NAME-OTHER NAME-BASE)" t nil) | 24803 | \(fn &optional NAME-MINE NAME-OTHER NAME-BASE)" t nil) |
| 24791 | 24804 | ||
| 24792 | (autoload (quote smerge-mode) "smerge-mode" "\ | 24805 | (autoload 'smerge-mode "smerge-mode" "\ |
| 24793 | Minor mode to simplify editing output from the diff3 program. | 24806 | Minor mode to simplify editing output from the diff3 program. |
| 24794 | \\{smerge-mode-map} | 24807 | \\{smerge-mode-map} |
| 24795 | 24808 | ||
| @@ -24798,16 +24811,16 @@ Minor mode to simplify editing output from the diff3 program. | |||
| 24798 | ;;;*** | 24811 | ;;;*** |
| 24799 | 24812 | ||
| 24800 | ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" | 24813 | ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" |
| 24801 | ;;;;;; (18104 24755)) | 24814 | ;;;;;; (18212 46007)) |
| 24802 | ;;; Generated autoloads from gnus/smiley.el | 24815 | ;;; Generated autoloads from gnus/smiley.el |
| 24803 | 24816 | ||
| 24804 | (autoload (quote smiley-region) "smiley" "\ | 24817 | (autoload 'smiley-region "smiley" "\ |
| 24805 | Replace in the region `smiley-regexp-alist' matches with corresponding images. | 24818 | Replace in the region `smiley-regexp-alist' matches with corresponding images. |
| 24806 | A list of images is returned. | 24819 | A list of images is returned. |
| 24807 | 24820 | ||
| 24808 | \(fn START END)" t nil) | 24821 | \(fn START END)" t nil) |
| 24809 | 24822 | ||
| 24810 | (autoload (quote smiley-buffer) "smiley" "\ | 24823 | (autoload 'smiley-buffer "smiley" "\ |
| 24811 | Run `smiley-region' at the buffer, specified in the argument or | 24824 | Run `smiley-region' at the buffer, specified in the argument or |
| 24812 | interactively. If there's no argument, do it at the current buffer | 24825 | interactively. If there's no argument, do it at the current buffer |
| 24813 | 24826 | ||
| @@ -24816,25 +24829,25 @@ interactively. If there's no argument, do it at the current buffer | |||
| 24816 | ;;;*** | 24829 | ;;;*** |
| 24817 | 24830 | ||
| 24818 | ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" | 24831 | ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" |
| 24819 | ;;;;;; "mail/smtpmail.el" (18104 24758)) | 24832 | ;;;;;; "mail/smtpmail.el" (18088 55110)) |
| 24820 | ;;; Generated autoloads from mail/smtpmail.el | 24833 | ;;; Generated autoloads from mail/smtpmail.el |
| 24821 | 24834 | ||
| 24822 | (autoload (quote smtpmail-send-it) "smtpmail" "\ | 24835 | (autoload 'smtpmail-send-it "smtpmail" "\ |
| 24823 | Not documented | 24836 | Not documented |
| 24824 | 24837 | ||
| 24825 | \(fn)" nil nil) | 24838 | \(fn)" nil nil) |
| 24826 | 24839 | ||
| 24827 | (autoload (quote smtpmail-send-queued-mail) "smtpmail" "\ | 24840 | (autoload 'smtpmail-send-queued-mail "smtpmail" "\ |
| 24828 | Send mail that was queued as a result of setting `smtpmail-queue-mail'. | 24841 | Send mail that was queued as a result of setting `smtpmail-queue-mail'. |
| 24829 | 24842 | ||
| 24830 | \(fn)" t nil) | 24843 | \(fn)" t nil) |
| 24831 | 24844 | ||
| 24832 | ;;;*** | 24845 | ;;;*** |
| 24833 | 24846 | ||
| 24834 | ;;;### (autoloads (snake) "snake" "play/snake.el" (18104 24762)) | 24847 | ;;;### (autoloads (snake) "snake" "play/snake.el" (18088 55114)) |
| 24835 | ;;; Generated autoloads from play/snake.el | 24848 | ;;; Generated autoloads from play/snake.el |
| 24836 | 24849 | ||
| 24837 | (autoload (quote snake) "snake" "\ | 24850 | (autoload 'snake "snake" "\ |
| 24838 | Play the Snake game. | 24851 | Play the Snake game. |
| 24839 | Move the snake around without colliding with its tail or with the border. | 24852 | Move the snake around without colliding with its tail or with the border. |
| 24840 | 24853 | ||
| @@ -24855,10 +24868,10 @@ Snake mode keybindings: | |||
| 24855 | ;;;*** | 24868 | ;;;*** |
| 24856 | 24869 | ||
| 24857 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" | 24870 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" |
| 24858 | ;;;;;; (18104 24760)) | 24871 | ;;;;;; (18161 20995)) |
| 24859 | ;;; Generated autoloads from net/snmp-mode.el | 24872 | ;;; Generated autoloads from net/snmp-mode.el |
| 24860 | 24873 | ||
| 24861 | (autoload (quote snmp-mode) "snmp-mode" "\ | 24874 | (autoload 'snmp-mode "snmp-mode" "\ |
| 24862 | Major mode for editing SNMP MIBs. | 24875 | Major mode for editing SNMP MIBs. |
| 24863 | Expression and list commands understand all C brackets. | 24876 | Expression and list commands understand all C brackets. |
| 24864 | Tab indents for C code. | 24877 | Tab indents for C code. |
| @@ -24870,7 +24883,7 @@ Turning on snmp-mode runs the hooks in `snmp-common-mode-hook', then | |||
| 24870 | 24883 | ||
| 24871 | \(fn)" t nil) | 24884 | \(fn)" t nil) |
| 24872 | 24885 | ||
| 24873 | (autoload (quote snmpv2-mode) "snmp-mode" "\ | 24886 | (autoload 'snmpv2-mode "snmp-mode" "\ |
| 24874 | Major mode for editing SNMPv2 MIBs. | 24887 | Major mode for editing SNMPv2 MIBs. |
| 24875 | Expression and list commands understand all C brackets. | 24888 | Expression and list commands understand all C brackets. |
| 24876 | Tab indents for C code. | 24889 | Tab indents for C code. |
| @@ -24886,10 +24899,10 @@ then `snmpv2-mode-hook'. | |||
| 24886 | 24899 | ||
| 24887 | ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name | 24900 | ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name |
| 24888 | ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) | 24901 | ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) |
| 24889 | ;;;;;; "solar" "calendar/solar.el" (18104 24745)) | 24902 | ;;;;;; "solar" "calendar/solar.el" (18088 55094)) |
| 24890 | ;;; Generated autoloads from calendar/solar.el | 24903 | ;;; Generated autoloads from calendar/solar.el |
| 24891 | 24904 | ||
| 24892 | (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ | 24905 | (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\ |
| 24893 | *The pseudo-pattern that governs the way a time of day is formatted. | 24906 | *The pseudo-pattern that governs the way a time of day is formatted. |
| 24894 | 24907 | ||
| 24895 | A pseudo-pattern is a list of expressions that can involve the keywords | 24908 | A pseudo-pattern is a list of expressions that can involve the keywords |
| @@ -24903,7 +24916,7 @@ For example, the form | |||
| 24903 | 24916 | ||
| 24904 | would give military-style times like `21:07 (UTC)'.") | 24917 | would give military-style times like `21:07 (UTC)'.") |
| 24905 | 24918 | ||
| 24906 | (custom-autoload (quote calendar-time-display-form) "solar" t) | 24919 | (custom-autoload 'calendar-time-display-form "solar" t) |
| 24907 | 24920 | ||
| 24908 | (defvar calendar-latitude nil "\ | 24921 | (defvar calendar-latitude nil "\ |
| 24909 | *Latitude of `calendar-location-name' in degrees. | 24922 | *Latitude of `calendar-location-name' in degrees. |
| @@ -24915,7 +24928,7 @@ York City. | |||
| 24915 | 24928 | ||
| 24916 | This variable should be set in `site-start'.el.") | 24929 | This variable should be set in `site-start'.el.") |
| 24917 | 24930 | ||
| 24918 | (custom-autoload (quote calendar-latitude) "solar" t) | 24931 | (custom-autoload 'calendar-latitude "solar" t) |
| 24919 | 24932 | ||
| 24920 | (defvar calendar-longitude nil "\ | 24933 | (defvar calendar-longitude nil "\ |
| 24921 | *Longitude of `calendar-location-name' in degrees. | 24934 | *Longitude of `calendar-location-name' in degrees. |
| @@ -24927,18 +24940,18 @@ York City. | |||
| 24927 | 24940 | ||
| 24928 | This variable should be set in `site-start'.el.") | 24941 | This variable should be set in `site-start'.el.") |
| 24929 | 24942 | ||
| 24930 | (custom-autoload (quote calendar-longitude) "solar" t) | 24943 | (custom-autoload 'calendar-longitude "solar" t) |
| 24931 | 24944 | ||
| 24932 | (defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (if (numberp calendar-latitude) (abs calendar-latitude) (+ (aref calendar-latitude 0) (/ (aref calendar-latitude 1) 60.0))) (if (numberp calendar-latitude) (if (> calendar-latitude 0) "N" "S") (if (equal (aref calendar-latitude 2) (quote north)) "N" "S")) (if (numberp calendar-longitude) (abs calendar-longitude) (+ (aref calendar-longitude 0) (/ (aref calendar-longitude 1) 60.0))) (if (numberp calendar-longitude) (if (> calendar-longitude 0) "E" "W") (if (equal (aref calendar-longitude 2) (quote east)) "E" "W"))))) "\ | 24945 | (defvar calendar-location-name '(let ((float-output-format "%.1f")) (format "%s%s, %s%s" (if (numberp calendar-latitude) (abs calendar-latitude) (+ (aref calendar-latitude 0) (/ (aref calendar-latitude 1) 60.0))) (if (numberp calendar-latitude) (if (> calendar-latitude 0) "N" "S") (if (equal (aref calendar-latitude 2) 'north) "N" "S")) (if (numberp calendar-longitude) (abs calendar-longitude) (+ (aref calendar-longitude 0) (/ (aref calendar-longitude 1) 60.0))) (if (numberp calendar-longitude) (if (> calendar-longitude 0) "E" "W") (if (equal (aref calendar-longitude 2) 'east) "E" "W")))) "\ |
| 24933 | *Expression evaluating to name of `calendar-longitude', `calendar-latitude'. | 24946 | *Expression evaluating to name of `calendar-longitude', `calendar-latitude'. |
| 24934 | For example, \"New York City\". Default value is just the latitude, longitude | 24947 | For example, \"New York City\". Default value is just the latitude, longitude |
| 24935 | pair. | 24948 | pair. |
| 24936 | 24949 | ||
| 24937 | This variable should be set in `site-start'.el.") | 24950 | This variable should be set in `site-start'.el.") |
| 24938 | 24951 | ||
| 24939 | (custom-autoload (quote calendar-location-name) "solar" t) | 24952 | (custom-autoload 'calendar-location-name "solar" t) |
| 24940 | 24953 | ||
| 24941 | (autoload (quote sunrise-sunset) "solar" "\ | 24954 | (autoload 'sunrise-sunset "solar" "\ |
| 24942 | Local time of sunrise and sunset for today. Accurate to a few seconds. | 24955 | Local time of sunrise and sunset for today. Accurate to a few seconds. |
| 24943 | If called with an optional prefix argument, prompt for date. | 24956 | If called with an optional prefix argument, prompt for date. |
| 24944 | 24957 | ||
| @@ -24949,7 +24962,7 @@ This function is suitable for execution in a .emacs file. | |||
| 24949 | 24962 | ||
| 24950 | \(fn &optional ARG)" t nil) | 24963 | \(fn &optional ARG)" t nil) |
| 24951 | 24964 | ||
| 24952 | (autoload (quote solar-equinoxes-solstices) "solar" "\ | 24965 | (autoload 'solar-equinoxes-solstices "solar" "\ |
| 24953 | *local* date and time of equinoxes and solstices, if visible in the calendar window. | 24966 | *local* date and time of equinoxes and solstices, if visible in the calendar window. |
| 24954 | Requires floating point. | 24967 | Requires floating point. |
| 24955 | 24968 | ||
| @@ -24957,11 +24970,11 @@ Requires floating point. | |||
| 24957 | 24970 | ||
| 24958 | ;;;*** | 24971 | ;;;*** |
| 24959 | 24972 | ||
| 24960 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (18104 | 24973 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (18173 |
| 24961 | ;;;;;; 24762)) | 24974 | ;;;;;; 8195)) |
| 24962 | ;;; Generated autoloads from play/solitaire.el | 24975 | ;;; Generated autoloads from play/solitaire.el |
| 24963 | 24976 | ||
| 24964 | (autoload (quote solitaire) "solitaire" "\ | 24977 | (autoload 'solitaire "solitaire" "\ |
| 24965 | Play Solitaire. | 24978 | Play Solitaire. |
| 24966 | 24979 | ||
| 24967 | To play Solitaire, type \\[solitaire]. | 24980 | To play Solitaire, type \\[solitaire]. |
| @@ -25035,10 +25048,11 @@ Pick your favourite shortcuts: | |||
| 25035 | 25048 | ||
| 25036 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields | 25049 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields |
| 25037 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs | 25050 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs |
| 25038 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (18104 24740)) | 25051 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (18128 32655)) |
| 25039 | ;;; Generated autoloads from sort.el | 25052 | ;;; Generated autoloads from sort.el |
| 25053 | (put 'sort-fold-case 'safe-local-variable 'booleanp) | ||
| 25040 | 25054 | ||
| 25041 | (autoload (quote sort-subr) "sort" "\ | 25055 | (autoload 'sort-subr "sort" "\ |
| 25042 | General text sorting routine to divide buffer into records and sort them. | 25056 | General text sorting routine to divide buffer into records and sort them. |
| 25043 | 25057 | ||
| 25044 | We divide the accessible portion of the buffer into disjoint pieces | 25058 | We divide the accessible portion of the buffer into disjoint pieces |
| @@ -25079,7 +25093,7 @@ it defaults to `<', otherwise it defaults to `string<'. | |||
| 25079 | 25093 | ||
| 25080 | \(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)" nil nil) | 25094 | \(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)" nil nil) |
| 25081 | 25095 | ||
| 25082 | (autoload (quote sort-lines) "sort" "\ | 25096 | (autoload 'sort-lines "sort" "\ |
| 25083 | Sort lines in region alphabetically; argument means descending order. | 25097 | Sort lines in region alphabetically; argument means descending order. |
| 25084 | Called from a program, there are three arguments: | 25098 | Called from a program, there are three arguments: |
| 25085 | REVERSE (non-nil means reverse order), BEG and END (region to sort). | 25099 | REVERSE (non-nil means reverse order), BEG and END (region to sort). |
| @@ -25088,7 +25102,7 @@ the sort order. | |||
| 25088 | 25102 | ||
| 25089 | \(fn REVERSE BEG END)" t nil) | 25103 | \(fn REVERSE BEG END)" t nil) |
| 25090 | 25104 | ||
| 25091 | (autoload (quote sort-paragraphs) "sort" "\ | 25105 | (autoload 'sort-paragraphs "sort" "\ |
| 25092 | Sort paragraphs in region alphabetically; argument means descending order. | 25106 | Sort paragraphs in region alphabetically; argument means descending order. |
| 25093 | Called from a program, there are three arguments: | 25107 | Called from a program, there are three arguments: |
| 25094 | REVERSE (non-nil means reverse order), BEG and END (region to sort). | 25108 | REVERSE (non-nil means reverse order), BEG and END (region to sort). |
| @@ -25097,7 +25111,7 @@ the sort order. | |||
| 25097 | 25111 | ||
| 25098 | \(fn REVERSE BEG END)" t nil) | 25112 | \(fn REVERSE BEG END)" t nil) |
| 25099 | 25113 | ||
| 25100 | (autoload (quote sort-pages) "sort" "\ | 25114 | (autoload 'sort-pages "sort" "\ |
| 25101 | Sort pages in region alphabetically; argument means descending order. | 25115 | Sort pages in region alphabetically; argument means descending order. |
| 25102 | Called from a program, there are three arguments: | 25116 | Called from a program, there are three arguments: |
| 25103 | REVERSE (non-nil means reverse order), BEG and END (region to sort). | 25117 | REVERSE (non-nil means reverse order), BEG and END (region to sort). |
| @@ -25105,8 +25119,9 @@ The variable `sort-fold-case' determines whether alphabetic case affects | |||
| 25105 | the sort order. | 25119 | the sort order. |
| 25106 | 25120 | ||
| 25107 | \(fn REVERSE BEG END)" t nil) | 25121 | \(fn REVERSE BEG END)" t nil) |
| 25122 | (put 'sort-numeric-base 'safe-local-variable 'integerp) | ||
| 25108 | 25123 | ||
| 25109 | (autoload (quote sort-numeric-fields) "sort" "\ | 25124 | (autoload 'sort-numeric-fields "sort" "\ |
| 25110 | Sort lines in region numerically by the ARGth field of each line. | 25125 | Sort lines in region numerically by the ARGth field of each line. |
| 25111 | Fields are separated by whitespace and numbered from 1 up. | 25126 | Fields are separated by whitespace and numbered from 1 up. |
| 25112 | Specified field must contain a number in each line of the region, | 25127 | Specified field must contain a number in each line of the region, |
| @@ -25118,7 +25133,7 @@ FIELD, BEG and END. BEG and END specify region to sort. | |||
| 25118 | 25133 | ||
| 25119 | \(fn FIELD BEG END)" t nil) | 25134 | \(fn FIELD BEG END)" t nil) |
| 25120 | 25135 | ||
| 25121 | (autoload (quote sort-fields) "sort" "\ | 25136 | (autoload 'sort-fields "sort" "\ |
| 25122 | Sort lines in region lexicographically by the ARGth field of each line. | 25137 | Sort lines in region lexicographically by the ARGth field of each line. |
| 25123 | Fields are separated by whitespace and numbered from 1 up. | 25138 | Fields are separated by whitespace and numbered from 1 up. |
| 25124 | With a negative arg, sorts by the ARGth field counted from the right. | 25139 | With a negative arg, sorts by the ARGth field counted from the right. |
| @@ -25129,7 +25144,7 @@ the sort order. | |||
| 25129 | 25144 | ||
| 25130 | \(fn FIELD BEG END)" t nil) | 25145 | \(fn FIELD BEG END)" t nil) |
| 25131 | 25146 | ||
| 25132 | (autoload (quote sort-regexp-fields) "sort" "\ | 25147 | (autoload 'sort-regexp-fields "sort" "\ |
| 25133 | Sort the region lexicographically as specified by RECORD-REGEXP and KEY. | 25148 | Sort the region lexicographically as specified by RECORD-REGEXP and KEY. |
| 25134 | RECORD-REGEXP specifies the textual units which should be sorted. | 25149 | RECORD-REGEXP specifies the textual units which should be sorted. |
| 25135 | For example, to sort lines RECORD-REGEXP would be \"^.*$\" | 25150 | For example, to sort lines RECORD-REGEXP would be \"^.*$\" |
| @@ -25152,7 +25167,7 @@ For example: to sort lines in the region by the first word on each line | |||
| 25152 | 25167 | ||
| 25153 | \(fn REVERSE RECORD-REGEXP KEY-REGEXP BEG END)" t nil) | 25168 | \(fn REVERSE RECORD-REGEXP KEY-REGEXP BEG END)" t nil) |
| 25154 | 25169 | ||
| 25155 | (autoload (quote sort-columns) "sort" "\ | 25170 | (autoload 'sort-columns "sort" "\ |
| 25156 | Sort lines in region alphabetically by a certain range of columns. | 25171 | Sort lines in region alphabetically by a certain range of columns. |
| 25157 | For the purpose of this command, the region BEG...END includes | 25172 | For the purpose of this command, the region BEG...END includes |
| 25158 | the entire line that point is in and the entire line the mark is in. | 25173 | the entire line that point is in and the entire line the mark is in. |
| @@ -25169,7 +25184,7 @@ Use \\[untabify] to convert tabs to spaces before sorting. | |||
| 25169 | 25184 | ||
| 25170 | \(fn REVERSE &optional BEG END)" t nil) | 25185 | \(fn REVERSE &optional BEG END)" t nil) |
| 25171 | 25186 | ||
| 25172 | (autoload (quote reverse-region) "sort" "\ | 25187 | (autoload 'reverse-region "sort" "\ |
| 25173 | Reverse the order of lines in a region. | 25188 | Reverse the order of lines in a region. |
| 25174 | From a program takes two point or marker arguments, BEG and END. | 25189 | From a program takes two point or marker arguments, BEG and END. |
| 25175 | 25190 | ||
| @@ -25177,23 +25192,27 @@ From a program takes two point or marker arguments, BEG and END. | |||
| 25177 | 25192 | ||
| 25178 | ;;;*** | 25193 | ;;;*** |
| 25179 | 25194 | ||
| 25180 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (18104 | 25195 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (18212 |
| 25181 | ;;;;;; 24755)) | 25196 | ;;;;;; 46007)) |
| 25182 | ;;; Generated autoloads from gnus/spam.el | 25197 | ;;; Generated autoloads from gnus/spam.el |
| 25183 | 25198 | ||
| 25184 | (autoload (quote spam-initialize) "spam" "\ | 25199 | (autoload 'spam-initialize "spam" "\ |
| 25185 | Install the spam.el hooks and do other initialization | 25200 | Install the spam.el hooks and do other initialization. |
| 25201 | When SYMBOLS is given, set those variables to t. This is so you | ||
| 25202 | can call spam-initialize before you set spam-use-* variables on | ||
| 25203 | explicitly, and matters only if you need the extra headers | ||
| 25204 | installed through spam-necessary-extra-headers. | ||
| 25186 | 25205 | ||
| 25187 | \(fn)" t nil) | 25206 | \(fn &rest SYMBOLS)" t nil) |
| 25188 | 25207 | ||
| 25189 | ;;;*** | 25208 | ;;;*** |
| 25190 | 25209 | ||
| 25191 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file | 25210 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file |
| 25192 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" | 25211 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" |
| 25193 | ;;;;;; "gnus/spam-report.el" (18104 24755)) | 25212 | ;;;;;; "gnus/spam-report.el" (18212 46007)) |
| 25194 | ;;; Generated autoloads from gnus/spam-report.el | 25213 | ;;; Generated autoloads from gnus/spam-report.el |
| 25195 | 25214 | ||
| 25196 | (autoload (quote spam-report-process-queue) "spam-report" "\ | 25215 | (autoload 'spam-report-process-queue "spam-report" "\ |
| 25197 | Report all queued requests from `spam-report-requests-file'. | 25216 | Report all queued requests from `spam-report-requests-file'. |
| 25198 | 25217 | ||
| 25199 | If FILE is given, use it instead of `spam-report-requests-file'. | 25218 | If FILE is given, use it instead of `spam-report-requests-file'. |
| @@ -25202,20 +25221,20 @@ symbol `ask', query before flushing the queue file. | |||
| 25202 | 25221 | ||
| 25203 | \(fn &optional FILE KEEP)" t nil) | 25222 | \(fn &optional FILE KEEP)" t nil) |
| 25204 | 25223 | ||
| 25205 | (autoload (quote spam-report-url-ping-mm-url) "spam-report" "\ | 25224 | (autoload 'spam-report-url-ping-mm-url "spam-report" "\ |
| 25206 | Ping a host through HTTP, addressing a specific GET resource. Use | 25225 | Ping a host through HTTP, addressing a specific GET resource. Use |
| 25207 | the external program specified in `mm-url-program' to connect to | 25226 | the external program specified in `mm-url-program' to connect to |
| 25208 | server. | 25227 | server. |
| 25209 | 25228 | ||
| 25210 | \(fn HOST REPORT)" nil nil) | 25229 | \(fn HOST REPORT)" nil nil) |
| 25211 | 25230 | ||
| 25212 | (autoload (quote spam-report-url-to-file) "spam-report" "\ | 25231 | (autoload 'spam-report-url-to-file "spam-report" "\ |
| 25213 | Collect spam report requests in `spam-report-requests-file'. | 25232 | Collect spam report requests in `spam-report-requests-file'. |
| 25214 | Customize `spam-report-url-ping-function' to use this function. | 25233 | Customize `spam-report-url-ping-function' to use this function. |
| 25215 | 25234 | ||
| 25216 | \(fn HOST REPORT)" nil nil) | 25235 | \(fn HOST REPORT)" nil nil) |
| 25217 | 25236 | ||
| 25218 | (autoload (quote spam-report-agentize) "spam-report" "\ | 25237 | (autoload 'spam-report-agentize "spam-report" "\ |
| 25219 | Add spam-report support to the Agent. | 25238 | Add spam-report support to the Agent. |
| 25220 | Spam reports will be queued with \\[spam-report-url-to-file] when | 25239 | Spam reports will be queued with \\[spam-report-url-to-file] when |
| 25221 | the Agent is unplugged, and will be submitted in a batch when the | 25240 | the Agent is unplugged, and will be submitted in a batch when the |
| @@ -25223,7 +25242,7 @@ Agent is plugged. | |||
| 25223 | 25242 | ||
| 25224 | \(fn)" t nil) | 25243 | \(fn)" t nil) |
| 25225 | 25244 | ||
| 25226 | (autoload (quote spam-report-deagentize) "spam-report" "\ | 25245 | (autoload 'spam-report-deagentize "spam-report" "\ |
| 25227 | Remove spam-report support from the Agent. | 25246 | Remove spam-report support from the Agent. |
| 25228 | Spam reports will be queued with the method used when | 25247 | Spam reports will be queued with the method used when |
| 25229 | \\[spam-report-agentize] was run. | 25248 | \\[spam-report-agentize] was run. |
| @@ -25233,12 +25252,12 @@ Spam reports will be queued with the method used when | |||
| 25233 | ;;;*** | 25252 | ;;;*** |
| 25234 | 25253 | ||
| 25235 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" | 25254 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" |
| 25236 | ;;;;;; "speedbar.el" (18104 24740)) | 25255 | ;;;;;; "speedbar.el" (18164 30590)) |
| 25237 | ;;; Generated autoloads from speedbar.el | 25256 | ;;; Generated autoloads from speedbar.el |
| 25238 | 25257 | ||
| 25239 | (defalias (quote speedbar) (quote speedbar-frame-mode)) | 25258 | (defalias 'speedbar 'speedbar-frame-mode) |
| 25240 | 25259 | ||
| 25241 | (autoload (quote speedbar-frame-mode) "speedbar" "\ | 25260 | (autoload 'speedbar-frame-mode "speedbar" "\ |
| 25242 | Enable or disable speedbar. Positive ARG means turn on, negative turn off. | 25261 | Enable or disable speedbar. Positive ARG means turn on, negative turn off. |
| 25243 | A nil ARG means toggle. Once the speedbar frame is activated, a buffer in | 25262 | A nil ARG means toggle. Once the speedbar frame is activated, a buffer in |
| 25244 | `speedbar-mode' will be displayed. Currently, only one speedbar is | 25263 | `speedbar-mode' will be displayed. Currently, only one speedbar is |
| @@ -25248,7 +25267,7 @@ supported at a time. | |||
| 25248 | 25267 | ||
| 25249 | \(fn &optional ARG)" t nil) | 25268 | \(fn &optional ARG)" t nil) |
| 25250 | 25269 | ||
| 25251 | (autoload (quote speedbar-get-focus) "speedbar" "\ | 25270 | (autoload 'speedbar-get-focus "speedbar" "\ |
| 25252 | Change frame focus to or from the speedbar frame. | 25271 | Change frame focus to or from the speedbar frame. |
| 25253 | If the selected frame is not speedbar, then speedbar frame is | 25272 | If the selected frame is not speedbar, then speedbar frame is |
| 25254 | selected. If the speedbar frame is active, then select the attached frame. | 25273 | selected. If the speedbar frame is active, then select the attached frame. |
| @@ -25258,12 +25277,12 @@ selected. If the speedbar frame is active, then select the attached frame. | |||
| 25258 | ;;;*** | 25277 | ;;;*** |
| 25259 | 25278 | ||
| 25260 | ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) | 25279 | ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) |
| 25261 | ;;;;;; "spell" "textmodes/spell.el" (18104 24772)) | 25280 | ;;;;;; "spell" "textmodes/spell.el" (18088 55120)) |
| 25262 | ;;; Generated autoloads from textmodes/spell.el | 25281 | ;;; Generated autoloads from textmodes/spell.el |
| 25263 | 25282 | ||
| 25264 | (put (quote spell-filter) (quote risky-local-variable) t) | 25283 | (put 'spell-filter 'risky-local-variable t) |
| 25265 | 25284 | ||
| 25266 | (autoload (quote spell-buffer) "spell" "\ | 25285 | (autoload 'spell-buffer "spell" "\ |
| 25267 | Check spelling of every word in the buffer. | 25286 | Check spelling of every word in the buffer. |
| 25268 | For each incorrect word, you are asked for the correct spelling | 25287 | For each incorrect word, you are asked for the correct spelling |
| 25269 | and then put into a query-replace to fix some or all occurrences. | 25288 | and then put into a query-replace to fix some or all occurrences. |
| @@ -25272,14 +25291,14 @@ as its \"correct\" spelling; then the query replace is skipped. | |||
| 25272 | 25291 | ||
| 25273 | \(fn)" t nil) | 25292 | \(fn)" t nil) |
| 25274 | 25293 | ||
| 25275 | (autoload (quote spell-word) "spell" "\ | 25294 | (autoload 'spell-word "spell" "\ |
| 25276 | Check spelling of word at or before point. | 25295 | Check spelling of word at or before point. |
| 25277 | If it is not correct, ask user for the correct spelling | 25296 | If it is not correct, ask user for the correct spelling |
| 25278 | and `query-replace' the entire buffer to substitute it. | 25297 | and `query-replace' the entire buffer to substitute it. |
| 25279 | 25298 | ||
| 25280 | \(fn)" t nil) | 25299 | \(fn)" t nil) |
| 25281 | 25300 | ||
| 25282 | (autoload (quote spell-region) "spell" "\ | 25301 | (autoload 'spell-region "spell" "\ |
| 25283 | Like `spell-buffer' but applies only to region. | 25302 | Like `spell-buffer' but applies only to region. |
| 25284 | Used in a program, applies from START to END. | 25303 | Used in a program, applies from START to END. |
| 25285 | DESCRIPTION is an optional string naming the unit being checked: | 25304 | DESCRIPTION is an optional string naming the unit being checked: |
| @@ -25287,23 +25306,23 @@ for example, \"word\". | |||
| 25287 | 25306 | ||
| 25288 | \(fn START END &optional DESCRIPTION)" t nil) | 25307 | \(fn START END &optional DESCRIPTION)" t nil) |
| 25289 | 25308 | ||
| 25290 | (autoload (quote spell-string) "spell" "\ | 25309 | (autoload 'spell-string "spell" "\ |
| 25291 | Check spelling of string supplied as argument. | 25310 | Check spelling of string supplied as argument. |
| 25292 | 25311 | ||
| 25293 | \(fn STRING)" t nil) | 25312 | \(fn STRING)" t nil) |
| 25294 | 25313 | ||
| 25295 | ;;;*** | 25314 | ;;;*** |
| 25296 | 25315 | ||
| 25297 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (18104 | 25316 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (18088 |
| 25298 | ;;;;;; 24762)) | 25317 | ;;;;;; 55114)) |
| 25299 | ;;; Generated autoloads from play/spook.el | 25318 | ;;; Generated autoloads from play/spook.el |
| 25300 | 25319 | ||
| 25301 | (autoload (quote spook) "spook" "\ | 25320 | (autoload 'spook "spook" "\ |
| 25302 | Adds that special touch of class to your outgoing mail. | 25321 | Adds that special touch of class to your outgoing mail. |
| 25303 | 25322 | ||
| 25304 | \(fn)" t nil) | 25323 | \(fn)" t nil) |
| 25305 | 25324 | ||
| 25306 | (autoload (quote snarf-spooks) "spook" "\ | 25325 | (autoload 'snarf-spooks "spook" "\ |
| 25307 | Return a vector containing the lines from `spook-phrases-file'. | 25326 | Return a vector containing the lines from `spook-phrases-file'. |
| 25308 | 25327 | ||
| 25309 | \(fn)" nil nil) | 25328 | \(fn)" nil nil) |
| @@ -25313,11 +25332,11 @@ Return a vector containing the lines from `spook-phrases-file'. | |||
| 25313 | ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres | 25332 | ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres |
| 25314 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix | 25333 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix |
| 25315 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help | 25334 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help |
| 25316 | ;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (18104 | 25335 | ;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (18173 |
| 25317 | ;;;;;; 24769)) | 25336 | ;;;;;; 8196)) |
| 25318 | ;;; Generated autoloads from progmodes/sql.el | 25337 | ;;; Generated autoloads from progmodes/sql.el |
| 25319 | 25338 | ||
| 25320 | (autoload (quote sql-add-product-keywords) "sql" "\ | 25339 | (autoload 'sql-add-product-keywords "sql" "\ |
| 25321 | Add highlighting KEYWORDS for SQL PRODUCT. | 25340 | Add highlighting KEYWORDS for SQL PRODUCT. |
| 25322 | 25341 | ||
| 25323 | PRODUCT should be a symbol, the name of a sql product, such as | 25342 | PRODUCT should be a symbol, the name of a sql product, such as |
| @@ -25338,7 +25357,7 @@ adds a fontification pattern to fontify identifiers ending in | |||
| 25338 | 25357 | ||
| 25339 | \(fn PRODUCT KEYWORDS &optional APPEND)" nil nil) | 25358 | \(fn PRODUCT KEYWORDS &optional APPEND)" nil nil) |
| 25340 | 25359 | ||
| 25341 | (autoload (quote sql-help) "sql" "\ | 25360 | (autoload 'sql-help "sql" "\ |
| 25342 | Show short help for the SQL modes. | 25361 | Show short help for the SQL modes. |
| 25343 | 25362 | ||
| 25344 | Use an entry function to open an interactive SQL buffer. This buffer is | 25363 | Use an entry function to open an interactive SQL buffer. This buffer is |
| @@ -25380,7 +25399,7 @@ appended to the SQLi buffer without disturbing your SQL buffer. | |||
| 25380 | 25399 | ||
| 25381 | \(fn)" t nil) | 25400 | \(fn)" t nil) |
| 25382 | 25401 | ||
| 25383 | (autoload (quote sql-mode) "sql" "\ | 25402 | (autoload 'sql-mode "sql" "\ |
| 25384 | Major mode to edit SQL. | 25403 | Major mode to edit SQL. |
| 25385 | 25404 | ||
| 25386 | You can send SQL statements to the SQLi buffer using | 25405 | You can send SQL statements to the SQLi buffer using |
| @@ -25410,7 +25429,7 @@ you must tell Emacs. Here's how to do that in your `~/.emacs' file: | |||
| 25410 | 25429 | ||
| 25411 | \(fn)" t nil) | 25430 | \(fn)" t nil) |
| 25412 | 25431 | ||
| 25413 | (autoload (quote sql-product-interactive) "sql" "\ | 25432 | (autoload 'sql-product-interactive "sql" "\ |
| 25414 | Run product interpreter as an inferior process. | 25433 | Run product interpreter as an inferior process. |
| 25415 | 25434 | ||
| 25416 | If buffer `*SQL*' exists but no process is running, make a new process. | 25435 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25421,7 +25440,7 @@ If buffer exists and a process is running, just switch to buffer | |||
| 25421 | 25440 | ||
| 25422 | \(fn &optional PRODUCT)" t nil) | 25441 | \(fn &optional PRODUCT)" t nil) |
| 25423 | 25442 | ||
| 25424 | (autoload (quote sql-oracle) "sql" "\ | 25443 | (autoload 'sql-oracle "sql" "\ |
| 25425 | Run sqlplus by Oracle as an inferior process. | 25444 | Run sqlplus by Oracle as an inferior process. |
| 25426 | 25445 | ||
| 25427 | If buffer `*SQL*' exists but no process is running, make a new process. | 25446 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25447,7 +25466,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25447 | 25466 | ||
| 25448 | \(fn)" t nil) | 25467 | \(fn)" t nil) |
| 25449 | 25468 | ||
| 25450 | (autoload (quote sql-sybase) "sql" "\ | 25469 | (autoload 'sql-sybase "sql" "\ |
| 25451 | Run isql by SyBase as an inferior process. | 25470 | Run isql by SyBase as an inferior process. |
| 25452 | 25471 | ||
| 25453 | If buffer `*SQL*' exists but no process is running, make a new process. | 25472 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25473,7 +25492,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25473 | 25492 | ||
| 25474 | \(fn)" t nil) | 25493 | \(fn)" t nil) |
| 25475 | 25494 | ||
| 25476 | (autoload (quote sql-informix) "sql" "\ | 25495 | (autoload 'sql-informix "sql" "\ |
| 25477 | Run dbaccess by Informix as an inferior process. | 25496 | Run dbaccess by Informix as an inferior process. |
| 25478 | 25497 | ||
| 25479 | If buffer `*SQL*' exists but no process is running, make a new process. | 25498 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25497,7 +25516,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25497 | 25516 | ||
| 25498 | \(fn)" t nil) | 25517 | \(fn)" t nil) |
| 25499 | 25518 | ||
| 25500 | (autoload (quote sql-sqlite) "sql" "\ | 25519 | (autoload 'sql-sqlite "sql" "\ |
| 25501 | Run sqlite as an inferior process. | 25520 | Run sqlite as an inferior process. |
| 25502 | 25521 | ||
| 25503 | SQLite is free software. | 25522 | SQLite is free software. |
| @@ -25525,7 +25544,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25525 | 25544 | ||
| 25526 | \(fn)" t nil) | 25545 | \(fn)" t nil) |
| 25527 | 25546 | ||
| 25528 | (autoload (quote sql-mysql) "sql" "\ | 25547 | (autoload 'sql-mysql "sql" "\ |
| 25529 | Run mysql by TcX as an inferior process. | 25548 | Run mysql by TcX as an inferior process. |
| 25530 | 25549 | ||
| 25531 | Mysql versions 3.23 and up are free software. | 25550 | Mysql versions 3.23 and up are free software. |
| @@ -25553,7 +25572,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25553 | 25572 | ||
| 25554 | \(fn)" t nil) | 25573 | \(fn)" t nil) |
| 25555 | 25574 | ||
| 25556 | (autoload (quote sql-solid) "sql" "\ | 25575 | (autoload 'sql-solid "sql" "\ |
| 25557 | Run solsql by Solid as an inferior process. | 25576 | Run solsql by Solid as an inferior process. |
| 25558 | 25577 | ||
| 25559 | If buffer `*SQL*' exists but no process is running, make a new process. | 25578 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25578,7 +25597,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25578 | 25597 | ||
| 25579 | \(fn)" t nil) | 25598 | \(fn)" t nil) |
| 25580 | 25599 | ||
| 25581 | (autoload (quote sql-ingres) "sql" "\ | 25600 | (autoload 'sql-ingres "sql" "\ |
| 25582 | Run sql by Ingres as an inferior process. | 25601 | Run sql by Ingres as an inferior process. |
| 25583 | 25602 | ||
| 25584 | If buffer `*SQL*' exists but no process is running, make a new process. | 25603 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25602,7 +25621,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25602 | 25621 | ||
| 25603 | \(fn)" t nil) | 25622 | \(fn)" t nil) |
| 25604 | 25623 | ||
| 25605 | (autoload (quote sql-ms) "sql" "\ | 25624 | (autoload 'sql-ms "sql" "\ |
| 25606 | Run osql by Microsoft as an inferior process. | 25625 | Run osql by Microsoft as an inferior process. |
| 25607 | 25626 | ||
| 25608 | If buffer `*SQL*' exists but no process is running, make a new process. | 25627 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25628,7 +25647,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25628 | 25647 | ||
| 25629 | \(fn)" t nil) | 25648 | \(fn)" t nil) |
| 25630 | 25649 | ||
| 25631 | (autoload (quote sql-postgres) "sql" "\ | 25650 | (autoload 'sql-postgres "sql" "\ |
| 25632 | Run psql by Postgres as an inferior process. | 25651 | Run psql by Postgres as an inferior process. |
| 25633 | 25652 | ||
| 25634 | If buffer `*SQL*' exists but no process is running, make a new process. | 25653 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25659,7 +25678,7 @@ Try to set `comint-output-filter-functions' like this: | |||
| 25659 | 25678 | ||
| 25660 | \(fn)" t nil) | 25679 | \(fn)" t nil) |
| 25661 | 25680 | ||
| 25662 | (autoload (quote sql-interbase) "sql" "\ | 25681 | (autoload 'sql-interbase "sql" "\ |
| 25663 | Run isql by Interbase as an inferior process. | 25682 | Run isql by Interbase as an inferior process. |
| 25664 | 25683 | ||
| 25665 | If buffer `*SQL*' exists but no process is running, make a new process. | 25684 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25684,7 +25703,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25684 | 25703 | ||
| 25685 | \(fn)" t nil) | 25704 | \(fn)" t nil) |
| 25686 | 25705 | ||
| 25687 | (autoload (quote sql-db2) "sql" "\ | 25706 | (autoload 'sql-db2 "sql" "\ |
| 25688 | Run db2 by IBM as an inferior process. | 25707 | Run db2 by IBM as an inferior process. |
| 25689 | 25708 | ||
| 25690 | If buffer `*SQL*' exists but no process is running, make a new process. | 25709 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25713,7 +25732,7 @@ The default comes from `process-coding-system-alist' and | |||
| 25713 | 25732 | ||
| 25714 | \(fn)" t nil) | 25733 | \(fn)" t nil) |
| 25715 | 25734 | ||
| 25716 | (autoload (quote sql-linter) "sql" "\ | 25735 | (autoload 'sql-linter "sql" "\ |
| 25717 | Run inl by RELEX as an inferior process. | 25736 | Run inl by RELEX as an inferior process. |
| 25718 | 25737 | ||
| 25719 | If buffer `*SQL*' exists but no process is running, make a new process. | 25738 | If buffer `*SQL*' exists but no process is running, make a new process. |
| @@ -25745,11 +25764,11 @@ input. See `sql-interactive-mode'. | |||
| 25745 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes | 25764 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes |
| 25746 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke | 25765 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke |
| 25747 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke | 25766 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke |
| 25748 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (18104 | 25767 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (18120 |
| 25749 | ;;;;;; 24740)) | 25768 | ;;;;;; 34749)) |
| 25750 | ;;; Generated autoloads from strokes.el | 25769 | ;;; Generated autoloads from strokes.el |
| 25751 | 25770 | ||
| 25752 | (autoload (quote strokes-global-set-stroke) "strokes" "\ | 25771 | (autoload 'strokes-global-set-stroke "strokes" "\ |
| 25753 | Interactively give STROKE the global binding as COMMAND. | 25772 | Interactively give STROKE the global binding as COMMAND. |
| 25754 | Operated just like `global-set-key', except for strokes. | 25773 | Operated just like `global-set-key', except for strokes. |
| 25755 | COMMAND is a symbol naming an interactively-callable function. STROKE | 25774 | COMMAND is a symbol naming an interactively-callable function. STROKE |
| @@ -25760,7 +25779,7 @@ See also `strokes-global-set-stroke-string'. | |||
| 25760 | 25779 | ||
| 25761 | \(fn STROKE COMMAND)" t nil) | 25780 | \(fn STROKE COMMAND)" t nil) |
| 25762 | 25781 | ||
| 25763 | (autoload (quote strokes-read-stroke) "strokes" "\ | 25782 | (autoload 'strokes-read-stroke "strokes" "\ |
| 25764 | Read a simple stroke (interactively) and return the stroke. | 25783 | Read a simple stroke (interactively) and return the stroke. |
| 25765 | Optional PROMPT in minibuffer displays before and during stroke reading. | 25784 | Optional PROMPT in minibuffer displays before and during stroke reading. |
| 25766 | This function will display the stroke interactively as it is being | 25785 | This function will display the stroke interactively as it is being |
| @@ -25770,7 +25789,7 @@ Optional EVENT is acceptable as the starting event of the stroke. | |||
| 25770 | 25789 | ||
| 25771 | \(fn &optional PROMPT EVENT)" nil nil) | 25790 | \(fn &optional PROMPT EVENT)" nil nil) |
| 25772 | 25791 | ||
| 25773 | (autoload (quote strokes-read-complex-stroke) "strokes" "\ | 25792 | (autoload 'strokes-read-complex-stroke "strokes" "\ |
| 25774 | Read a complex stroke (interactively) and return the stroke. | 25793 | Read a complex stroke (interactively) and return the stroke. |
| 25775 | Optional PROMPT in minibuffer displays before and during stroke reading. | 25794 | Optional PROMPT in minibuffer displays before and during stroke reading. |
| 25776 | Note that a complex stroke allows the user to pen-up and pen-down. This | 25795 | Note that a complex stroke allows the user to pen-up and pen-down. This |
| @@ -25780,34 +25799,34 @@ Optional EVENT is acceptable as the starting event of the stroke. | |||
| 25780 | 25799 | ||
| 25781 | \(fn &optional PROMPT EVENT)" nil nil) | 25800 | \(fn &optional PROMPT EVENT)" nil nil) |
| 25782 | 25801 | ||
| 25783 | (autoload (quote strokes-do-stroke) "strokes" "\ | 25802 | (autoload 'strokes-do-stroke "strokes" "\ |
| 25784 | Read a simple stroke from the user and then execute its command. | 25803 | Read a simple stroke from the user and then execute its command. |
| 25785 | This must be bound to a mouse event. | 25804 | This must be bound to a mouse event. |
| 25786 | 25805 | ||
| 25787 | \(fn EVENT)" t nil) | 25806 | \(fn EVENT)" t nil) |
| 25788 | 25807 | ||
| 25789 | (autoload (quote strokes-do-complex-stroke) "strokes" "\ | 25808 | (autoload 'strokes-do-complex-stroke "strokes" "\ |
| 25790 | Read a complex stroke from the user and then execute its command. | 25809 | Read a complex stroke from the user and then execute its command. |
| 25791 | This must be bound to a mouse event. | 25810 | This must be bound to a mouse event. |
| 25792 | 25811 | ||
| 25793 | \(fn EVENT)" t nil) | 25812 | \(fn EVENT)" t nil) |
| 25794 | 25813 | ||
| 25795 | (autoload (quote strokes-describe-stroke) "strokes" "\ | 25814 | (autoload 'strokes-describe-stroke "strokes" "\ |
| 25796 | Displays the command which STROKE maps to, reading STROKE interactively. | 25815 | Displays the command which STROKE maps to, reading STROKE interactively. |
| 25797 | 25816 | ||
| 25798 | \(fn STROKE)" t nil) | 25817 | \(fn STROKE)" t nil) |
| 25799 | 25818 | ||
| 25800 | (autoload (quote strokes-help) "strokes" "\ | 25819 | (autoload 'strokes-help "strokes" "\ |
| 25801 | Get instruction on using the Strokes package. | 25820 | Get instruction on using the Strokes package. |
| 25802 | 25821 | ||
| 25803 | \(fn)" t nil) | 25822 | \(fn)" t nil) |
| 25804 | 25823 | ||
| 25805 | (autoload (quote strokes-load-user-strokes) "strokes" "\ | 25824 | (autoload 'strokes-load-user-strokes "strokes" "\ |
| 25806 | Load user-defined strokes from file named by `strokes-file'. | 25825 | Load user-defined strokes from file named by `strokes-file'. |
| 25807 | 25826 | ||
| 25808 | \(fn)" t nil) | 25827 | \(fn)" t nil) |
| 25809 | 25828 | ||
| 25810 | (autoload (quote strokes-list-strokes) "strokes" "\ | 25829 | (autoload 'strokes-list-strokes "strokes" "\ |
| 25811 | Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP. | 25830 | Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP. |
| 25812 | With CHRONOLOGICAL prefix arg (\\[universal-argument]) list strokes | 25831 | With CHRONOLOGICAL prefix arg (\\[universal-argument]) list strokes |
| 25813 | chronologically by command name. | 25832 | chronologically by command name. |
| @@ -25822,9 +25841,9 @@ Setting this variable directly does not take effect; | |||
| 25822 | either customize it (see the info node `Easy Customization') | 25841 | either customize it (see the info node `Easy Customization') |
| 25823 | or call the function `strokes-mode'.") | 25842 | or call the function `strokes-mode'.") |
| 25824 | 25843 | ||
| 25825 | (custom-autoload (quote strokes-mode) "strokes" nil) | 25844 | (custom-autoload 'strokes-mode "strokes" nil) |
| 25826 | 25845 | ||
| 25827 | (autoload (quote strokes-mode) "strokes" "\ | 25846 | (autoload 'strokes-mode "strokes" "\ |
| 25828 | Toggle Strokes global minor mode.\\<strokes-mode-map> | 25847 | Toggle Strokes global minor mode.\\<strokes-mode-map> |
| 25829 | With ARG, turn strokes on if and only if ARG is positive. | 25848 | With ARG, turn strokes on if and only if ARG is positive. |
| 25830 | Strokes are pictographic mouse gestures which invoke commands. | 25849 | Strokes are pictographic mouse gestures which invoke commands. |
| @@ -25841,14 +25860,14 @@ Encode/decode your strokes with \\[strokes-encode-buffer], | |||
| 25841 | 25860 | ||
| 25842 | \(fn &optional ARG)" t nil) | 25861 | \(fn &optional ARG)" t nil) |
| 25843 | 25862 | ||
| 25844 | (autoload (quote strokes-decode-buffer) "strokes" "\ | 25863 | (autoload 'strokes-decode-buffer "strokes" "\ |
| 25845 | Decode stroke strings in BUFFER and display their corresponding glyphs. | 25864 | Decode stroke strings in BUFFER and display their corresponding glyphs. |
| 25846 | Optional BUFFER defaults to the current buffer. | 25865 | Optional BUFFER defaults to the current buffer. |
| 25847 | Optional FORCE non-nil will ignore the buffer's read-only status. | 25866 | Optional FORCE non-nil will ignore the buffer's read-only status. |
| 25848 | 25867 | ||
| 25849 | \(fn &optional BUFFER FORCE)" t nil) | 25868 | \(fn &optional BUFFER FORCE)" t nil) |
| 25850 | 25869 | ||
| 25851 | (autoload (quote strokes-compose-complex-stroke) "strokes" "\ | 25870 | (autoload 'strokes-compose-complex-stroke "strokes" "\ |
| 25852 | Read a complex stroke and insert its glyph into the current buffer. | 25871 | Read a complex stroke and insert its glyph into the current buffer. |
| 25853 | 25872 | ||
| 25854 | \(fn)" t nil) | 25873 | \(fn)" t nil) |
| @@ -25856,30 +25875,30 @@ Read a complex stroke and insert its glyph into the current buffer. | |||
| 25856 | ;;;*** | 25875 | ;;;*** |
| 25857 | 25876 | ||
| 25858 | ;;;### (autoloads (studlify-buffer studlify-word studlify-region) | 25877 | ;;;### (autoloads (studlify-buffer studlify-word studlify-region) |
| 25859 | ;;;;;; "studly" "play/studly.el" (17994 6715)) | 25878 | ;;;;;; "studly" "play/studly.el" (16268 23254)) |
| 25860 | ;;; Generated autoloads from play/studly.el | 25879 | ;;; Generated autoloads from play/studly.el |
| 25861 | 25880 | ||
| 25862 | (autoload (quote studlify-region) "studly" "\ | 25881 | (autoload 'studlify-region "studly" "\ |
| 25863 | Studlify-case the region. | 25882 | Studlify-case the region. |
| 25864 | 25883 | ||
| 25865 | \(fn BEGIN END)" t nil) | 25884 | \(fn BEGIN END)" t nil) |
| 25866 | 25885 | ||
| 25867 | (autoload (quote studlify-word) "studly" "\ | 25886 | (autoload 'studlify-word "studly" "\ |
| 25868 | Studlify-case the current word, or COUNT words if given an argument. | 25887 | Studlify-case the current word, or COUNT words if given an argument. |
| 25869 | 25888 | ||
| 25870 | \(fn COUNT)" t nil) | 25889 | \(fn COUNT)" t nil) |
| 25871 | 25890 | ||
| 25872 | (autoload (quote studlify-buffer) "studly" "\ | 25891 | (autoload 'studlify-buffer "studly" "\ |
| 25873 | Studlify-case the current buffer. | 25892 | Studlify-case the current buffer. |
| 25874 | 25893 | ||
| 25875 | \(fn)" t nil) | 25894 | \(fn)" t nil) |
| 25876 | 25895 | ||
| 25877 | ;;;*** | 25896 | ;;;*** |
| 25878 | 25897 | ||
| 25879 | ;;;### (autoloads (locate-library) "subr" "subr.el" (18104 24740)) | 25898 | ;;;### (autoloads (locate-library) "subr" "subr.el" (18211 32385)) |
| 25880 | ;;; Generated autoloads from subr.el | 25899 | ;;; Generated autoloads from subr.el |
| 25881 | 25900 | ||
| 25882 | (autoload (quote locate-library) "subr" "\ | 25901 | (autoload 'locate-library "subr" "\ |
| 25883 | Show the precise file name of Emacs library LIBRARY. | 25902 | Show the precise file name of Emacs library LIBRARY. |
| 25884 | This command searches the directories in `load-path' like `\\[load-library]' | 25903 | This command searches the directories in `load-path' like `\\[load-library]' |
| 25885 | to find the file that `\\[load-library] RET LIBRARY RET' would load. | 25904 | to find the file that `\\[load-library] RET LIBRARY RET' would load. |
| @@ -25898,10 +25917,10 @@ and the file name is displayed in the echo area. | |||
| 25898 | ;;;*** | 25917 | ;;;*** |
| 25899 | 25918 | ||
| 25900 | ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" | 25919 | ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" |
| 25901 | ;;;;;; (18104 24758)) | 25920 | ;;;;;; (18173 8195)) |
| 25902 | ;;; Generated autoloads from mail/supercite.el | 25921 | ;;; Generated autoloads from mail/supercite.el |
| 25903 | 25922 | ||
| 25904 | (autoload (quote sc-cite-original) "supercite" "\ | 25923 | (autoload 'sc-cite-original "supercite" "\ |
| 25905 | Workhorse citing function which performs the initial citation. | 25924 | Workhorse citing function which performs the initial citation. |
| 25906 | This is callable from the various mail and news readers' reply | 25925 | This is callable from the various mail and news readers' reply |
| 25907 | function according to the agreed upon standard. See the associated | 25926 | function according to the agreed upon standard. See the associated |
| @@ -25930,34 +25949,38 @@ before, and `sc-post-hook' is run after the guts of this function. | |||
| 25930 | 25949 | ||
| 25931 | ;;;*** | 25950 | ;;;*** |
| 25932 | 25951 | ||
| 25933 | ;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (18104 24740)) | 25952 | ;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (18177 |
| 25953 | ;;;;;; 7731)) | ||
| 25934 | ;;; Generated autoloads from t-mouse.el | 25954 | ;;; Generated autoloads from t-mouse.el |
| 25935 | 25955 | ||
| 25936 | (defvar t-mouse-mode nil "\ | 25956 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") |
| 25937 | Non-nil if T-Mouse mode is enabled. | 25957 | |
| 25938 | See the command `t-mouse-mode' for a description of this minor mode. | 25958 | (defvar gpm-mouse-mode nil "\ |
| 25959 | Non-nil if Gpm-Mouse mode is enabled. | ||
| 25960 | See the command `gpm-mouse-mode' for a description of this minor mode. | ||
| 25939 | Setting this variable directly does not take effect; | 25961 | Setting this variable directly does not take effect; |
| 25940 | either customize it (see the info node `Easy Customization') | 25962 | either customize it (see the info node `Easy Customization') |
| 25941 | or call the function `t-mouse-mode'.") | 25963 | or call the function `gpm-mouse-mode'.") |
| 25942 | 25964 | ||
| 25943 | (custom-autoload (quote t-mouse-mode) "t-mouse" nil) | 25965 | (custom-autoload 'gpm-mouse-mode "t-mouse" nil) |
| 25944 | 25966 | ||
| 25945 | (autoload (quote t-mouse-mode) "t-mouse" "\ | 25967 | (autoload 'gpm-mouse-mode "t-mouse" "\ |
| 25946 | Toggle t-mouse mode to use the mouse in Linux consoles. | 25968 | Toggle gpm-mouse mode to use the mouse in GNU/Linux consoles. |
| 25947 | With prefix arg, turn t-mouse mode on iff arg is positive. | 25969 | With prefix arg, turn gpm-mouse mode on if arg is positive, |
| 25970 | otherwise turn it off. | ||
| 25948 | 25971 | ||
| 25949 | This allows the use of the mouse when operating on a Linux console, in the | 25972 | This allows the use of the mouse when operating on a GNU/Linux console, |
| 25950 | same way as you can use the mouse under X11. | 25973 | in the same way as you can use the mouse under X11. |
| 25951 | It requires the `mev' program, part of the `gpm' utilities. | 25974 | It relies on the `gpm' daemon being activated. |
| 25952 | 25975 | ||
| 25953 | \(fn &optional ARG)" t nil) | 25976 | \(fn &optional ARG)" t nil) |
| 25954 | 25977 | ||
| 25955 | ;;;*** | 25978 | ;;;*** |
| 25956 | 25979 | ||
| 25957 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (18104 24740)) | 25980 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (18088 55089)) |
| 25958 | ;;; Generated autoloads from tabify.el | 25981 | ;;; Generated autoloads from tabify.el |
| 25959 | 25982 | ||
| 25960 | (autoload (quote untabify) "tabify" "\ | 25983 | (autoload 'untabify "tabify" "\ |
| 25961 | Convert all tabs in region to multiple spaces, preserving columns. | 25984 | Convert all tabs in region to multiple spaces, preserving columns. |
| 25962 | Called non-interactively, the region is specified by arguments | 25985 | Called non-interactively, the region is specified by arguments |
| 25963 | START and END, rather than by the position of point and mark. | 25986 | START and END, rather than by the position of point and mark. |
| @@ -25965,7 +25988,7 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 25965 | 25988 | ||
| 25966 | \(fn START END)" t nil) | 25989 | \(fn START END)" t nil) |
| 25967 | 25990 | ||
| 25968 | (autoload (quote tabify) "tabify" "\ | 25991 | (autoload 'tabify "tabify" "\ |
| 25969 | Convert multiple spaces in region to tabs when possible. | 25992 | Convert multiple spaces in region to tabs when possible. |
| 25970 | A group of spaces is partially replaced by tabs | 25993 | A group of spaces is partially replaced by tabs |
| 25971 | when this can be done without changing the column they end at. | 25994 | when this can be done without changing the column they end at. |
| @@ -25989,31 +26012,31 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 25989 | ;;;;;; table-recognize table-insert-row-column table-insert-column | 26012 | ;;;;;; table-recognize table-insert-row-column table-insert-column |
| 25990 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook | 26013 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook |
| 25991 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) | 26014 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) |
| 25992 | ;;;;;; "table" "textmodes/table.el" (18104 24772)) | 26015 | ;;;;;; "table" "textmodes/table.el" (18173 8196)) |
| 25993 | ;;; Generated autoloads from textmodes/table.el | 26016 | ;;; Generated autoloads from textmodes/table.el |
| 25994 | 26017 | ||
| 25995 | (defvar table-cell-map-hook nil "\ | 26018 | (defvar table-cell-map-hook nil "\ |
| 25996 | *Normal hooks run when finishing construction of `table-cell-map'. | 26019 | *Normal hooks run when finishing construction of `table-cell-map'. |
| 25997 | User can modify `table-cell-map' by adding custom functions here.") | 26020 | User can modify `table-cell-map' by adding custom functions here.") |
| 25998 | 26021 | ||
| 25999 | (custom-autoload (quote table-cell-map-hook) "table" t) | 26022 | (custom-autoload 'table-cell-map-hook "table" t) |
| 26000 | 26023 | ||
| 26001 | (defvar table-load-hook nil "\ | 26024 | (defvar table-load-hook nil "\ |
| 26002 | *List of functions to be called after the table is first loaded.") | 26025 | *List of functions to be called after the table is first loaded.") |
| 26003 | 26026 | ||
| 26004 | (custom-autoload (quote table-load-hook) "table" t) | 26027 | (custom-autoload 'table-load-hook "table" t) |
| 26005 | 26028 | ||
| 26006 | (defvar table-point-entered-cell-hook nil "\ | 26029 | (defvar table-point-entered-cell-hook nil "\ |
| 26007 | *List of functions to be called after point entered a table cell.") | 26030 | *List of functions to be called after point entered a table cell.") |
| 26008 | 26031 | ||
| 26009 | (custom-autoload (quote table-point-entered-cell-hook) "table" t) | 26032 | (custom-autoload 'table-point-entered-cell-hook "table" t) |
| 26010 | 26033 | ||
| 26011 | (defvar table-point-left-cell-hook nil "\ | 26034 | (defvar table-point-left-cell-hook nil "\ |
| 26012 | *List of functions to be called after point left a table cell.") | 26035 | *List of functions to be called after point left a table cell.") |
| 26013 | 26036 | ||
| 26014 | (custom-autoload (quote table-point-left-cell-hook) "table" t) | 26037 | (custom-autoload 'table-point-left-cell-hook "table" t) |
| 26015 | 26038 | ||
| 26016 | (autoload (quote table-insert) "table" "\ | 26039 | (autoload 'table-insert "table" "\ |
| 26017 | Insert an editable text table. | 26040 | Insert an editable text table. |
| 26018 | Insert a table of specified number of COLUMNS and ROWS. Optional | 26041 | Insert a table of specified number of COLUMNS and ROWS. Optional |
| 26019 | parameter CELL-WIDTH and CELL-HEIGHT can specify the size of each | 26042 | parameter CELL-WIDTH and CELL-HEIGHT can specify the size of each |
| @@ -26136,7 +26159,7 @@ Inside a table cell has a special keymap. | |||
| 26136 | 26159 | ||
| 26137 | \(fn COLUMNS ROWS &optional CELL-WIDTH CELL-HEIGHT)" t nil) | 26160 | \(fn COLUMNS ROWS &optional CELL-WIDTH CELL-HEIGHT)" t nil) |
| 26138 | 26161 | ||
| 26139 | (autoload (quote table-insert-row) "table" "\ | 26162 | (autoload 'table-insert-row "table" "\ |
| 26140 | Insert N table row(s). | 26163 | Insert N table row(s). |
| 26141 | When point is in a table the newly inserted row(s) are placed above | 26164 | When point is in a table the newly inserted row(s) are placed above |
| 26142 | the current row. When point is outside of the table it must be below | 26165 | the current row. When point is outside of the table it must be below |
| @@ -26145,7 +26168,7 @@ are appended at the bottom of the table. | |||
| 26145 | 26168 | ||
| 26146 | \(fn N)" t nil) | 26169 | \(fn N)" t nil) |
| 26147 | 26170 | ||
| 26148 | (autoload (quote table-insert-column) "table" "\ | 26171 | (autoload 'table-insert-column "table" "\ |
| 26149 | Insert N table column(s). | 26172 | Insert N table column(s). |
| 26150 | When point is in a table the newly inserted column(s) are placed left | 26173 | When point is in a table the newly inserted column(s) are placed left |
| 26151 | of the current column. When point is outside of the table it must be | 26174 | of the current column. When point is outside of the table it must be |
| @@ -26154,13 +26177,13 @@ created column(s) are appended at the right of the table. | |||
| 26154 | 26177 | ||
| 26155 | \(fn N)" t nil) | 26178 | \(fn N)" t nil) |
| 26156 | 26179 | ||
| 26157 | (autoload (quote table-insert-row-column) "table" "\ | 26180 | (autoload 'table-insert-row-column "table" "\ |
| 26158 | Insert row(s) or column(s). | 26181 | Insert row(s) or column(s). |
| 26159 | See `table-insert-row' and `table-insert-column'. | 26182 | See `table-insert-row' and `table-insert-column'. |
| 26160 | 26183 | ||
| 26161 | \(fn ROW-COLUMN N)" t nil) | 26184 | \(fn ROW-COLUMN N)" t nil) |
| 26162 | 26185 | ||
| 26163 | (autoload (quote table-recognize) "table" "\ | 26186 | (autoload 'table-recognize "table" "\ |
| 26164 | Recognize all tables within the current buffer and activate them. | 26187 | Recognize all tables within the current buffer and activate them. |
| 26165 | Scans the entire buffer and recognizes valid table cells. If the | 26188 | Scans the entire buffer and recognizes valid table cells. If the |
| 26166 | optional numeric prefix argument ARG is negative the tables in the | 26189 | optional numeric prefix argument ARG is negative the tables in the |
| @@ -26169,12 +26192,12 @@ all the table specific features. | |||
| 26169 | 26192 | ||
| 26170 | \(fn &optional ARG)" t nil) | 26193 | \(fn &optional ARG)" t nil) |
| 26171 | 26194 | ||
| 26172 | (autoload (quote table-unrecognize) "table" "\ | 26195 | (autoload 'table-unrecognize "table" "\ |
| 26173 | Not documented | 26196 | Not documented |
| 26174 | 26197 | ||
| 26175 | \(fn)" t nil) | 26198 | \(fn)" t nil) |
| 26176 | 26199 | ||
| 26177 | (autoload (quote table-recognize-region) "table" "\ | 26200 | (autoload 'table-recognize-region "table" "\ |
| 26178 | Recognize all tables within region. | 26201 | Recognize all tables within region. |
| 26179 | BEG and END specify the region to work on. If the optional numeric | 26202 | BEG and END specify the region to work on. If the optional numeric |
| 26180 | prefix argument ARG is negative the tables in the region become | 26203 | prefix argument ARG is negative the tables in the region become |
| @@ -26183,12 +26206,12 @@ specific features. | |||
| 26183 | 26206 | ||
| 26184 | \(fn BEG END &optional ARG)" t nil) | 26207 | \(fn BEG END &optional ARG)" t nil) |
| 26185 | 26208 | ||
| 26186 | (autoload (quote table-unrecognize-region) "table" "\ | 26209 | (autoload 'table-unrecognize-region "table" "\ |
| 26187 | Not documented | 26210 | Not documented |
| 26188 | 26211 | ||
| 26189 | \(fn BEG END)" t nil) | 26212 | \(fn BEG END)" t nil) |
| 26190 | 26213 | ||
| 26191 | (autoload (quote table-recognize-table) "table" "\ | 26214 | (autoload 'table-recognize-table "table" "\ |
| 26192 | Recognize a table at point. | 26215 | Recognize a table at point. |
| 26193 | If the optional numeric prefix argument ARG is negative the table | 26216 | If the optional numeric prefix argument ARG is negative the table |
| 26194 | becomes inactive, meaning the table becomes plain text and loses all | 26217 | becomes inactive, meaning the table becomes plain text and loses all |
| @@ -26196,12 +26219,12 @@ the table specific features. | |||
| 26196 | 26219 | ||
| 26197 | \(fn &optional ARG)" t nil) | 26220 | \(fn &optional ARG)" t nil) |
| 26198 | 26221 | ||
| 26199 | (autoload (quote table-unrecognize-table) "table" "\ | 26222 | (autoload 'table-unrecognize-table "table" "\ |
| 26200 | Not documented | 26223 | Not documented |
| 26201 | 26224 | ||
| 26202 | \(fn)" t nil) | 26225 | \(fn)" t nil) |
| 26203 | 26226 | ||
| 26204 | (autoload (quote table-recognize-cell) "table" "\ | 26227 | (autoload 'table-recognize-cell "table" "\ |
| 26205 | Recognize a table cell that contains current point. | 26228 | Recognize a table cell that contains current point. |
| 26206 | Probe the cell dimension and prepare the cell information. The | 26229 | Probe the cell dimension and prepare the cell information. The |
| 26207 | optional two arguments FORCE and NO-COPY are for internal use only and | 26230 | optional two arguments FORCE and NO-COPY are for internal use only and |
| @@ -26211,12 +26234,12 @@ plain text and loses all the table specific features. | |||
| 26211 | 26234 | ||
| 26212 | \(fn &optional FORCE NO-COPY ARG)" t nil) | 26235 | \(fn &optional FORCE NO-COPY ARG)" t nil) |
| 26213 | 26236 | ||
| 26214 | (autoload (quote table-unrecognize-cell) "table" "\ | 26237 | (autoload 'table-unrecognize-cell "table" "\ |
| 26215 | Not documented | 26238 | Not documented |
| 26216 | 26239 | ||
| 26217 | \(fn)" t nil) | 26240 | \(fn)" t nil) |
| 26218 | 26241 | ||
| 26219 | (autoload (quote table-heighten-cell) "table" "\ | 26242 | (autoload 'table-heighten-cell "table" "\ |
| 26220 | Heighten the current cell by N lines by expanding the cell vertically. | 26243 | Heighten the current cell by N lines by expanding the cell vertically. |
| 26221 | Heightening is done by adding blank lines at the bottom of the current | 26244 | Heightening is done by adding blank lines at the bottom of the current |
| 26222 | cell. Other cells aligned horizontally with the current one are also | 26245 | cell. Other cells aligned horizontally with the current one are also |
| @@ -26226,7 +26249,7 @@ specified. | |||
| 26226 | 26249 | ||
| 26227 | \(fn N &optional NO-COPY NO-UPDATE)" t nil) | 26250 | \(fn N &optional NO-COPY NO-UPDATE)" t nil) |
| 26228 | 26251 | ||
| 26229 | (autoload (quote table-shorten-cell) "table" "\ | 26252 | (autoload 'table-shorten-cell "table" "\ |
| 26230 | Shorten the current cell by N lines by shrinking the cell vertically. | 26253 | Shorten the current cell by N lines by shrinking the cell vertically. |
| 26231 | Shortening is done by removing blank lines from the bottom of the cell | 26254 | Shortening is done by removing blank lines from the bottom of the cell |
| 26232 | and possibly from the top of the cell as well. Therefor, the cell | 26255 | and possibly from the top of the cell as well. Therefor, the cell |
| @@ -26237,21 +26260,21 @@ table structure. | |||
| 26237 | 26260 | ||
| 26238 | \(fn N)" t nil) | 26261 | \(fn N)" t nil) |
| 26239 | 26262 | ||
| 26240 | (autoload (quote table-widen-cell) "table" "\ | 26263 | (autoload 'table-widen-cell "table" "\ |
| 26241 | Widen the current cell by N columns and expand the cell horizontally. | 26264 | Widen the current cell by N columns and expand the cell horizontally. |
| 26242 | Some other cells in the same table are widen as well to keep the | 26265 | Some other cells in the same table are widen as well to keep the |
| 26243 | table's rectangle structure. | 26266 | table's rectangle structure. |
| 26244 | 26267 | ||
| 26245 | \(fn N &optional NO-COPY NO-UPDATE)" t nil) | 26268 | \(fn N &optional NO-COPY NO-UPDATE)" t nil) |
| 26246 | 26269 | ||
| 26247 | (autoload (quote table-narrow-cell) "table" "\ | 26270 | (autoload 'table-narrow-cell "table" "\ |
| 26248 | Narrow the current cell by N columns and shrink the cell horizontally. | 26271 | Narrow the current cell by N columns and shrink the cell horizontally. |
| 26249 | Some other cells in the same table are narrowed as well to keep the | 26272 | Some other cells in the same table are narrowed as well to keep the |
| 26250 | table's rectangle structure. | 26273 | table's rectangle structure. |
| 26251 | 26274 | ||
| 26252 | \(fn N)" t nil) | 26275 | \(fn N)" t nil) |
| 26253 | 26276 | ||
| 26254 | (autoload (quote table-forward-cell) "table" "\ | 26277 | (autoload 'table-forward-cell "table" "\ |
| 26255 | Move point forward to the beginning of the next cell. | 26278 | Move point forward to the beginning of the next cell. |
| 26256 | With argument ARG, do it ARG times; | 26279 | With argument ARG, do it ARG times; |
| 26257 | a negative argument ARG = -N means move backward N cells. | 26280 | a negative argument ARG = -N means move backward N cells. |
| @@ -26290,45 +26313,45 @@ You can actually try how it works in this buffer. Press | |||
| 26290 | 26313 | ||
| 26291 | \(fn &optional ARG NO-RECOGNIZE UNRECOGNIZE)" t nil) | 26314 | \(fn &optional ARG NO-RECOGNIZE UNRECOGNIZE)" t nil) |
| 26292 | 26315 | ||
| 26293 | (autoload (quote table-backward-cell) "table" "\ | 26316 | (autoload 'table-backward-cell "table" "\ |
| 26294 | Move backward to the beginning of the previous cell. | 26317 | Move backward to the beginning of the previous cell. |
| 26295 | With argument ARG, do it ARG times; | 26318 | With argument ARG, do it ARG times; |
| 26296 | a negative argument ARG = -N means move forward N cells. | 26319 | a negative argument ARG = -N means move forward N cells. |
| 26297 | 26320 | ||
| 26298 | \(fn &optional ARG)" t nil) | 26321 | \(fn &optional ARG)" t nil) |
| 26299 | 26322 | ||
| 26300 | (autoload (quote table-span-cell) "table" "\ | 26323 | (autoload 'table-span-cell "table" "\ |
| 26301 | Span current cell into adjacent cell in DIRECTION. | 26324 | Span current cell into adjacent cell in DIRECTION. |
| 26302 | DIRECTION is one of symbols; right, left, above or below. | 26325 | DIRECTION is one of symbols; right, left, above or below. |
| 26303 | 26326 | ||
| 26304 | \(fn DIRECTION)" t nil) | 26327 | \(fn DIRECTION)" t nil) |
| 26305 | 26328 | ||
| 26306 | (autoload (quote table-split-cell-vertically) "table" "\ | 26329 | (autoload 'table-split-cell-vertically "table" "\ |
| 26307 | Split current cell vertically. | 26330 | Split current cell vertically. |
| 26308 | Creates a cell above and a cell below the current point location. | 26331 | Creates a cell above and a cell below the current point location. |
| 26309 | 26332 | ||
| 26310 | \(fn)" t nil) | 26333 | \(fn)" t nil) |
| 26311 | 26334 | ||
| 26312 | (autoload (quote table-split-cell-horizontally) "table" "\ | 26335 | (autoload 'table-split-cell-horizontally "table" "\ |
| 26313 | Split current cell horizontally. | 26336 | Split current cell horizontally. |
| 26314 | Creates a cell on the left and a cell on the right of the current point location. | 26337 | Creates a cell on the left and a cell on the right of the current point location. |
| 26315 | 26338 | ||
| 26316 | \(fn)" t nil) | 26339 | \(fn)" t nil) |
| 26317 | 26340 | ||
| 26318 | (autoload (quote table-split-cell) "table" "\ | 26341 | (autoload 'table-split-cell "table" "\ |
| 26319 | Split current cell in ORIENTATION. | 26342 | Split current cell in ORIENTATION. |
| 26320 | ORIENTATION is a symbol either horizontally or vertically. | 26343 | ORIENTATION is a symbol either horizontally or vertically. |
| 26321 | 26344 | ||
| 26322 | \(fn ORIENTATION)" t nil) | 26345 | \(fn ORIENTATION)" t nil) |
| 26323 | 26346 | ||
| 26324 | (autoload (quote table-justify) "table" "\ | 26347 | (autoload 'table-justify "table" "\ |
| 26325 | Justify contents of a cell, a row of cells or a column of cells. | 26348 | Justify contents of a cell, a row of cells or a column of cells. |
| 26326 | WHAT is a symbol 'cell, 'row or 'column. JUSTIFY is a symbol 'left, | 26349 | WHAT is a symbol 'cell, 'row or 'column. JUSTIFY is a symbol 'left, |
| 26327 | 'center, 'right, 'top, 'middle, 'bottom or 'none. | 26350 | 'center, 'right, 'top, 'middle, 'bottom or 'none. |
| 26328 | 26351 | ||
| 26329 | \(fn WHAT JUSTIFY)" t nil) | 26352 | \(fn WHAT JUSTIFY)" t nil) |
| 26330 | 26353 | ||
| 26331 | (autoload (quote table-justify-cell) "table" "\ | 26354 | (autoload 'table-justify-cell "table" "\ |
| 26332 | Justify cell contents. | 26355 | Justify cell contents. |
| 26333 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or 'top, | 26356 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or 'top, |
| 26334 | 'middle, 'bottom or 'none for vertical. When optional PARAGRAPH is | 26357 | 'middle, 'bottom or 'none for vertical. When optional PARAGRAPH is |
| @@ -26337,21 +26360,21 @@ otherwise the entire cell contents is justified. | |||
| 26337 | 26360 | ||
| 26338 | \(fn JUSTIFY &optional PARAGRAPH)" t nil) | 26361 | \(fn JUSTIFY &optional PARAGRAPH)" t nil) |
| 26339 | 26362 | ||
| 26340 | (autoload (quote table-justify-row) "table" "\ | 26363 | (autoload 'table-justify-row "table" "\ |
| 26341 | Justify cells of a row. | 26364 | Justify cells of a row. |
| 26342 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, | 26365 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, |
| 26343 | 'middle, 'bottom or 'none for vertical. | 26366 | 'middle, 'bottom or 'none for vertical. |
| 26344 | 26367 | ||
| 26345 | \(fn JUSTIFY)" t nil) | 26368 | \(fn JUSTIFY)" t nil) |
| 26346 | 26369 | ||
| 26347 | (autoload (quote table-justify-column) "table" "\ | 26370 | (autoload 'table-justify-column "table" "\ |
| 26348 | Justify cells of a column. | 26371 | Justify cells of a column. |
| 26349 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, | 26372 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, |
| 26350 | 'middle, 'bottom or 'none for vertical. | 26373 | 'middle, 'bottom or 'none for vertical. |
| 26351 | 26374 | ||
| 26352 | \(fn JUSTIFY)" t nil) | 26375 | \(fn JUSTIFY)" t nil) |
| 26353 | 26376 | ||
| 26354 | (autoload (quote table-fixed-width-mode) "table" "\ | 26377 | (autoload 'table-fixed-width-mode "table" "\ |
| 26355 | Toggle fixing width mode. | 26378 | Toggle fixing width mode. |
| 26356 | In the fixed width mode, typing inside a cell never changes the cell | 26379 | In the fixed width mode, typing inside a cell never changes the cell |
| 26357 | width where in the normal mode the cell width expands automatically in | 26380 | width where in the normal mode the cell width expands automatically in |
| @@ -26359,7 +26382,7 @@ order to prevent a word being folded into multiple lines. | |||
| 26359 | 26382 | ||
| 26360 | \(fn &optional ARG)" t nil) | 26383 | \(fn &optional ARG)" t nil) |
| 26361 | 26384 | ||
| 26362 | (autoload (quote table-query-dimension) "table" "\ | 26385 | (autoload 'table-query-dimension "table" "\ |
| 26363 | Return the dimension of the current cell and the current table. | 26386 | Return the dimension of the current cell and the current table. |
| 26364 | The result is a list (cw ch tw th c r cells) where cw is the cell | 26387 | The result is a list (cw ch tw th c r cells) where cw is the cell |
| 26365 | width, ch is the cell height, tw is the table width, th is the table | 26388 | width, ch is the cell height, tw is the table width, th is the table |
| @@ -26373,7 +26396,7 @@ WHERE is provided the cell and table at that location is reported. | |||
| 26373 | 26396 | ||
| 26374 | \(fn &optional WHERE)" t nil) | 26397 | \(fn &optional WHERE)" t nil) |
| 26375 | 26398 | ||
| 26376 | (autoload (quote table-generate-source) "table" "\ | 26399 | (autoload 'table-generate-source "table" "\ |
| 26377 | Generate source of the current table in the specified language. | 26400 | Generate source of the current table in the specified language. |
| 26378 | LANGUAGE is a symbol that specifies the language to describe the | 26401 | LANGUAGE is a symbol that specifies the language to describe the |
| 26379 | structure of the table. It must be either 'html, 'latex or 'cals. | 26402 | structure of the table. It must be either 'html, 'latex or 'cals. |
| @@ -26401,7 +26424,7 @@ CALS (DocBook DTD): | |||
| 26401 | 26424 | ||
| 26402 | \(fn LANGUAGE &optional DEST-BUFFER CAPTION)" t nil) | 26425 | \(fn LANGUAGE &optional DEST-BUFFER CAPTION)" t nil) |
| 26403 | 26426 | ||
| 26404 | (autoload (quote table-insert-sequence) "table" "\ | 26427 | (autoload 'table-insert-sequence "table" "\ |
| 26405 | Travel cells forward while inserting a specified sequence string in each cell. | 26428 | Travel cells forward while inserting a specified sequence string in each cell. |
| 26406 | STR is the base string from which the sequence starts. When STR is an | 26429 | STR is the base string from which the sequence starts. When STR is an |
| 26407 | empty string then each cell content is erased. When STR ends with | 26430 | empty string then each cell content is erased. When STR ends with |
| @@ -26438,7 +26461,7 @@ Example: | |||
| 26438 | 26461 | ||
| 26439 | \(fn STR N INCREMENT INTERVAL JUSTIFY)" t nil) | 26462 | \(fn STR N INCREMENT INTERVAL JUSTIFY)" t nil) |
| 26440 | 26463 | ||
| 26441 | (autoload (quote table-delete-row) "table" "\ | 26464 | (autoload 'table-delete-row "table" "\ |
| 26442 | Delete N row(s) of cells. | 26465 | Delete N row(s) of cells. |
| 26443 | Delete N rows of cells from current row. The current row is the row | 26466 | Delete N rows of cells from current row. The current row is the row |
| 26444 | contains the current cell where point is located. Each row must | 26467 | contains the current cell where point is located. Each row must |
| @@ -26446,7 +26469,7 @@ consists from cells of same height. | |||
| 26446 | 26469 | ||
| 26447 | \(fn N)" t nil) | 26470 | \(fn N)" t nil) |
| 26448 | 26471 | ||
| 26449 | (autoload (quote table-delete-column) "table" "\ | 26472 | (autoload 'table-delete-column "table" "\ |
| 26450 | Delete N column(s) of cells. | 26473 | Delete N column(s) of cells. |
| 26451 | Delete N columns of cells from current column. The current column is | 26474 | Delete N columns of cells from current column. The current column is |
| 26452 | the column contains the current cell where point is located. Each | 26475 | the column contains the current cell where point is located. Each |
| @@ -26454,7 +26477,7 @@ column must consists from cells of same width. | |||
| 26454 | 26477 | ||
| 26455 | \(fn N)" t nil) | 26478 | \(fn N)" t nil) |
| 26456 | 26479 | ||
| 26457 | (autoload (quote table-capture) "table" "\ | 26480 | (autoload 'table-capture "table" "\ |
| 26458 | Convert plain text into a table by capturing the text in the region. | 26481 | Convert plain text into a table by capturing the text in the region. |
| 26459 | Create a table with the text in region as cell contents. BEG and END | 26482 | Create a table with the text in region as cell contents. BEG and END |
| 26460 | specify the region. The text in the region is replaced with a table. | 26483 | specify the region. The text in the region is replaced with a table. |
| @@ -26567,7 +26590,7 @@ companion command to `table-capture' this way. | |||
| 26567 | 26590 | ||
| 26568 | \(fn BEG END &optional COL-DELIM-REGEXP ROW-DELIM-REGEXP JUSTIFY MIN-CELL-WIDTH COLUMNS)" t nil) | 26591 | \(fn BEG END &optional COL-DELIM-REGEXP ROW-DELIM-REGEXP JUSTIFY MIN-CELL-WIDTH COLUMNS)" t nil) |
| 26569 | 26592 | ||
| 26570 | (autoload (quote table-release) "table" "\ | 26593 | (autoload 'table-release "table" "\ |
| 26571 | Convert a table into plain text by removing the frame from a table. | 26594 | Convert a table into plain text by removing the frame from a table. |
| 26572 | Remove the frame from a table and inactivate the table. This command | 26595 | Remove the frame from a table and inactivate the table. This command |
| 26573 | converts a table into plain text without frames. It is a companion to | 26596 | converts a table into plain text without frames. It is a companion to |
| @@ -26577,25 +26600,25 @@ converts a table into plain text without frames. It is a companion to | |||
| 26577 | 26600 | ||
| 26578 | ;;;*** | 26601 | ;;;*** |
| 26579 | 26602 | ||
| 26580 | ;;;### (autoloads (talk talk-connect) "talk" "talk.el" (18104 24740)) | 26603 | ;;;### (autoloads (talk talk-connect) "talk" "talk.el" (18133 2197)) |
| 26581 | ;;; Generated autoloads from talk.el | 26604 | ;;; Generated autoloads from talk.el |
| 26582 | 26605 | ||
| 26583 | (autoload (quote talk-connect) "talk" "\ | 26606 | (autoload 'talk-connect "talk" "\ |
| 26584 | Connect to display DISPLAY for the Emacs talk group. | 26607 | Connect to display DISPLAY for the Emacs talk group. |
| 26585 | 26608 | ||
| 26586 | \(fn DISPLAY)" t nil) | 26609 | \(fn DISPLAY)" t nil) |
| 26587 | 26610 | ||
| 26588 | (autoload (quote talk) "talk" "\ | 26611 | (autoload 'talk "talk" "\ |
| 26589 | Connect to the Emacs talk group from the current X display or tty frame. | 26612 | Connect to the Emacs talk group from the current X display or tty frame. |
| 26590 | 26613 | ||
| 26591 | \(fn)" t nil) | 26614 | \(fn)" t nil) |
| 26592 | 26615 | ||
| 26593 | ;;;*** | 26616 | ;;;*** |
| 26594 | 26617 | ||
| 26595 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (18104 24740)) | 26618 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (18202 3996)) |
| 26596 | ;;; Generated autoloads from tar-mode.el | 26619 | ;;; Generated autoloads from tar-mode.el |
| 26597 | 26620 | ||
| 26598 | (autoload (quote tar-mode) "tar-mode" "\ | 26621 | (autoload 'tar-mode "tar-mode" "\ |
| 26599 | Major mode for viewing a tar file as a dired-like listing of its contents. | 26622 | Major mode for viewing a tar file as a dired-like listing of its contents. |
| 26600 | You can move around using the usual cursor motion commands. | 26623 | You can move around using the usual cursor motion commands. |
| 26601 | Letters no longer insert themselves. | 26624 | Letters no longer insert themselves. |
| @@ -26616,10 +26639,10 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. | |||
| 26616 | ;;;*** | 26639 | ;;;*** |
| 26617 | 26640 | ||
| 26618 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" | 26641 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" |
| 26619 | ;;;;;; "progmodes/tcl.el" (18104 24769)) | 26642 | ;;;;;; "progmodes/tcl.el" (18120 34753)) |
| 26620 | ;;; Generated autoloads from progmodes/tcl.el | 26643 | ;;; Generated autoloads from progmodes/tcl.el |
| 26621 | 26644 | ||
| 26622 | (autoload (quote tcl-mode) "tcl" "\ | 26645 | (autoload 'tcl-mode "tcl" "\ |
| 26623 | Major mode for editing Tcl code. | 26646 | Major mode for editing Tcl code. |
| 26624 | Expression and list commands understand all Tcl brackets. | 26647 | Expression and list commands understand all Tcl brackets. |
| 26625 | Tab indents for Tcl code. | 26648 | Tab indents for Tcl code. |
| @@ -26652,14 +26675,14 @@ Commands: | |||
| 26652 | 26675 | ||
| 26653 | \(fn)" t nil) | 26676 | \(fn)" t nil) |
| 26654 | 26677 | ||
| 26655 | (autoload (quote inferior-tcl) "tcl" "\ | 26678 | (autoload 'inferior-tcl "tcl" "\ |
| 26656 | Run inferior Tcl process. | 26679 | Run inferior Tcl process. |
| 26657 | Prefix arg means enter program name interactively. | 26680 | Prefix arg means enter program name interactively. |
| 26658 | See documentation for function `inferior-tcl-mode' for more information. | 26681 | See documentation for function `inferior-tcl-mode' for more information. |
| 26659 | 26682 | ||
| 26660 | \(fn CMD)" t nil) | 26683 | \(fn CMD)" t nil) |
| 26661 | 26684 | ||
| 26662 | (autoload (quote tcl-help-on-word) "tcl" "\ | 26685 | (autoload 'tcl-help-on-word "tcl" "\ |
| 26663 | Get help on Tcl command. Default is word at point. | 26686 | Get help on Tcl command. Default is word at point. |
| 26664 | Prefix argument means invert sense of `tcl-use-smart-word-finder'. | 26687 | Prefix argument means invert sense of `tcl-use-smart-word-finder'. |
| 26665 | 26688 | ||
| @@ -26667,11 +26690,11 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. | |||
| 26667 | 26690 | ||
| 26668 | ;;;*** | 26691 | ;;;*** |
| 26669 | 26692 | ||
| 26670 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (18104 24760)) | 26693 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (18101 9759)) |
| 26671 | ;;; Generated autoloads from net/telnet.el | 26694 | ;;; Generated autoloads from net/telnet.el |
| 26672 | (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") | 26695 | (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") |
| 26673 | 26696 | ||
| 26674 | (autoload (quote telnet) "telnet" "\ | 26697 | (autoload 'telnet "telnet" "\ |
| 26675 | Open a network login connection to host named HOST (a string). | 26698 | Open a network login connection to host named HOST (a string). |
| 26676 | Optional arg PORT specifies alternative port to connect to. | 26699 | Optional arg PORT specifies alternative port to connect to. |
| 26677 | Interactively, use \\[universal-argument] prefix to be prompted for port number. | 26700 | Interactively, use \\[universal-argument] prefix to be prompted for port number. |
| @@ -26685,7 +26708,7 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 26685 | \(fn HOST &optional PORT)" t nil) | 26708 | \(fn HOST &optional PORT)" t nil) |
| 26686 | (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") | 26709 | (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") |
| 26687 | 26710 | ||
| 26688 | (autoload (quote rsh) "telnet" "\ | 26711 | (autoload 'rsh "telnet" "\ |
| 26689 | Open a network login connection to host named HOST (a string). | 26712 | Open a network login connection to host named HOST (a string). |
| 26690 | Communication with HOST is recorded in a buffer `*rsh-HOST*'. | 26713 | Communication with HOST is recorded in a buffer `*rsh-HOST*'. |
| 26691 | Normally input is edited in Emacs and sent a line at a time. | 26714 | Normally input is edited in Emacs and sent a line at a time. |
| @@ -26694,11 +26717,11 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 26694 | 26717 | ||
| 26695 | ;;;*** | 26718 | ;;;*** |
| 26696 | 26719 | ||
| 26697 | ;;;### (autoloads (ansi-term term make-term) "term" "term.el" (18104 | 26720 | ;;;### (autoloads (ansi-term term make-term) "term" "term.el" (18120 |
| 26698 | ;;;;;; 24740)) | 26721 | ;;;;;; 34749)) |
| 26699 | ;;; Generated autoloads from term.el | 26722 | ;;; Generated autoloads from term.el |
| 26700 | 26723 | ||
| 26701 | (autoload (quote make-term) "term" "\ | 26724 | (autoload 'make-term "term" "\ |
| 26702 | Make a term process NAME in a buffer, running PROGRAM. | 26725 | Make a term process NAME in a buffer, running PROGRAM. |
| 26703 | The name of the buffer is made by surrounding NAME with `*'s. | 26726 | The name of the buffer is made by surrounding NAME with `*'s. |
| 26704 | If there is already a running process in that buffer, it is not restarted. | 26727 | If there is already a running process in that buffer, it is not restarted. |
| @@ -26707,7 +26730,7 @@ the process. Any more args are arguments to PROGRAM. | |||
| 26707 | 26730 | ||
| 26708 | \(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) | 26731 | \(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil) |
| 26709 | 26732 | ||
| 26710 | (autoload (quote term) "term" "\ | 26733 | (autoload 'term "term" "\ |
| 26711 | Start a terminal-emulator in a new buffer. | 26734 | Start a terminal-emulator in a new buffer. |
| 26712 | The buffer is in Term mode; see `term-mode' for the | 26735 | The buffer is in Term mode; see `term-mode' for the |
| 26713 | commands to use in that buffer. | 26736 | commands to use in that buffer. |
| @@ -26716,18 +26739,18 @@ commands to use in that buffer. | |||
| 26716 | 26739 | ||
| 26717 | \(fn PROGRAM)" t nil) | 26740 | \(fn PROGRAM)" t nil) |
| 26718 | 26741 | ||
| 26719 | (autoload (quote ansi-term) "term" "\ | 26742 | (autoload 'ansi-term "term" "\ |
| 26720 | Start a terminal-emulator in a new buffer. | 26743 | Start a terminal-emulator in a new buffer. |
| 26721 | 26744 | ||
| 26722 | \(fn PROGRAM &optional NEW-BUFFER-NAME)" t nil) | 26745 | \(fn PROGRAM &optional NEW-BUFFER-NAME)" t nil) |
| 26723 | 26746 | ||
| 26724 | ;;;*** | 26747 | ;;;*** |
| 26725 | 26748 | ||
| 26726 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (18104 | 26749 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (18088 |
| 26727 | ;;;;;; 24740)) | 26750 | ;;;;;; 55090)) |
| 26728 | ;;; Generated autoloads from terminal.el | 26751 | ;;; Generated autoloads from terminal.el |
| 26729 | 26752 | ||
| 26730 | (autoload (quote terminal-emulator) "terminal" "\ | 26753 | (autoload 'terminal-emulator "terminal" "\ |
| 26731 | Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS. | 26754 | Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS. |
| 26732 | ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT. | 26755 | ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT. |
| 26733 | BUFFER's contents are made an image of the display generated by that program, | 26756 | BUFFER's contents are made an image of the display generated by that program, |
| @@ -26761,20 +26784,20 @@ subprocess started. | |||
| 26761 | ;;;*** | 26784 | ;;;*** |
| 26762 | 26785 | ||
| 26763 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" | 26786 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" |
| 26764 | ;;;;;; (18104 24748)) | 26787 | ;;;;;; (18088 55096)) |
| 26765 | ;;; Generated autoloads from emacs-lisp/testcover.el | 26788 | ;;; Generated autoloads from emacs-lisp/testcover.el |
| 26766 | 26789 | ||
| 26767 | (autoload (quote testcover-this-defun) "testcover" "\ | 26790 | (autoload 'testcover-this-defun "testcover" "\ |
| 26768 | Start coverage on function under point. | 26791 | Start coverage on function under point. |
| 26769 | 26792 | ||
| 26770 | \(fn)" t nil) | 26793 | \(fn)" t nil) |
| 26771 | 26794 | ||
| 26772 | ;;;*** | 26795 | ;;;*** |
| 26773 | 26796 | ||
| 26774 | ;;;### (autoloads (tetris) "tetris" "play/tetris.el" (18104 24762)) | 26797 | ;;;### (autoloads (tetris) "tetris" "play/tetris.el" (18088 55114)) |
| 26775 | ;;; Generated autoloads from play/tetris.el | 26798 | ;;; Generated autoloads from play/tetris.el |
| 26776 | 26799 | ||
| 26777 | (autoload (quote tetris) "tetris" "\ | 26800 | (autoload 'tetris "tetris" "\ |
| 26778 | Play the Tetris game. | 26801 | Play the Tetris game. |
| 26779 | Shapes drop from the top of the screen, and the user has to move and | 26802 | Shapes drop from the top of the screen, and the user has to move and |
| 26780 | rotate the shape to fit in with those at the bottom of the screen so | 26803 | rotate the shape to fit in with those at the bottom of the screen so |
| @@ -26802,13 +26825,13 @@ tetris-mode keybindings: | |||
| 26802 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command | 26825 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command |
| 26803 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp | 26826 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp |
| 26804 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" | 26827 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" |
| 26805 | ;;;;;; (18104 24772)) | 26828 | ;;;;;; (18211 32385)) |
| 26806 | ;;; Generated autoloads from textmodes/tex-mode.el | 26829 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 26807 | 26830 | ||
| 26808 | (defvar tex-shell-file-name nil "\ | 26831 | (defvar tex-shell-file-name nil "\ |
| 26809 | *If non-nil, the shell file name to run in the subshell used to run TeX.") | 26832 | *If non-nil, the shell file name to run in the subshell used to run TeX.") |
| 26810 | 26833 | ||
| 26811 | (custom-autoload (quote tex-shell-file-name) "tex-mode" t) | 26834 | (custom-autoload 'tex-shell-file-name "tex-mode" t) |
| 26812 | 26835 | ||
| 26813 | (defvar tex-directory "." "\ | 26836 | (defvar tex-directory "." "\ |
| 26814 | *Directory in which temporary files are written. | 26837 | *Directory in which temporary files are written. |
| @@ -26816,7 +26839,7 @@ You can make this `/tmp' if your TEXINPUTS has no relative directories in it | |||
| 26816 | and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are | 26839 | and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are |
| 26817 | `\\input' commands with relative directories.") | 26840 | `\\input' commands with relative directories.") |
| 26818 | 26841 | ||
| 26819 | (custom-autoload (quote tex-directory) "tex-mode" t) | 26842 | (custom-autoload 'tex-directory "tex-mode" t) |
| 26820 | 26843 | ||
| 26821 | (defvar tex-first-line-header-regexp nil "\ | 26844 | (defvar tex-first-line-header-regexp nil "\ |
| 26822 | Regexp for matching a first line which `tex-region' should include. | 26845 | Regexp for matching a first line which `tex-region' should include. |
| @@ -26824,40 +26847,40 @@ If this is non-nil, it should be a regular expression string; | |||
| 26824 | if it matches the first line of the file, | 26847 | if it matches the first line of the file, |
| 26825 | `tex-region' always includes the first line in the TeX run.") | 26848 | `tex-region' always includes the first line in the TeX run.") |
| 26826 | 26849 | ||
| 26827 | (custom-autoload (quote tex-first-line-header-regexp) "tex-mode" t) | 26850 | (custom-autoload 'tex-first-line-header-regexp "tex-mode" t) |
| 26828 | 26851 | ||
| 26829 | (defvar tex-main-file nil "\ | 26852 | (defvar tex-main-file nil "\ |
| 26830 | *The main TeX source file which includes this buffer's file. | 26853 | *The main TeX source file which includes this buffer's file. |
| 26831 | The command `tex-file' runs TeX on the file specified by `tex-main-file' | 26854 | The command `tex-file' runs TeX on the file specified by `tex-main-file' |
| 26832 | if the variable is non-nil.") | 26855 | if the variable is non-nil.") |
| 26833 | 26856 | ||
| 26834 | (custom-autoload (quote tex-main-file) "tex-mode" t) | 26857 | (custom-autoload 'tex-main-file "tex-mode" t) |
| 26835 | 26858 | ||
| 26836 | (defvar tex-offer-save t "\ | 26859 | (defvar tex-offer-save t "\ |
| 26837 | *If non-nil, ask about saving modified buffers before \\[tex-file] is run.") | 26860 | *If non-nil, ask about saving modified buffers before \\[tex-file] is run.") |
| 26838 | 26861 | ||
| 26839 | (custom-autoload (quote tex-offer-save) "tex-mode" t) | 26862 | (custom-autoload 'tex-offer-save "tex-mode" t) |
| 26840 | 26863 | ||
| 26841 | (defvar tex-run-command "tex" "\ | 26864 | (defvar tex-run-command "tex" "\ |
| 26842 | *Command used to run TeX subjob. | 26865 | *Command used to run TeX subjob. |
| 26843 | TeX Mode sets `tex-command' to this string. | 26866 | TeX Mode sets `tex-command' to this string. |
| 26844 | See the documentation of that variable.") | 26867 | See the documentation of that variable.") |
| 26845 | 26868 | ||
| 26846 | (custom-autoload (quote tex-run-command) "tex-mode" t) | 26869 | (custom-autoload 'tex-run-command "tex-mode" t) |
| 26847 | 26870 | ||
| 26848 | (defvar latex-run-command "latex" "\ | 26871 | (defvar latex-run-command "latex" "\ |
| 26849 | *Command used to run LaTeX subjob. | 26872 | *Command used to run LaTeX subjob. |
| 26850 | LaTeX Mode sets `tex-command' to this string. | 26873 | LaTeX Mode sets `tex-command' to this string. |
| 26851 | See the documentation of that variable.") | 26874 | See the documentation of that variable.") |
| 26852 | 26875 | ||
| 26853 | (custom-autoload (quote latex-run-command) "tex-mode" t) | 26876 | (custom-autoload 'latex-run-command "tex-mode" t) |
| 26854 | 26877 | ||
| 26855 | (defvar slitex-run-command "slitex" "\ | 26878 | (defvar slitex-run-command "slitex" "\ |
| 26856 | *Command used to run SliTeX subjob. | 26879 | *Command used to run SliTeX subjob. |
| 26857 | SliTeX Mode sets `tex-command' to this string. | 26880 | SliTeX Mode sets `tex-command' to this string. |
| 26858 | See the documentation of that variable.") | 26881 | See the documentation of that variable.") |
| 26859 | 26882 | ||
| 26860 | (custom-autoload (quote slitex-run-command) "tex-mode" t) | 26883 | (custom-autoload 'slitex-run-command "tex-mode" t) |
| 26861 | 26884 | ||
| 26862 | (defvar tex-start-options "" "\ | 26885 | (defvar tex-start-options "" "\ |
| 26863 | *TeX options to use when starting TeX. | 26886 | *TeX options to use when starting TeX. |
| @@ -26865,34 +26888,34 @@ These immediately precede the commands in `tex-start-commands' | |||
| 26865 | and the input file name, with no separating space and are not shell-quoted. | 26888 | and the input file name, with no separating space and are not shell-quoted. |
| 26866 | If nil, TeX runs with no options. See the documentation of `tex-command'.") | 26889 | If nil, TeX runs with no options. See the documentation of `tex-command'.") |
| 26867 | 26890 | ||
| 26868 | (custom-autoload (quote tex-start-options) "tex-mode" t) | 26891 | (custom-autoload 'tex-start-options "tex-mode" t) |
| 26869 | 26892 | ||
| 26870 | (defvar tex-start-commands "\\nonstopmode\\input" "\ | 26893 | (defvar tex-start-commands "\\nonstopmode\\input" "\ |
| 26871 | *TeX commands to use when starting TeX. | 26894 | *TeX commands to use when starting TeX. |
| 26872 | They are shell-quoted and precede the input file name, with a separating space. | 26895 | They are shell-quoted and precede the input file name, with a separating space. |
| 26873 | If nil, no commands are used. See the documentation of `tex-command'.") | 26896 | If nil, no commands are used. See the documentation of `tex-command'.") |
| 26874 | 26897 | ||
| 26875 | (custom-autoload (quote tex-start-commands) "tex-mode" t) | 26898 | (custom-autoload 'tex-start-commands "tex-mode" t) |
| 26876 | 26899 | ||
| 26877 | (defvar latex-block-names nil "\ | 26900 | (defvar latex-block-names nil "\ |
| 26878 | *User defined LaTeX block names. | 26901 | *User defined LaTeX block names. |
| 26879 | Combined with `latex-standard-block-names' for minibuffer completion.") | 26902 | Combined with `latex-standard-block-names' for minibuffer completion.") |
| 26880 | 26903 | ||
| 26881 | (custom-autoload (quote latex-block-names) "tex-mode" t) | 26904 | (custom-autoload 'latex-block-names "tex-mode" t) |
| 26882 | 26905 | ||
| 26883 | (defvar tex-bibtex-command "bibtex" "\ | 26906 | (defvar tex-bibtex-command "bibtex" "\ |
| 26884 | *Command used by `tex-bibtex-file' to gather bibliographic data. | 26907 | *Command used by `tex-bibtex-file' to gather bibliographic data. |
| 26885 | If this string contains an asterisk (`*'), that is replaced by the file name; | 26908 | If this string contains an asterisk (`*'), that is replaced by the file name; |
| 26886 | otherwise, the file name, preceded by blank, is added at the end.") | 26909 | otherwise, the file name, preceded by blank, is added at the end.") |
| 26887 | 26910 | ||
| 26888 | (custom-autoload (quote tex-bibtex-command) "tex-mode" t) | 26911 | (custom-autoload 'tex-bibtex-command "tex-mode" t) |
| 26889 | 26912 | ||
| 26890 | (defvar tex-dvi-print-command "lpr -d" "\ | 26913 | (defvar tex-dvi-print-command "lpr -d" "\ |
| 26891 | *Command used by \\[tex-print] to print a .dvi file. | 26914 | *Command used by \\[tex-print] to print a .dvi file. |
| 26892 | If this string contains an asterisk (`*'), that is replaced by the file name; | 26915 | If this string contains an asterisk (`*'), that is replaced by the file name; |
| 26893 | otherwise, the file name, preceded by blank, is added at the end.") | 26916 | otherwise, the file name, preceded by blank, is added at the end.") |
| 26894 | 26917 | ||
| 26895 | (custom-autoload (quote tex-dvi-print-command) "tex-mode" t) | 26918 | (custom-autoload 'tex-dvi-print-command "tex-mode" t) |
| 26896 | 26919 | ||
| 26897 | (defvar tex-alt-dvi-print-command "lpr -d" "\ | 26920 | (defvar tex-alt-dvi-print-command "lpr -d" "\ |
| 26898 | *Command used by \\[tex-print] with a prefix arg to print a .dvi file. | 26921 | *Command used by \\[tex-print] with a prefix arg to print a .dvi file. |
| @@ -26909,9 +26932,9 @@ for example, | |||
| 26909 | would tell \\[tex-print] with a prefix argument to ask you which printer to | 26932 | would tell \\[tex-print] with a prefix argument to ask you which printer to |
| 26910 | use.") | 26933 | use.") |
| 26911 | 26934 | ||
| 26912 | (custom-autoload (quote tex-alt-dvi-print-command) "tex-mode" t) | 26935 | (custom-autoload 'tex-alt-dvi-print-command "tex-mode" t) |
| 26913 | 26936 | ||
| 26914 | (defvar tex-dvi-view-command (quote (cond ((eq window-system (quote x)) "xdvi") ((eq window-system (quote w32)) "yap") (t "dvi2tty * | cat -s"))) "\ | 26937 | (defvar tex-dvi-view-command '(cond ((eq window-system 'x) "xdvi") ((eq window-system 'w32) "yap") (t "dvi2tty * | cat -s")) "\ |
| 26915 | *Command used by \\[tex-view] to display a `.dvi' file. | 26938 | *Command used by \\[tex-view] to display a `.dvi' file. |
| 26916 | If it is a string, that specifies the command directly. | 26939 | If it is a string, that specifies the command directly. |
| 26917 | If this string contains an asterisk (`*'), that is replaced by the file name; | 26940 | If this string contains an asterisk (`*'), that is replaced by the file name; |
| @@ -26919,33 +26942,33 @@ otherwise, the file name, preceded by a space, is added at the end. | |||
| 26919 | 26942 | ||
| 26920 | If the value is a form, it is evaluated to get the command to use.") | 26943 | If the value is a form, it is evaluated to get the command to use.") |
| 26921 | 26944 | ||
| 26922 | (custom-autoload (quote tex-dvi-view-command) "tex-mode" t) | 26945 | (custom-autoload 'tex-dvi-view-command "tex-mode" t) |
| 26923 | 26946 | ||
| 26924 | (defvar tex-show-queue-command "lpq" "\ | 26947 | (defvar tex-show-queue-command "lpq" "\ |
| 26925 | *Command used by \\[tex-show-print-queue] to show the print queue. | 26948 | *Command used by \\[tex-show-print-queue] to show the print queue. |
| 26926 | Should show the queue(s) that \\[tex-print] puts jobs on.") | 26949 | Should show the queue(s) that \\[tex-print] puts jobs on.") |
| 26927 | 26950 | ||
| 26928 | (custom-autoload (quote tex-show-queue-command) "tex-mode" t) | 26951 | (custom-autoload 'tex-show-queue-command "tex-mode" t) |
| 26929 | 26952 | ||
| 26930 | (defvar tex-default-mode (quote latex-mode) "\ | 26953 | (defvar tex-default-mode 'latex-mode "\ |
| 26931 | *Mode to enter for a new file that might be either TeX or LaTeX. | 26954 | *Mode to enter for a new file that might be either TeX or LaTeX. |
| 26932 | This variable is used when it can't be determined whether the file | 26955 | This variable is used when it can't be determined whether the file |
| 26933 | is plain TeX or LaTeX or what because the file contains no commands. | 26956 | is plain TeX or LaTeX or what because the file contains no commands. |
| 26934 | Normally set to either `plain-tex-mode' or `latex-mode'.") | 26957 | Normally set to either `plain-tex-mode' or `latex-mode'.") |
| 26935 | 26958 | ||
| 26936 | (custom-autoload (quote tex-default-mode) "tex-mode" t) | 26959 | (custom-autoload 'tex-default-mode "tex-mode" t) |
| 26937 | 26960 | ||
| 26938 | (defvar tex-open-quote "``" "\ | 26961 | (defvar tex-open-quote "``" "\ |
| 26939 | *String inserted by typing \\[tex-insert-quote] to open a quotation.") | 26962 | *String inserted by typing \\[tex-insert-quote] to open a quotation.") |
| 26940 | 26963 | ||
| 26941 | (custom-autoload (quote tex-open-quote) "tex-mode" t) | 26964 | (custom-autoload 'tex-open-quote "tex-mode" t) |
| 26942 | 26965 | ||
| 26943 | (defvar tex-close-quote "''" "\ | 26966 | (defvar tex-close-quote "''" "\ |
| 26944 | *String inserted by typing \\[tex-insert-quote] to close a quotation.") | 26967 | *String inserted by typing \\[tex-insert-quote] to close a quotation.") |
| 26945 | 26968 | ||
| 26946 | (custom-autoload (quote tex-close-quote) "tex-mode" t) | 26969 | (custom-autoload 'tex-close-quote "tex-mode" t) |
| 26947 | 26970 | ||
| 26948 | (autoload (quote tex-mode) "tex-mode" "\ | 26971 | (autoload 'tex-mode "tex-mode" "\ |
| 26949 | Major mode for editing files of input for TeX, LaTeX, or SliTeX. | 26972 | Major mode for editing files of input for TeX, LaTeX, or SliTeX. |
| 26950 | Tries to determine (by looking at the beginning of the file) whether | 26973 | Tries to determine (by looking at the beginning of the file) whether |
| 26951 | this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode', | 26974 | this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode', |
| @@ -26955,13 +26978,13 @@ says which mode to use. | |||
| 26955 | 26978 | ||
| 26956 | \(fn)" t nil) | 26979 | \(fn)" t nil) |
| 26957 | 26980 | ||
| 26958 | (defalias (quote TeX-mode) (quote tex-mode)) | 26981 | (defalias 'TeX-mode 'tex-mode) |
| 26959 | 26982 | ||
| 26960 | (defalias (quote plain-TeX-mode) (quote plain-tex-mode)) | 26983 | (defalias 'plain-TeX-mode 'plain-tex-mode) |
| 26961 | 26984 | ||
| 26962 | (defalias (quote LaTeX-mode) (quote latex-mode)) | 26985 | (defalias 'LaTeX-mode 'latex-mode) |
| 26963 | 26986 | ||
| 26964 | (autoload (quote plain-tex-mode) "tex-mode" "\ | 26987 | (autoload 'plain-tex-mode "tex-mode" "\ |
| 26965 | Major mode for editing files of input for plain TeX. | 26988 | Major mode for editing files of input for plain TeX. |
| 26966 | Makes $ and } display the characters they match. | 26989 | Makes $ and } display the characters they match. |
| 26967 | Makes \" insert `` when it seems to be the beginning of a quotation, | 26990 | Makes \" insert `` when it seems to be the beginning of a quotation, |
| @@ -27004,7 +27027,7 @@ special subshell is initiated, the hook `tex-shell-hook' is run. | |||
| 27004 | 27027 | ||
| 27005 | \(fn)" t nil) | 27028 | \(fn)" t nil) |
| 27006 | 27029 | ||
| 27007 | (autoload (quote latex-mode) "tex-mode" "\ | 27030 | (autoload 'latex-mode "tex-mode" "\ |
| 27008 | Major mode for editing files of input for LaTeX. | 27031 | Major mode for editing files of input for LaTeX. |
| 27009 | Makes $ and } display the characters they match. | 27032 | Makes $ and } display the characters they match. |
| 27010 | Makes \" insert `` when it seems to be the beginning of a quotation, | 27033 | Makes \" insert `` when it seems to be the beginning of a quotation, |
| @@ -27047,7 +27070,7 @@ subshell is initiated, `tex-shell-hook' is run. | |||
| 27047 | 27070 | ||
| 27048 | \(fn)" t nil) | 27071 | \(fn)" t nil) |
| 27049 | 27072 | ||
| 27050 | (autoload (quote slitex-mode) "tex-mode" "\ | 27073 | (autoload 'slitex-mode "tex-mode" "\ |
| 27051 | Major mode for editing files of input for SliTeX. | 27074 | Major mode for editing files of input for SliTeX. |
| 27052 | Makes $ and } display the characters they match. | 27075 | Makes $ and } display the characters they match. |
| 27053 | Makes \" insert `` when it seems to be the beginning of a quotation, | 27076 | Makes \" insert `` when it seems to be the beginning of a quotation, |
| @@ -27091,12 +27114,12 @@ Entering SliTeX mode runs the hook `text-mode-hook', then the hook | |||
| 27091 | 27114 | ||
| 27092 | \(fn)" t nil) | 27115 | \(fn)" t nil) |
| 27093 | 27116 | ||
| 27094 | (autoload (quote tex-start-shell) "tex-mode" "\ | 27117 | (autoload 'tex-start-shell "tex-mode" "\ |
| 27095 | Not documented | 27118 | Not documented |
| 27096 | 27119 | ||
| 27097 | \(fn)" nil nil) | 27120 | \(fn)" nil nil) |
| 27098 | 27121 | ||
| 27099 | (autoload (quote doctex-mode) "tex-mode" "\ | 27122 | (autoload 'doctex-mode "tex-mode" "\ |
| 27100 | Major mode to edit DocTeX files. | 27123 | Major mode to edit DocTeX files. |
| 27101 | 27124 | ||
| 27102 | \(fn)" t nil) | 27125 | \(fn)" t nil) |
| @@ -27104,10 +27127,10 @@ Major mode to edit DocTeX files. | |||
| 27104 | ;;;*** | 27127 | ;;;*** |
| 27105 | 27128 | ||
| 27106 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) | 27129 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) |
| 27107 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (18104 24773)) | 27130 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (18130 62049)) |
| 27108 | ;;; Generated autoloads from textmodes/texinfmt.el | 27131 | ;;; Generated autoloads from textmodes/texinfmt.el |
| 27109 | 27132 | ||
| 27110 | (autoload (quote texinfo-format-buffer) "texinfmt" "\ | 27133 | (autoload 'texinfo-format-buffer "texinfmt" "\ |
| 27111 | Process the current buffer as texinfo code, into an Info file. | 27134 | Process the current buffer as texinfo code, into an Info file. |
| 27112 | The Info file output is generated in a buffer visiting the Info file | 27135 | The Info file output is generated in a buffer visiting the Info file |
| 27113 | name specified in the @setfilename command. | 27136 | name specified in the @setfilename command. |
| @@ -27118,7 +27141,7 @@ and don't split the file if large. You can use `Info-tagify' and | |||
| 27118 | 27141 | ||
| 27119 | \(fn &optional NOSPLIT)" t nil) | 27142 | \(fn &optional NOSPLIT)" t nil) |
| 27120 | 27143 | ||
| 27121 | (autoload (quote texinfo-format-region) "texinfmt" "\ | 27144 | (autoload 'texinfo-format-region "texinfmt" "\ |
| 27122 | Convert the current region of the Texinfo file to Info format. | 27145 | Convert the current region of the Texinfo file to Info format. |
| 27123 | This lets you see what that part of the file will look like in Info. | 27146 | This lets you see what that part of the file will look like in Info. |
| 27124 | The command is bound to \\[texinfo-format-region]. The text that is | 27147 | The command is bound to \\[texinfo-format-region]. The text that is |
| @@ -27126,7 +27149,7 @@ converted to Info is stored in a temporary buffer. | |||
| 27126 | 27149 | ||
| 27127 | \(fn REGION-BEGINNING REGION-END)" t nil) | 27150 | \(fn REGION-BEGINNING REGION-END)" t nil) |
| 27128 | 27151 | ||
| 27129 | (autoload (quote texi2info) "texinfmt" "\ | 27152 | (autoload 'texi2info "texinfmt" "\ |
| 27130 | Convert the current buffer (written in Texinfo code) into an Info file. | 27153 | Convert the current buffer (written in Texinfo code) into an Info file. |
| 27131 | The Info file output is generated in a buffer visiting the Info file | 27154 | The Info file output is generated in a buffer visiting the Info file |
| 27132 | names specified in the @setfilename command. | 27155 | names specified in the @setfilename command. |
| @@ -27144,20 +27167,20 @@ if large. You can use `Info-split' to do this manually. | |||
| 27144 | ;;;*** | 27167 | ;;;*** |
| 27145 | 27168 | ||
| 27146 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) | 27169 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) |
| 27147 | ;;;;;; "texinfo" "textmodes/texinfo.el" (18104 24773)) | 27170 | ;;;;;; "texinfo" "textmodes/texinfo.el" (18149 22003)) |
| 27148 | ;;; Generated autoloads from textmodes/texinfo.el | 27171 | ;;; Generated autoloads from textmodes/texinfo.el |
| 27149 | 27172 | ||
| 27150 | (defvar texinfo-open-quote "``" "\ | 27173 | (defvar texinfo-open-quote "``" "\ |
| 27151 | *String inserted by typing \\[texinfo-insert-quote] to open a quotation.") | 27174 | String inserted by typing \\[texinfo-insert-quote] to open a quotation.") |
| 27152 | 27175 | ||
| 27153 | (custom-autoload (quote texinfo-open-quote) "texinfo" t) | 27176 | (custom-autoload 'texinfo-open-quote "texinfo" t) |
| 27154 | 27177 | ||
| 27155 | (defvar texinfo-close-quote "''" "\ | 27178 | (defvar texinfo-close-quote "''" "\ |
| 27156 | *String inserted by typing \\[texinfo-insert-quote] to close a quotation.") | 27179 | String inserted by typing \\[texinfo-insert-quote] to close a quotation.") |
| 27157 | 27180 | ||
| 27158 | (custom-autoload (quote texinfo-close-quote) "texinfo" t) | 27181 | (custom-autoload 'texinfo-close-quote "texinfo" t) |
| 27159 | 27182 | ||
| 27160 | (autoload (quote texinfo-mode) "texinfo" "\ | 27183 | (autoload 'texinfo-mode "texinfo" "\ |
| 27161 | Major mode for editing Texinfo files. | 27184 | Major mode for editing Texinfo files. |
| 27162 | 27185 | ||
| 27163 | It has these extra commands: | 27186 | It has these extra commands: |
| @@ -27231,32 +27254,32 @@ value of `texinfo-mode-hook'. | |||
| 27231 | ;;;### (autoloads (thai-auto-composition-mode thai-composition-function | 27254 | ;;;### (autoloads (thai-auto-composition-mode thai-composition-function |
| 27232 | ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string | 27255 | ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string |
| 27233 | ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" | 27256 | ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" |
| 27234 | ;;;;;; (18104 24758)) | 27257 | ;;;;;; (18088 55109)) |
| 27235 | ;;; Generated autoloads from language/thai-util.el | 27258 | ;;; Generated autoloads from language/thai-util.el |
| 27236 | 27259 | ||
| 27237 | (autoload (quote thai-compose-region) "thai-util" "\ | 27260 | (autoload 'thai-compose-region "thai-util" "\ |
| 27238 | Compose Thai characters in the region. | 27261 | Compose Thai characters in the region. |
| 27239 | When called from a program, expects two arguments, | 27262 | When called from a program, expects two arguments, |
| 27240 | positions (integers or markers) specifying the region. | 27263 | positions (integers or markers) specifying the region. |
| 27241 | 27264 | ||
| 27242 | \(fn BEG END)" t nil) | 27265 | \(fn BEG END)" t nil) |
| 27243 | 27266 | ||
| 27244 | (autoload (quote thai-compose-string) "thai-util" "\ | 27267 | (autoload 'thai-compose-string "thai-util" "\ |
| 27245 | Compose Thai characters in STRING and return the resulting string. | 27268 | Compose Thai characters in STRING and return the resulting string. |
| 27246 | 27269 | ||
| 27247 | \(fn STRING)" nil nil) | 27270 | \(fn STRING)" nil nil) |
| 27248 | 27271 | ||
| 27249 | (autoload (quote thai-compose-buffer) "thai-util" "\ | 27272 | (autoload 'thai-compose-buffer "thai-util" "\ |
| 27250 | Compose Thai characters in the current buffer. | 27273 | Compose Thai characters in the current buffer. |
| 27251 | 27274 | ||
| 27252 | \(fn)" t nil) | 27275 | \(fn)" t nil) |
| 27253 | 27276 | ||
| 27254 | (autoload (quote thai-post-read-conversion) "thai-util" "\ | 27277 | (autoload 'thai-post-read-conversion "thai-util" "\ |
| 27255 | Not documented | 27278 | Not documented |
| 27256 | 27279 | ||
| 27257 | \(fn LEN)" nil nil) | 27280 | \(fn LEN)" nil nil) |
| 27258 | 27281 | ||
| 27259 | (autoload (quote thai-composition-function) "thai-util" "\ | 27282 | (autoload 'thai-composition-function "thai-util" "\ |
| 27260 | Compose Thai text in the region FROM and TO. | 27283 | Compose Thai text in the region FROM and TO. |
| 27261 | The text matches the regular expression PATTERN. | 27284 | The text matches the regular expression PATTERN. |
| 27262 | Optional 4th argument STRING, if non-nil, is a string containing text | 27285 | Optional 4th argument STRING, if non-nil, is a string containing text |
| @@ -27266,7 +27289,7 @@ The return value is number of composed characters. | |||
| 27266 | 27289 | ||
| 27267 | \(fn FROM TO PATTERN &optional STRING)" nil nil) | 27290 | \(fn FROM TO PATTERN &optional STRING)" nil nil) |
| 27268 | 27291 | ||
| 27269 | (autoload (quote thai-auto-composition-mode) "thai-util" "\ | 27292 | (autoload 'thai-auto-composition-mode "thai-util" "\ |
| 27270 | Minor mode for automatically correct Thai character composition. | 27293 | Minor mode for automatically correct Thai character composition. |
| 27271 | 27294 | ||
| 27272 | \(fn &optional ARG)" t nil) | 27295 | \(fn &optional ARG)" t nil) |
| @@ -27275,15 +27298,15 @@ Minor mode for automatically correct Thai character composition. | |||
| 27275 | 27298 | ||
| 27276 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point | 27299 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point |
| 27277 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) | 27300 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) |
| 27278 | ;;;;;; "thingatpt" "thingatpt.el" (18104 24740)) | 27301 | ;;;;;; "thingatpt" "thingatpt.el" (18088 55090)) |
| 27279 | ;;; Generated autoloads from thingatpt.el | 27302 | ;;; Generated autoloads from thingatpt.el |
| 27280 | 27303 | ||
| 27281 | (autoload (quote forward-thing) "thingatpt" "\ | 27304 | (autoload 'forward-thing "thingatpt" "\ |
| 27282 | Move forward to the end of the Nth next THING. | 27305 | Move forward to the end of the Nth next THING. |
| 27283 | 27306 | ||
| 27284 | \(fn THING &optional N)" nil nil) | 27307 | \(fn THING &optional N)" nil nil) |
| 27285 | 27308 | ||
| 27286 | (autoload (quote bounds-of-thing-at-point) "thingatpt" "\ | 27309 | (autoload 'bounds-of-thing-at-point "thingatpt" "\ |
| 27287 | Determine the start and end buffer locations for the THING at point. | 27310 | Determine the start and end buffer locations for the THING at point. |
| 27288 | THING is a symbol which specifies the kind of syntactic entity you want. | 27311 | THING is a symbol which specifies the kind of syntactic entity you want. |
| 27289 | Possibilities include `symbol', `list', `sexp', `defun', `filename', `url', | 27312 | Possibilities include `symbol', `list', `sexp', `defun', `filename', `url', |
| @@ -27297,7 +27320,7 @@ of the textual entity that was found. | |||
| 27297 | 27320 | ||
| 27298 | \(fn THING)" nil nil) | 27321 | \(fn THING)" nil nil) |
| 27299 | 27322 | ||
| 27300 | (autoload (quote thing-at-point) "thingatpt" "\ | 27323 | (autoload 'thing-at-point "thingatpt" "\ |
| 27301 | Return the THING at point. | 27324 | Return the THING at point. |
| 27302 | THING is a symbol which specifies the kind of syntactic entity you want. | 27325 | THING is a symbol which specifies the kind of syntactic entity you want. |
| 27303 | Possibilities include `symbol', `list', `sexp', `defun', `filename', `url', | 27326 | Possibilities include `symbol', `list', `sexp', `defun', `filename', `url', |
| @@ -27308,22 +27331,22 @@ a symbol as a valid THING. | |||
| 27308 | 27331 | ||
| 27309 | \(fn THING)" nil nil) | 27332 | \(fn THING)" nil nil) |
| 27310 | 27333 | ||
| 27311 | (autoload (quote sexp-at-point) "thingatpt" "\ | 27334 | (autoload 'sexp-at-point "thingatpt" "\ |
| 27312 | Not documented | 27335 | Not documented |
| 27313 | 27336 | ||
| 27314 | \(fn)" nil nil) | 27337 | \(fn)" nil nil) |
| 27315 | 27338 | ||
| 27316 | (autoload (quote symbol-at-point) "thingatpt" "\ | 27339 | (autoload 'symbol-at-point "thingatpt" "\ |
| 27317 | Not documented | 27340 | Not documented |
| 27318 | 27341 | ||
| 27319 | \(fn)" nil nil) | 27342 | \(fn)" nil nil) |
| 27320 | 27343 | ||
| 27321 | (autoload (quote number-at-point) "thingatpt" "\ | 27344 | (autoload 'number-at-point "thingatpt" "\ |
| 27322 | Not documented | 27345 | Not documented |
| 27323 | 27346 | ||
| 27324 | \(fn)" nil nil) | 27347 | \(fn)" nil nil) |
| 27325 | 27348 | ||
| 27326 | (autoload (quote list-at-point) "thingatpt" "\ | 27349 | (autoload 'list-at-point "thingatpt" "\ |
| 27327 | Not documented | 27350 | Not documented |
| 27328 | 27351 | ||
| 27329 | \(fn)" nil nil) | 27352 | \(fn)" nil nil) |
| @@ -27332,34 +27355,34 @@ Not documented | |||
| 27332 | 27355 | ||
| 27333 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked | 27356 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked |
| 27334 | ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" | 27357 | ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" |
| 27335 | ;;;;;; (18104 24740)) | 27358 | ;;;;;; (18088 55090)) |
| 27336 | ;;; Generated autoloads from thumbs.el | 27359 | ;;; Generated autoloads from thumbs.el |
| 27337 | 27360 | ||
| 27338 | (autoload (quote thumbs-find-thumb) "thumbs" "\ | 27361 | (autoload 'thumbs-find-thumb "thumbs" "\ |
| 27339 | Display the thumbnail for IMG. | 27362 | Display the thumbnail for IMG. |
| 27340 | 27363 | ||
| 27341 | \(fn IMG)" t nil) | 27364 | \(fn IMG)" t nil) |
| 27342 | 27365 | ||
| 27343 | (autoload (quote thumbs-show-from-dir) "thumbs" "\ | 27366 | (autoload 'thumbs-show-from-dir "thumbs" "\ |
| 27344 | Make a preview buffer for all images in DIR. | 27367 | Make a preview buffer for all images in DIR. |
| 27345 | Optional argument REG to select file matching a regexp, | 27368 | Optional argument REG to select file matching a regexp, |
| 27346 | and SAME-WINDOW to show thumbs in the same window. | 27369 | and SAME-WINDOW to show thumbs in the same window. |
| 27347 | 27370 | ||
| 27348 | \(fn DIR &optional REG SAME-WINDOW)" t nil) | 27371 | \(fn DIR &optional REG SAME-WINDOW)" t nil) |
| 27349 | 27372 | ||
| 27350 | (autoload (quote thumbs-dired-show-marked) "thumbs" "\ | 27373 | (autoload 'thumbs-dired-show-marked "thumbs" "\ |
| 27351 | In dired, make a thumbs buffer with marked files. | 27374 | In dired, make a thumbs buffer with marked files. |
| 27352 | 27375 | ||
| 27353 | \(fn)" t nil) | 27376 | \(fn)" t nil) |
| 27354 | 27377 | ||
| 27355 | (autoload (quote thumbs-dired-show) "thumbs" "\ | 27378 | (autoload 'thumbs-dired-show "thumbs" "\ |
| 27356 | In dired, make a thumbs buffer with all files in current directory. | 27379 | In dired, make a thumbs buffer with all files in current directory. |
| 27357 | 27380 | ||
| 27358 | \(fn)" t nil) | 27381 | \(fn)" t nil) |
| 27359 | 27382 | ||
| 27360 | (defalias (quote thumbs) (quote thumbs-show-from-dir)) | 27383 | (defalias 'thumbs 'thumbs-show-from-dir) |
| 27361 | 27384 | ||
| 27362 | (autoload (quote thumbs-dired-setroot) "thumbs" "\ | 27385 | (autoload 'thumbs-dired-setroot "thumbs" "\ |
| 27363 | In dired, call the setroot program on the image at point. | 27386 | In dired, call the setroot program on the image at point. |
| 27364 | 27387 | ||
| 27365 | \(fn)" t nil) | 27388 | \(fn)" t nil) |
| @@ -27371,78 +27394,78 @@ In dired, call the setroot program on the image at point. | |||
| 27371 | ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region | 27394 | ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region |
| 27372 | ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan | 27395 | ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan |
| 27373 | ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" | 27396 | ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" |
| 27374 | ;;;;;; "language/tibet-util.el" (18104 24758)) | 27397 | ;;;;;; "language/tibet-util.el" (18088 55109)) |
| 27375 | ;;; Generated autoloads from language/tibet-util.el | 27398 | ;;; Generated autoloads from language/tibet-util.el |
| 27376 | 27399 | ||
| 27377 | (autoload (quote tibetan-char-p) "tibet-util" "\ | 27400 | (autoload 'tibetan-char-p "tibet-util" "\ |
| 27378 | Check if char CH is Tibetan character. | 27401 | Check if char CH is Tibetan character. |
| 27379 | Returns non-nil if CH is Tibetan. Otherwise, returns nil. | 27402 | Returns non-nil if CH is Tibetan. Otherwise, returns nil. |
| 27380 | 27403 | ||
| 27381 | \(fn CH)" nil nil) | 27404 | \(fn CH)" nil nil) |
| 27382 | 27405 | ||
| 27383 | (autoload (quote tibetan-tibetan-to-transcription) "tibet-util" "\ | 27406 | (autoload 'tibetan-tibetan-to-transcription "tibet-util" "\ |
| 27384 | Transcribe Tibetan string STR and return the corresponding Roman string. | 27407 | Transcribe Tibetan string STR and return the corresponding Roman string. |
| 27385 | 27408 | ||
| 27386 | \(fn STR)" nil nil) | 27409 | \(fn STR)" nil nil) |
| 27387 | 27410 | ||
| 27388 | (autoload (quote tibetan-transcription-to-tibetan) "tibet-util" "\ | 27411 | (autoload 'tibetan-transcription-to-tibetan "tibet-util" "\ |
| 27389 | Convert Tibetan Roman string STR to Tibetan character string. | 27412 | Convert Tibetan Roman string STR to Tibetan character string. |
| 27390 | The returned string has no composition information. | 27413 | The returned string has no composition information. |
| 27391 | 27414 | ||
| 27392 | \(fn STR)" nil nil) | 27415 | \(fn STR)" nil nil) |
| 27393 | 27416 | ||
| 27394 | (autoload (quote tibetan-compose-string) "tibet-util" "\ | 27417 | (autoload 'tibetan-compose-string "tibet-util" "\ |
| 27395 | Compose Tibetan string STR. | 27418 | Compose Tibetan string STR. |
| 27396 | 27419 | ||
| 27397 | \(fn STR)" nil nil) | 27420 | \(fn STR)" nil nil) |
| 27398 | 27421 | ||
| 27399 | (autoload (quote tibetan-compose-region) "tibet-util" "\ | 27422 | (autoload 'tibetan-compose-region "tibet-util" "\ |
| 27400 | Compose Tibetan text the region BEG and END. | 27423 | Compose Tibetan text the region BEG and END. |
| 27401 | 27424 | ||
| 27402 | \(fn BEG END)" t nil) | 27425 | \(fn BEG END)" t nil) |
| 27403 | 27426 | ||
| 27404 | (autoload (quote tibetan-decompose-region) "tibet-util" "\ | 27427 | (autoload 'tibetan-decompose-region "tibet-util" "\ |
| 27405 | Decompose Tibetan text in the region FROM and TO. | 27428 | Decompose Tibetan text in the region FROM and TO. |
| 27406 | This is different from decompose-region because precomposed Tibetan characters | 27429 | This is different from decompose-region because precomposed Tibetan characters |
| 27407 | are decomposed into normal Tibetan character sequences. | 27430 | are decomposed into normal Tibetan character sequences. |
| 27408 | 27431 | ||
| 27409 | \(fn FROM TO)" t nil) | 27432 | \(fn FROM TO)" t nil) |
| 27410 | 27433 | ||
| 27411 | (autoload (quote tibetan-decompose-string) "tibet-util" "\ | 27434 | (autoload 'tibetan-decompose-string "tibet-util" "\ |
| 27412 | Decompose Tibetan string STR. | 27435 | Decompose Tibetan string STR. |
| 27413 | This is different from decompose-string because precomposed Tibetan characters | 27436 | This is different from decompose-string because precomposed Tibetan characters |
| 27414 | are decomposed into normal Tibetan character sequences. | 27437 | are decomposed into normal Tibetan character sequences. |
| 27415 | 27438 | ||
| 27416 | \(fn STR)" nil nil) | 27439 | \(fn STR)" nil nil) |
| 27417 | 27440 | ||
| 27418 | (autoload (quote tibetan-composition-function) "tibet-util" "\ | 27441 | (autoload 'tibetan-composition-function "tibet-util" "\ |
| 27419 | Not documented | 27442 | Not documented |
| 27420 | 27443 | ||
| 27421 | \(fn FROM TO PATTERN &optional STRING)" nil nil) | 27444 | \(fn FROM TO PATTERN &optional STRING)" nil nil) |
| 27422 | 27445 | ||
| 27423 | (autoload (quote tibetan-decompose-buffer) "tibet-util" "\ | 27446 | (autoload 'tibetan-decompose-buffer "tibet-util" "\ |
| 27424 | Decomposes Tibetan characters in the buffer into their components. | 27447 | Decomposes Tibetan characters in the buffer into their components. |
| 27425 | See also the documentation of the function `tibetan-decompose-region'. | 27448 | See also the documentation of the function `tibetan-decompose-region'. |
| 27426 | 27449 | ||
| 27427 | \(fn)" t nil) | 27450 | \(fn)" t nil) |
| 27428 | 27451 | ||
| 27429 | (autoload (quote tibetan-compose-buffer) "tibet-util" "\ | 27452 | (autoload 'tibetan-compose-buffer "tibet-util" "\ |
| 27430 | Composes Tibetan character components in the buffer. | 27453 | Composes Tibetan character components in the buffer. |
| 27431 | See also docstring of the function tibetan-compose-region. | 27454 | See also docstring of the function tibetan-compose-region. |
| 27432 | 27455 | ||
| 27433 | \(fn)" t nil) | 27456 | \(fn)" t nil) |
| 27434 | 27457 | ||
| 27435 | (autoload (quote tibetan-post-read-conversion) "tibet-util" "\ | 27458 | (autoload 'tibetan-post-read-conversion "tibet-util" "\ |
| 27436 | Not documented | 27459 | Not documented |
| 27437 | 27460 | ||
| 27438 | \(fn LEN)" nil nil) | 27461 | \(fn LEN)" nil nil) |
| 27439 | 27462 | ||
| 27440 | (autoload (quote tibetan-pre-write-conversion) "tibet-util" "\ | 27463 | (autoload 'tibetan-pre-write-conversion "tibet-util" "\ |
| 27441 | Not documented | 27464 | Not documented |
| 27442 | 27465 | ||
| 27443 | \(fn FROM TO)" nil nil) | 27466 | \(fn FROM TO)" nil nil) |
| 27444 | 27467 | ||
| 27445 | (autoload (quote tibetan-pre-write-canonicalize-for-unicode) "tibet-util" "\ | 27468 | (autoload 'tibetan-pre-write-canonicalize-for-unicode "tibet-util" "\ |
| 27446 | Not documented | 27469 | Not documented |
| 27447 | 27470 | ||
| 27448 | \(fn FROM TO)" nil nil) | 27471 | \(fn FROM TO)" nil nil) |
| @@ -27450,10 +27473,10 @@ Not documented | |||
| 27450 | ;;;*** | 27473 | ;;;*** |
| 27451 | 27474 | ||
| 27452 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" | 27475 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" |
| 27453 | ;;;;;; (18104 24773)) | 27476 | ;;;;;; (18088 55121)) |
| 27454 | ;;; Generated autoloads from textmodes/tildify.el | 27477 | ;;; Generated autoloads from textmodes/tildify.el |
| 27455 | 27478 | ||
| 27456 | (autoload (quote tildify-region) "tildify" "\ | 27479 | (autoload 'tildify-region "tildify" "\ |
| 27457 | Add hard spaces in the region between BEG and END. | 27480 | Add hard spaces in the region between BEG and END. |
| 27458 | See variables `tildify-pattern-alist', `tildify-string-alist', and | 27481 | See variables `tildify-pattern-alist', `tildify-string-alist', and |
| 27459 | `tildify-ignored-environments-alist' for information about configuration | 27482 | `tildify-ignored-environments-alist' for information about configuration |
| @@ -27462,7 +27485,7 @@ This function performs no refilling of the changed text. | |||
| 27462 | 27485 | ||
| 27463 | \(fn BEG END)" t nil) | 27486 | \(fn BEG END)" t nil) |
| 27464 | 27487 | ||
| 27465 | (autoload (quote tildify-buffer) "tildify" "\ | 27488 | (autoload 'tildify-buffer "tildify" "\ |
| 27466 | Add hard spaces in the current buffer. | 27489 | Add hard spaces in the current buffer. |
| 27467 | See variables `tildify-pattern-alist', `tildify-string-alist', and | 27490 | See variables `tildify-pattern-alist', `tildify-string-alist', and |
| 27468 | `tildify-ignored-environments-alist' for information about configuration | 27491 | `tildify-ignored-environments-alist' for information about configuration |
| @@ -27473,16 +27496,16 @@ This function performs no refilling of the changed text. | |||
| 27473 | 27496 | ||
| 27474 | ;;;*** | 27497 | ;;;*** |
| 27475 | 27498 | ||
| 27476 | ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) | 27499 | ;;;### (autoloads (display-time-world display-time-mode display-time |
| 27477 | ;;;;;; "time" "time.el" (18104 24740)) | 27500 | ;;;;;; display-time-day-and-date) "time" "time.el" (18211 32385)) |
| 27478 | ;;; Generated autoloads from time.el | 27501 | ;;; Generated autoloads from time.el |
| 27479 | 27502 | ||
| 27480 | (defvar display-time-day-and-date nil "\ | 27503 | (defvar display-time-day-and-date nil "\ |
| 27481 | *Non-nil means \\[display-time] should display day and date as well as time.") | 27504 | *Non-nil means \\[display-time] should display day and date as well as time.") |
| 27482 | 27505 | ||
| 27483 | (custom-autoload (quote display-time-day-and-date) "time" t) | 27506 | (custom-autoload 'display-time-day-and-date "time" t) |
| 27484 | 27507 | ||
| 27485 | (autoload (quote display-time) "time" "\ | 27508 | (autoload 'display-time "time" "\ |
| 27486 | Enable display of time, load level, and mail flag in mode lines. | 27509 | Enable display of time, load level, and mail flag in mode lines. |
| 27487 | This display updates automatically every minute. | 27510 | This display updates automatically every minute. |
| 27488 | If `display-time-day-and-date' is non-nil, the current day and date | 27511 | If `display-time-day-and-date' is non-nil, the current day and date |
| @@ -27498,9 +27521,9 @@ Setting this variable directly does not take effect; | |||
| 27498 | either customize it (see the info node `Easy Customization') | 27521 | either customize it (see the info node `Easy Customization') |
| 27499 | or call the function `display-time-mode'.") | 27522 | or call the function `display-time-mode'.") |
| 27500 | 27523 | ||
| 27501 | (custom-autoload (quote display-time-mode) "time" nil) | 27524 | (custom-autoload 'display-time-mode "time" nil) |
| 27502 | 27525 | ||
| 27503 | (autoload (quote display-time-mode) "time" "\ | 27526 | (autoload 'display-time-mode "time" "\ |
| 27504 | Toggle display of time, load level, and mail flag in mode lines. | 27527 | Toggle display of time, load level, and mail flag in mode lines. |
| 27505 | With a numeric arg, enable this display if arg is positive. | 27528 | With a numeric arg, enable this display if arg is positive. |
| 27506 | 27529 | ||
| @@ -27511,90 +27534,97 @@ This runs the normal hook `display-time-hook' after each update. | |||
| 27511 | 27534 | ||
| 27512 | \(fn &optional ARG)" t nil) | 27535 | \(fn &optional ARG)" t nil) |
| 27513 | 27536 | ||
| 27537 | (autoload 'display-time-world "time" "\ | ||
| 27538 | Enable updating display of times in various time zones. | ||
| 27539 | `display-time-world-list' specifies the zones. | ||
| 27540 | To turn off the world time display, go to that window and type `q'. | ||
| 27541 | |||
| 27542 | \(fn)" t nil) | ||
| 27543 | |||
| 27514 | ;;;*** | 27544 | ;;;*** |
| 27515 | 27545 | ||
| 27516 | ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year | 27546 | ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year |
| 27517 | ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract | 27547 | ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract |
| 27518 | ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds | 27548 | ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds |
| 27519 | ;;;;;; date-to-time) "time-date" "calendar/time-date.el" (18104 | 27549 | ;;;;;; date-to-time) "time-date" "calendar/time-date.el" (18088 |
| 27520 | ;;;;;; 24745)) | 27550 | ;;;;;; 55094)) |
| 27521 | ;;; Generated autoloads from calendar/time-date.el | 27551 | ;;; Generated autoloads from calendar/time-date.el |
| 27522 | 27552 | ||
| 27523 | (autoload (quote date-to-time) "time-date" "\ | 27553 | (autoload 'date-to-time "time-date" "\ |
| 27524 | Parse a string that represents a date-time and return a time value. | 27554 | Parse a string that represents a date-time and return a time value. |
| 27525 | 27555 | ||
| 27526 | \(fn DATE)" nil nil) | 27556 | \(fn DATE)" nil nil) |
| 27527 | 27557 | ||
| 27528 | (autoload (quote time-to-seconds) "time-date" "\ | 27558 | (autoload 'time-to-seconds "time-date" "\ |
| 27529 | Convert time value TIME to a floating point number. | 27559 | Convert time value TIME to a floating point number. |
| 27530 | You can use `float-time' instead. | 27560 | You can use `float-time' instead. |
| 27531 | 27561 | ||
| 27532 | \(fn TIME)" nil nil) | 27562 | \(fn TIME)" nil nil) |
| 27533 | 27563 | ||
| 27534 | (autoload (quote seconds-to-time) "time-date" "\ | 27564 | (autoload 'seconds-to-time "time-date" "\ |
| 27535 | Convert SECONDS (a floating point number) to a time value. | 27565 | Convert SECONDS (a floating point number) to a time value. |
| 27536 | 27566 | ||
| 27537 | \(fn SECONDS)" nil nil) | 27567 | \(fn SECONDS)" nil nil) |
| 27538 | 27568 | ||
| 27539 | (autoload (quote time-less-p) "time-date" "\ | 27569 | (autoload 'time-less-p "time-date" "\ |
| 27540 | Say whether time value T1 is less than time value T2. | 27570 | Say whether time value T1 is less than time value T2. |
| 27541 | 27571 | ||
| 27542 | \(fn T1 T2)" nil nil) | 27572 | \(fn T1 T2)" nil nil) |
| 27543 | 27573 | ||
| 27544 | (autoload (quote days-to-time) "time-date" "\ | 27574 | (autoload 'days-to-time "time-date" "\ |
| 27545 | Convert DAYS into a time value. | 27575 | Convert DAYS into a time value. |
| 27546 | 27576 | ||
| 27547 | \(fn DAYS)" nil nil) | 27577 | \(fn DAYS)" nil nil) |
| 27548 | 27578 | ||
| 27549 | (autoload (quote time-since) "time-date" "\ | 27579 | (autoload 'time-since "time-date" "\ |
| 27550 | Return the time elapsed since TIME. | 27580 | Return the time elapsed since TIME. |
| 27551 | TIME should be either a time value or a date-time string. | 27581 | TIME should be either a time value or a date-time string. |
| 27552 | 27582 | ||
| 27553 | \(fn TIME)" nil nil) | 27583 | \(fn TIME)" nil nil) |
| 27554 | 27584 | ||
| 27555 | (defalias (quote subtract-time) (quote time-subtract)) | 27585 | (defalias 'subtract-time 'time-subtract) |
| 27556 | 27586 | ||
| 27557 | (autoload (quote time-subtract) "time-date" "\ | 27587 | (autoload 'time-subtract "time-date" "\ |
| 27558 | Subtract two time values. | 27588 | Subtract two time values. |
| 27559 | Return the difference in the format of a time value. | 27589 | Return the difference in the format of a time value. |
| 27560 | 27590 | ||
| 27561 | \(fn T1 T2)" nil nil) | 27591 | \(fn T1 T2)" nil nil) |
| 27562 | 27592 | ||
| 27563 | (autoload (quote time-add) "time-date" "\ | 27593 | (autoload 'time-add "time-date" "\ |
| 27564 | Add two time values. One should represent a time difference. | 27594 | Add two time values. One should represent a time difference. |
| 27565 | 27595 | ||
| 27566 | \(fn T1 T2)" nil nil) | 27596 | \(fn T1 T2)" nil nil) |
| 27567 | 27597 | ||
| 27568 | (autoload (quote date-to-day) "time-date" "\ | 27598 | (autoload 'date-to-day "time-date" "\ |
| 27569 | Return the number of days between year 1 and DATE. | 27599 | Return the number of days between year 1 and DATE. |
| 27570 | DATE should be a date-time string. | 27600 | DATE should be a date-time string. |
| 27571 | 27601 | ||
| 27572 | \(fn DATE)" nil nil) | 27602 | \(fn DATE)" nil nil) |
| 27573 | 27603 | ||
| 27574 | (autoload (quote days-between) "time-date" "\ | 27604 | (autoload 'days-between "time-date" "\ |
| 27575 | Return the number of days between DATE1 and DATE2. | 27605 | Return the number of days between DATE1 and DATE2. |
| 27576 | DATE1 and DATE2 should be date-time strings. | 27606 | DATE1 and DATE2 should be date-time strings. |
| 27577 | 27607 | ||
| 27578 | \(fn DATE1 DATE2)" nil nil) | 27608 | \(fn DATE1 DATE2)" nil nil) |
| 27579 | 27609 | ||
| 27580 | (autoload (quote date-leap-year-p) "time-date" "\ | 27610 | (autoload 'date-leap-year-p "time-date" "\ |
| 27581 | Return t if YEAR is a leap year. | 27611 | Return t if YEAR is a leap year. |
| 27582 | 27612 | ||
| 27583 | \(fn YEAR)" nil nil) | 27613 | \(fn YEAR)" nil nil) |
| 27584 | 27614 | ||
| 27585 | (autoload (quote time-to-day-in-year) "time-date" "\ | 27615 | (autoload 'time-to-day-in-year "time-date" "\ |
| 27586 | Return the day number within the year corresponding to TIME. | 27616 | Return the day number within the year corresponding to TIME. |
| 27587 | 27617 | ||
| 27588 | \(fn TIME)" nil nil) | 27618 | \(fn TIME)" nil nil) |
| 27589 | 27619 | ||
| 27590 | (autoload (quote time-to-days) "time-date" "\ | 27620 | (autoload 'time-to-days "time-date" "\ |
| 27591 | The number of days between the Gregorian date 0001-12-31bce and TIME. | 27621 | The number of days between the Gregorian date 0001-12-31bce and TIME. |
| 27592 | TIME should be a time value. | 27622 | TIME should be a time value. |
| 27593 | The Gregorian date Sunday, December 31, 1bce is imaginary. | 27623 | The Gregorian date Sunday, December 31, 1bce is imaginary. |
| 27594 | 27624 | ||
| 27595 | \(fn TIME)" nil nil) | 27625 | \(fn TIME)" nil nil) |
| 27596 | 27626 | ||
| 27597 | (autoload (quote safe-date-to-time) "time-date" "\ | 27627 | (autoload 'safe-date-to-time "time-date" "\ |
| 27598 | Parse a string that represents a date-time and return a time value. | 27628 | Parse a string that represents a date-time and return a time value. |
| 27599 | If DATE is malformed, return a time value of zeros. | 27629 | If DATE is malformed, return a time value of zeros. |
| 27600 | 27630 | ||
| @@ -27603,7 +27633,7 @@ If DATE is malformed, return a time value of zeros. | |||
| 27603 | ;;;*** | 27633 | ;;;*** |
| 27604 | 27634 | ||
| 27605 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" | 27635 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" |
| 27606 | ;;;;;; "time-stamp.el" (18104 24740)) | 27636 | ;;;;;; "time-stamp.el" (18088 55090)) |
| 27607 | ;;; Generated autoloads from time-stamp.el | 27637 | ;;; Generated autoloads from time-stamp.el |
| 27608 | (put 'time-stamp-format 'safe-local-variable 'stringp) | 27638 | (put 'time-stamp-format 'safe-local-variable 'stringp) |
| 27609 | (put 'time-stamp-line-limit 'safe-local-variable 'integerp) | 27639 | (put 'time-stamp-line-limit 'safe-local-variable 'integerp) |
| @@ -27613,7 +27643,7 @@ If DATE is malformed, return a time value of zeros. | |||
| 27613 | (put 'time-stamp-count 'safe-local-variable 'integerp) | 27643 | (put 'time-stamp-count 'safe-local-variable 'integerp) |
| 27614 | (put 'time-stamp-pattern 'safe-local-variable 'stringp) | 27644 | (put 'time-stamp-pattern 'safe-local-variable 'stringp) |
| 27615 | 27645 | ||
| 27616 | (autoload (quote time-stamp) "time-stamp" "\ | 27646 | (autoload 'time-stamp "time-stamp" "\ |
| 27617 | Update the time stamp string(s) in the buffer. | 27647 | Update the time stamp string(s) in the buffer. |
| 27618 | A template in a file can be automatically updated with a new time stamp | 27648 | A template in a file can be automatically updated with a new time stamp |
| 27619 | every time you save the file. Add this line to your .emacs file: | 27649 | every time you save the file. Add this line to your .emacs file: |
| @@ -27634,7 +27664,7 @@ the template. | |||
| 27634 | 27664 | ||
| 27635 | \(fn)" t nil) | 27665 | \(fn)" t nil) |
| 27636 | 27666 | ||
| 27637 | (autoload (quote time-stamp-toggle-active) "time-stamp" "\ | 27667 | (autoload 'time-stamp-toggle-active "time-stamp" "\ |
| 27638 | Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer. | 27668 | Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer. |
| 27639 | With ARG, turn time stamping on if and only if arg is positive. | 27669 | With ARG, turn time stamping on if and only if arg is positive. |
| 27640 | 27670 | ||
| @@ -27646,10 +27676,10 @@ With ARG, turn time stamping on if and only if arg is positive. | |||
| 27646 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out | 27676 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out |
| 27647 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in | 27677 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in |
| 27648 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" | 27678 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" |
| 27649 | ;;;;;; (18104 24745)) | 27679 | ;;;;;; (18088 55094)) |
| 27650 | ;;; Generated autoloads from calendar/timeclock.el | 27680 | ;;; Generated autoloads from calendar/timeclock.el |
| 27651 | 27681 | ||
| 27652 | (autoload (quote timeclock-modeline-display) "timeclock" "\ | 27682 | (autoload 'timeclock-modeline-display "timeclock" "\ |
| 27653 | Toggle display of the amount of time left today in the modeline. | 27683 | Toggle display of the amount of time left today in the modeline. |
| 27654 | If `timeclock-use-display-time' is non-nil (the default), then | 27684 | If `timeclock-use-display-time' is non-nil (the default), then |
| 27655 | the function `display-time-mode' must be active, and the modeline | 27685 | the function `display-time-mode' must be active, and the modeline |
| @@ -27661,7 +27691,7 @@ display (non-nil means on). | |||
| 27661 | 27691 | ||
| 27662 | \(fn &optional ARG)" t nil) | 27692 | \(fn &optional ARG)" t nil) |
| 27663 | 27693 | ||
| 27664 | (autoload (quote timeclock-in) "timeclock" "\ | 27694 | (autoload 'timeclock-in "timeclock" "\ |
| 27665 | Clock in, recording the current time moment in the timelog. | 27695 | Clock in, recording the current time moment in the timelog. |
| 27666 | With a numeric prefix ARG, record the fact that today has only that | 27696 | With a numeric prefix ARG, record the fact that today has only that |
| 27667 | many hours in it to be worked. If arg is a non-numeric prefix arg | 27697 | many hours in it to be worked. If arg is a non-numeric prefix arg |
| @@ -27677,7 +27707,7 @@ discover the name of the project. | |||
| 27677 | 27707 | ||
| 27678 | \(fn &optional ARG PROJECT FIND-PROJECT)" t nil) | 27708 | \(fn &optional ARG PROJECT FIND-PROJECT)" t nil) |
| 27679 | 27709 | ||
| 27680 | (autoload (quote timeclock-out) "timeclock" "\ | 27710 | (autoload 'timeclock-out "timeclock" "\ |
| 27681 | Clock out, recording the current time moment in the timelog. | 27711 | Clock out, recording the current time moment in the timelog. |
| 27682 | If a prefix ARG is given, the user has completed the project that was | 27712 | If a prefix ARG is given, the user has completed the project that was |
| 27683 | begun during the last time segment. | 27713 | begun during the last time segment. |
| @@ -27689,7 +27719,7 @@ discover the reason. | |||
| 27689 | 27719 | ||
| 27690 | \(fn &optional ARG REASON FIND-REASON)" t nil) | 27720 | \(fn &optional ARG REASON FIND-REASON)" t nil) |
| 27691 | 27721 | ||
| 27692 | (autoload (quote timeclock-status-string) "timeclock" "\ | 27722 | (autoload 'timeclock-status-string "timeclock" "\ |
| 27693 | Report the overall timeclock status at the present moment. | 27723 | Report the overall timeclock status at the present moment. |
| 27694 | If SHOW-SECONDS is non-nil, display second resolution. | 27724 | If SHOW-SECONDS is non-nil, display second resolution. |
| 27695 | If TODAY-ONLY is non-nil, the display will be relative only to time | 27725 | If TODAY-ONLY is non-nil, the display will be relative only to time |
| @@ -27697,7 +27727,7 @@ worked today, ignoring the time worked on previous days. | |||
| 27697 | 27727 | ||
| 27698 | \(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) | 27728 | \(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) |
| 27699 | 27729 | ||
| 27700 | (autoload (quote timeclock-change) "timeclock" "\ | 27730 | (autoload 'timeclock-change "timeclock" "\ |
| 27701 | Change to working on a different project. | 27731 | Change to working on a different project. |
| 27702 | This clocks out of the current project, then clocks in on a new one. | 27732 | This clocks out of the current project, then clocks in on a new one. |
| 27703 | With a prefix ARG, consider the previous project as finished at the | 27733 | With a prefix ARG, consider the previous project as finished at the |
| @@ -27706,19 +27736,19 @@ working on. | |||
| 27706 | 27736 | ||
| 27707 | \(fn &optional ARG PROJECT)" t nil) | 27737 | \(fn &optional ARG PROJECT)" t nil) |
| 27708 | 27738 | ||
| 27709 | (autoload (quote timeclock-query-out) "timeclock" "\ | 27739 | (autoload 'timeclock-query-out "timeclock" "\ |
| 27710 | Ask the user whether to clock out. | 27740 | Ask the user whether to clock out. |
| 27711 | This is a useful function for adding to `kill-emacs-query-functions'. | 27741 | This is a useful function for adding to `kill-emacs-query-functions'. |
| 27712 | 27742 | ||
| 27713 | \(fn)" nil nil) | 27743 | \(fn)" nil nil) |
| 27714 | 27744 | ||
| 27715 | (autoload (quote timeclock-reread-log) "timeclock" "\ | 27745 | (autoload 'timeclock-reread-log "timeclock" "\ |
| 27716 | Re-read the timeclock, to account for external changes. | 27746 | Re-read the timeclock, to account for external changes. |
| 27717 | Returns the new value of `timeclock-discrepancy'. | 27747 | Returns the new value of `timeclock-discrepancy'. |
| 27718 | 27748 | ||
| 27719 | \(fn)" t nil) | 27749 | \(fn)" t nil) |
| 27720 | 27750 | ||
| 27721 | (autoload (quote timeclock-workday-remaining-string) "timeclock" "\ | 27751 | (autoload 'timeclock-workday-remaining-string "timeclock" "\ |
| 27722 | Return a string representing the amount of time left today. | 27752 | Return a string representing the amount of time left today. |
| 27723 | Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY | 27753 | Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY |
| 27724 | is non-nil, the display will be relative only to time worked today. | 27754 | is non-nil, the display will be relative only to time worked today. |
| @@ -27727,14 +27757,14 @@ See `timeclock-relative' for more information about the meaning of | |||
| 27727 | 27757 | ||
| 27728 | \(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) | 27758 | \(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil) |
| 27729 | 27759 | ||
| 27730 | (autoload (quote timeclock-workday-elapsed-string) "timeclock" "\ | 27760 | (autoload 'timeclock-workday-elapsed-string "timeclock" "\ |
| 27731 | Return a string representing the amount of time worked today. | 27761 | Return a string representing the amount of time worked today. |
| 27732 | Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is | 27762 | Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is |
| 27733 | non-nil, the amount returned will be relative to past time worked. | 27763 | non-nil, the amount returned will be relative to past time worked. |
| 27734 | 27764 | ||
| 27735 | \(fn &optional SHOW-SECONDS)" t nil) | 27765 | \(fn &optional SHOW-SECONDS)" t nil) |
| 27736 | 27766 | ||
| 27737 | (autoload (quote timeclock-when-to-leave-string) "timeclock" "\ | 27767 | (autoload 'timeclock-when-to-leave-string "timeclock" "\ |
| 27738 | Return a string representing the end of today's workday. | 27768 | Return a string representing the end of today's workday. |
| 27739 | This string is relative to the value of `timeclock-workday'. If | 27769 | This string is relative to the value of `timeclock-workday'. If |
| 27740 | SHOW-SECONDS is non-nil, the value printed/returned will include | 27770 | SHOW-SECONDS is non-nil, the value printed/returned will include |
| @@ -27747,24 +27777,24 @@ relative only to the time worked today, and not to past time. | |||
| 27747 | 27777 | ||
| 27748 | ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer | 27778 | ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer |
| 27749 | ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" | 27779 | ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" |
| 27750 | ;;;;;; "emacs-lisp/timer.el" (18104 24748)) | 27780 | ;;;;;; "emacs-lisp/timer.el" (18088 55096)) |
| 27751 | ;;; Generated autoloads from emacs-lisp/timer.el | 27781 | ;;; Generated autoloads from emacs-lisp/timer.el |
| 27752 | 27782 | ||
| 27753 | (defalias (quote disable-timeout) (quote cancel-timer)) | 27783 | (defalias 'disable-timeout 'cancel-timer) |
| 27754 | 27784 | ||
| 27755 | (autoload (quote cancel-timer) "timer" "\ | 27785 | (autoload 'cancel-timer "timer" "\ |
| 27756 | Remove TIMER from the list of active timers. | 27786 | Remove TIMER from the list of active timers. |
| 27757 | 27787 | ||
| 27758 | \(fn TIMER)" nil nil) | 27788 | \(fn TIMER)" nil nil) |
| 27759 | 27789 | ||
| 27760 | (autoload (quote cancel-function-timers) "timer" "\ | 27790 | (autoload 'cancel-function-timers "timer" "\ |
| 27761 | Cancel all timers which would run FUNCTION. | 27791 | Cancel all timers which would run FUNCTION. |
| 27762 | This affects ordinary timers such as are scheduled by `run-at-time', | 27792 | This affects ordinary timers such as are scheduled by `run-at-time', |
| 27763 | and idle timers such as are scheduled by `run-with-idle-timer'. | 27793 | and idle timers such as are scheduled by `run-with-idle-timer'. |
| 27764 | 27794 | ||
| 27765 | \(fn FUNCTION)" t nil) | 27795 | \(fn FUNCTION)" t nil) |
| 27766 | 27796 | ||
| 27767 | (autoload (quote run-at-time) "timer" "\ | 27797 | (autoload 'run-at-time "timer" "\ |
| 27768 | Perform an action at time TIME. | 27798 | Perform an action at time TIME. |
| 27769 | Repeat the action every REPEAT seconds, if REPEAT is non-nil. | 27799 | Repeat the action every REPEAT seconds, if REPEAT is non-nil. |
| 27770 | TIME should be one of: a string giving an absolute time like | 27800 | TIME should be one of: a string giving an absolute time like |
| @@ -27782,7 +27812,7 @@ This function returns a timer object which you can use in `cancel-timer'. | |||
| 27782 | 27812 | ||
| 27783 | \(fn TIME REPEAT FUNCTION &rest ARGS)" t nil) | 27813 | \(fn TIME REPEAT FUNCTION &rest ARGS)" t nil) |
| 27784 | 27814 | ||
| 27785 | (autoload (quote run-with-timer) "timer" "\ | 27815 | (autoload 'run-with-timer "timer" "\ |
| 27786 | Perform an action after a delay of SECS seconds. | 27816 | Perform an action after a delay of SECS seconds. |
| 27787 | Repeat the action every REPEAT seconds, if REPEAT is non-nil. | 27817 | Repeat the action every REPEAT seconds, if REPEAT is non-nil. |
| 27788 | SECS and REPEAT may be integers or floating point numbers. | 27818 | SECS and REPEAT may be integers or floating point numbers. |
| @@ -27792,14 +27822,14 @@ This function returns a timer object which you can use in `cancel-timer'. | |||
| 27792 | 27822 | ||
| 27793 | \(fn SECS REPEAT FUNCTION &rest ARGS)" t nil) | 27823 | \(fn SECS REPEAT FUNCTION &rest ARGS)" t nil) |
| 27794 | 27824 | ||
| 27795 | (autoload (quote add-timeout) "timer" "\ | 27825 | (autoload 'add-timeout "timer" "\ |
| 27796 | Add a timer to run SECS seconds from now, to call FUNCTION on OBJECT. | 27826 | Add a timer to run SECS seconds from now, to call FUNCTION on OBJECT. |
| 27797 | If REPEAT is non-nil, repeat the timer every REPEAT seconds. | 27827 | If REPEAT is non-nil, repeat the timer every REPEAT seconds. |
| 27798 | This function is for compatibility; see also `run-with-timer'. | 27828 | This function is for compatibility; see also `run-with-timer'. |
| 27799 | 27829 | ||
| 27800 | \(fn SECS FUNCTION OBJECT &optional REPEAT)" nil nil) | 27830 | \(fn SECS FUNCTION OBJECT &optional REPEAT)" nil nil) |
| 27801 | 27831 | ||
| 27802 | (autoload (quote run-with-idle-timer) "timer" "\ | 27832 | (autoload 'run-with-idle-timer "timer" "\ |
| 27803 | Perform an action the next time Emacs is idle for SECS seconds. | 27833 | Perform an action the next time Emacs is idle for SECS seconds. |
| 27804 | The action is to call FUNCTION with arguments ARGS. | 27834 | The action is to call FUNCTION with arguments ARGS. |
| 27805 | SECS may be an integer, a floating point number, or the internal | 27835 | SECS may be an integer, a floating point number, or the internal |
| @@ -27815,7 +27845,7 @@ This function returns a timer object which you can use in `cancel-timer'. | |||
| 27815 | \(fn SECS REPEAT FUNCTION &rest ARGS)" t nil) | 27845 | \(fn SECS REPEAT FUNCTION &rest ARGS)" t nil) |
| 27816 | (put 'with-timeout 'lisp-indent-function 1) | 27846 | (put 'with-timeout 'lisp-indent-function 1) |
| 27817 | 27847 | ||
| 27818 | (autoload (quote with-timeout) "timer" "\ | 27848 | (autoload 'with-timeout "timer" "\ |
| 27819 | Run BODY, but if it doesn't finish in SECONDS seconds, give up. | 27849 | Run BODY, but if it doesn't finish in SECONDS seconds, give up. |
| 27820 | If we give up, we run the TIMEOUT-FORMS and return the value of the last one. | 27850 | If we give up, we run the TIMEOUT-FORMS and return the value of the last one. |
| 27821 | The timeout is checked whenever Emacs waits for some kind of external | 27851 | The timeout is checked whenever Emacs waits for some kind of external |
| @@ -27828,17 +27858,17 @@ be detected. | |||
| 27828 | ;;;*** | 27858 | ;;;*** |
| 27829 | 27859 | ||
| 27830 | ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" | 27860 | ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" |
| 27831 | ;;;;;; "international/titdic-cnv.el" (18104 24757)) | 27861 | ;;;;;; "international/titdic-cnv.el" (18088 55108)) |
| 27832 | ;;; Generated autoloads from international/titdic-cnv.el | 27862 | ;;; Generated autoloads from international/titdic-cnv.el |
| 27833 | 27863 | ||
| 27834 | (autoload (quote titdic-convert) "titdic-cnv" "\ | 27864 | (autoload 'titdic-convert "titdic-cnv" "\ |
| 27835 | Convert a TIT dictionary of FILENAME into a Quail package. | 27865 | Convert a TIT dictionary of FILENAME into a Quail package. |
| 27836 | Optional argument DIRNAME if specified is the directory name under which | 27866 | Optional argument DIRNAME if specified is the directory name under which |
| 27837 | the generated Quail package is saved. | 27867 | the generated Quail package is saved. |
| 27838 | 27868 | ||
| 27839 | \(fn FILENAME &optional DIRNAME)" t nil) | 27869 | \(fn FILENAME &optional DIRNAME)" t nil) |
| 27840 | 27870 | ||
| 27841 | (autoload (quote batch-titdic-convert) "titdic-cnv" "\ | 27871 | (autoload 'batch-titdic-convert "titdic-cnv" "\ |
| 27842 | Run `titdic-convert' on the files remaining on the command line. | 27872 | Run `titdic-convert' on the files remaining on the command line. |
| 27843 | Use this from the command line, with `-batch'; | 27873 | Use this from the command line, with `-batch'; |
| 27844 | it won't work in an interactive Emacs. | 27874 | it won't work in an interactive Emacs. |
| @@ -27851,21 +27881,21 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". | |||
| 27851 | ;;;*** | 27881 | ;;;*** |
| 27852 | 27882 | ||
| 27853 | ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion | 27883 | ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion |
| 27854 | ;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (18104 | 27884 | ;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (18088 |
| 27855 | ;;;;;; 24758)) | 27885 | ;;;;;; 55109)) |
| 27856 | ;;; Generated autoloads from language/tml-util.el | 27886 | ;;; Generated autoloads from language/tml-util.el |
| 27857 | 27887 | ||
| 27858 | (autoload (quote tamil-compose-region) "tml-util" "\ | 27888 | (autoload 'tamil-compose-region "tml-util" "\ |
| 27859 | Not documented | 27889 | Not documented |
| 27860 | 27890 | ||
| 27861 | \(fn FROM TO)" t nil) | 27891 | \(fn FROM TO)" t nil) |
| 27862 | 27892 | ||
| 27863 | (autoload (quote tamil-post-read-conversion) "tml-util" "\ | 27893 | (autoload 'tamil-post-read-conversion "tml-util" "\ |
| 27864 | Not documented | 27894 | Not documented |
| 27865 | 27895 | ||
| 27866 | \(fn LEN)" nil nil) | 27896 | \(fn LEN)" nil nil) |
| 27867 | 27897 | ||
| 27868 | (autoload (quote tamil-composition-function) "tml-util" "\ | 27898 | (autoload 'tamil-composition-function "tml-util" "\ |
| 27869 | Compose Tamil characters in REGION, or STRING if specified. | 27899 | Compose Tamil characters in REGION, or STRING if specified. |
| 27870 | Assume that the REGION or STRING must fully match the composable | 27900 | Assume that the REGION or STRING must fully match the composable |
| 27871 | PATTERN regexp. | 27901 | PATTERN regexp. |
| @@ -27875,12 +27905,12 @@ PATTERN regexp. | |||
| 27875 | ;;;*** | 27905 | ;;;*** |
| 27876 | 27906 | ||
| 27877 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" | 27907 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" |
| 27878 | ;;;;;; "tmm.el" (18104 24740)) | 27908 | ;;;;;; "tmm.el" (18149 22003)) |
| 27879 | ;;; Generated autoloads from tmm.el | 27909 | ;;; Generated autoloads from tmm.el |
| 27880 | (define-key global-map "\M-`" 'tmm-menubar) | 27910 | (define-key global-map "\M-`" 'tmm-menubar) |
| 27881 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) | 27911 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) |
| 27882 | 27912 | ||
| 27883 | (autoload (quote tmm-menubar) "tmm" "\ | 27913 | (autoload 'tmm-menubar "tmm" "\ |
| 27884 | Text-mode emulation of looking and choosing from a menubar. | 27914 | Text-mode emulation of looking and choosing from a menubar. |
| 27885 | See the documentation for `tmm-prompt'. | 27915 | See the documentation for `tmm-prompt'. |
| 27886 | X-POSITION, if non-nil, specifies a horizontal position within the menu bar; | 27916 | X-POSITION, if non-nil, specifies a horizontal position within the menu bar; |
| @@ -27888,7 +27918,7 @@ we make that menu bar item (the one at that position) the default choice. | |||
| 27888 | 27918 | ||
| 27889 | \(fn &optional X-POSITION)" t nil) | 27919 | \(fn &optional X-POSITION)" t nil) |
| 27890 | 27920 | ||
| 27891 | (autoload (quote tmm-menubar-mouse) "tmm" "\ | 27921 | (autoload 'tmm-menubar-mouse "tmm" "\ |
| 27892 | Text-mode emulation of looking and choosing from a menubar. | 27922 | Text-mode emulation of looking and choosing from a menubar. |
| 27893 | This command is used when you click the mouse in the menubar | 27923 | This command is used when you click the mouse in the menubar |
| 27894 | on a console which has no window system but does have a mouse. | 27924 | on a console which has no window system but does have a mouse. |
| @@ -27896,7 +27926,7 @@ See the documentation for `tmm-prompt'. | |||
| 27896 | 27926 | ||
| 27897 | \(fn EVENT)" t nil) | 27927 | \(fn EVENT)" t nil) |
| 27898 | 27928 | ||
| 27899 | (autoload (quote tmm-prompt) "tmm" "\ | 27929 | (autoload 'tmm-prompt "tmm" "\ |
| 27900 | Text-mode emulation of calling the bindings in keymap. | 27930 | Text-mode emulation of calling the bindings in keymap. |
| 27901 | Creates a text-mode menu of possible choices. You can access the elements | 27931 | Creates a text-mode menu of possible choices. You can access the elements |
| 27902 | in the menu in two ways: | 27932 | in the menu in two ways: |
| @@ -27915,27 +27945,27 @@ Its value should be an event that has a binding in MENU. | |||
| 27915 | 27945 | ||
| 27916 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities | 27946 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities |
| 27917 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) | 27947 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) |
| 27918 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (18104 24745)) | 27948 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (18203 38492)) |
| 27919 | ;;; Generated autoloads from calendar/todo-mode.el | 27949 | ;;; Generated autoloads from calendar/todo-mode.el |
| 27920 | 27950 | ||
| 27921 | (autoload (quote todo-add-category) "todo-mode" "\ | 27951 | (autoload 'todo-add-category "todo-mode" "\ |
| 27922 | Add new category CAT to the TODO list. | 27952 | Add new category CAT to the TODO list. |
| 27923 | 27953 | ||
| 27924 | \(fn CAT)" t nil) | 27954 | \(fn CAT)" t nil) |
| 27925 | 27955 | ||
| 27926 | (autoload (quote todo-add-item-non-interactively) "todo-mode" "\ | 27956 | (autoload 'todo-add-item-non-interactively "todo-mode" "\ |
| 27927 | Insert NEW-ITEM in TODO list as a new entry in CATEGORY. | 27957 | Insert NEW-ITEM in TODO list as a new entry in CATEGORY. |
| 27928 | 27958 | ||
| 27929 | \(fn NEW-ITEM CATEGORY)" nil nil) | 27959 | \(fn NEW-ITEM CATEGORY)" nil nil) |
| 27930 | 27960 | ||
| 27931 | (autoload (quote todo-insert-item) "todo-mode" "\ | 27961 | (autoload 'todo-insert-item "todo-mode" "\ |
| 27932 | Insert new TODO list entry. | 27962 | Insert new TODO list entry. |
| 27933 | With a prefix argument solicit the category, otherwise use the current | 27963 | With a prefix argument solicit the category, otherwise use the current |
| 27934 | category. | 27964 | category. |
| 27935 | 27965 | ||
| 27936 | \(fn ARG)" t nil) | 27966 | \(fn ARG)" t nil) |
| 27937 | 27967 | ||
| 27938 | (autoload (quote todo-top-priorities) "todo-mode" "\ | 27968 | (autoload 'todo-top-priorities "todo-mode" "\ |
| 27939 | List top priorities for each category. | 27969 | List top priorities for each category. |
| 27940 | 27970 | ||
| 27941 | Number of entries for each category is given by NOF-PRIORITIES which | 27971 | Number of entries for each category is given by NOF-PRIORITIES which |
| @@ -27946,7 +27976,7 @@ between each category. | |||
| 27946 | 27976 | ||
| 27947 | \(fn &optional NOF-PRIORITIES CATEGORY-PR-PAGE)" t nil) | 27977 | \(fn &optional NOF-PRIORITIES CATEGORY-PR-PAGE)" t nil) |
| 27948 | 27978 | ||
| 27949 | (autoload (quote todo-print) "todo-mode" "\ | 27979 | (autoload 'todo-print "todo-mode" "\ |
| 27950 | Print todo summary using `todo-print-function'. | 27980 | Print todo summary using `todo-print-function'. |
| 27951 | If CATEGORY-PR-PAGE is non-nil, a page separator `^L' is inserted | 27981 | If CATEGORY-PR-PAGE is non-nil, a page separator `^L' is inserted |
| 27952 | between each category. | 27982 | between each category. |
| @@ -27955,19 +27985,19 @@ Number of entries for each category is given by `todo-print-priorities'. | |||
| 27955 | 27985 | ||
| 27956 | \(fn &optional CATEGORY-PR-PAGE)" t nil) | 27986 | \(fn &optional CATEGORY-PR-PAGE)" t nil) |
| 27957 | 27987 | ||
| 27958 | (autoload (quote todo-mode) "todo-mode" "\ | 27988 | (autoload 'todo-mode "todo-mode" "\ |
| 27959 | Major mode for editing TODO lists. | 27989 | Major mode for editing TODO lists. |
| 27960 | 27990 | ||
| 27961 | \\{todo-mode-map} | 27991 | \\{todo-mode-map} |
| 27962 | 27992 | ||
| 27963 | \(fn)" t nil) | 27993 | \(fn)" t nil) |
| 27964 | 27994 | ||
| 27965 | (autoload (quote todo-cp) "todo-mode" "\ | 27995 | (autoload 'todo-cp "todo-mode" "\ |
| 27966 | Make a diary entry appear only in the current date's diary. | 27996 | Make a diary entry appear only in the current date's diary. |
| 27967 | 27997 | ||
| 27968 | \(fn)" nil nil) | 27998 | \(fn)" nil nil) |
| 27969 | 27999 | ||
| 27970 | (autoload (quote todo-show) "todo-mode" "\ | 28000 | (autoload 'todo-show "todo-mode" "\ |
| 27971 | Show TODO list. | 28001 | Show TODO list. |
| 27972 | 28002 | ||
| 27973 | \(fn)" t nil) | 28003 | \(fn)" t nil) |
| @@ -27976,18 +28006,18 @@ Show TODO list. | |||
| 27976 | 28006 | ||
| 27977 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu | 28007 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu |
| 27978 | ;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) | 28008 | ;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) |
| 27979 | ;;;;;; "tool-bar" "tool-bar.el" (18104 24740)) | 28009 | ;;;;;; "tool-bar" "tool-bar.el" (18133 2197)) |
| 27980 | ;;; Generated autoloads from tool-bar.el | 28010 | ;;; Generated autoloads from tool-bar.el |
| 27981 | 28011 | ||
| 27982 | (autoload (quote toggle-tool-bar-mode-from-frame) "tool-bar" "\ | 28012 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ |
| 27983 | Toggle tool bar on or off, based on the status of the current frame. | 28013 | Toggle tool bar on or off, based on the status of the current frame. |
| 27984 | See `tool-bar-mode' for more information. | 28014 | See `tool-bar-mode' for more information. |
| 27985 | 28015 | ||
| 27986 | \(fn &optional ARG)" t nil) | 28016 | \(fn &optional ARG)" t nil) |
| 27987 | 28017 | ||
| 27988 | (put (quote tool-bar-mode) (quote standard-value) (quote (t))) | 28018 | (put 'tool-bar-mode 'standard-value '(t)) |
| 27989 | 28019 | ||
| 27990 | (autoload (quote tool-bar-add-item) "tool-bar" "\ | 28020 | (autoload 'tool-bar-add-item "tool-bar" "\ |
| 27991 | Add an item to the tool bar. | 28021 | Add an item to the tool bar. |
| 27992 | ICON names the image, DEF is the key definition and KEY is a symbol | 28022 | ICON names the image, DEF is the key definition and KEY is a symbol |
| 27993 | for the fake function key in the menu keymap. Remaining arguments | 28023 | for the fake function key in the menu keymap. Remaining arguments |
| @@ -28004,7 +28034,7 @@ To define items in any other map, use `tool-bar-local-item'. | |||
| 28004 | 28034 | ||
| 28005 | \(fn ICON DEF KEY &rest PROPS)" nil nil) | 28035 | \(fn ICON DEF KEY &rest PROPS)" nil nil) |
| 28006 | 28036 | ||
| 28007 | (autoload (quote tool-bar-local-item) "tool-bar" "\ | 28037 | (autoload 'tool-bar-local-item "tool-bar" "\ |
| 28008 | Add an item to the tool bar in map MAP. | 28038 | Add an item to the tool bar in map MAP. |
| 28009 | ICON names the image, DEF is the key definition and KEY is a symbol | 28039 | ICON names the image, DEF is the key definition and KEY is a symbol |
| 28010 | for the fake function key in the menu keymap. Remaining arguments | 28040 | for the fake function key in the menu keymap. Remaining arguments |
| @@ -28018,7 +28048,7 @@ ICON.xbm, using `find-image'. | |||
| 28018 | 28048 | ||
| 28019 | \(fn ICON DEF KEY MAP &rest PROPS)" nil nil) | 28049 | \(fn ICON DEF KEY MAP &rest PROPS)" nil nil) |
| 28020 | 28050 | ||
| 28021 | (autoload (quote tool-bar-add-item-from-menu) "tool-bar" "\ | 28051 | (autoload 'tool-bar-add-item-from-menu "tool-bar" "\ |
| 28022 | Define tool bar binding for COMMAND in keymap MAP using the given ICON. | 28052 | Define tool bar binding for COMMAND in keymap MAP using the given ICON. |
| 28023 | This makes a binding for COMMAND in `tool-bar-map', copying its | 28053 | This makes a binding for COMMAND in `tool-bar-map', copying its |
| 28024 | binding from the menu bar in MAP (which defaults to `global-map'), but | 28054 | binding from the menu bar in MAP (which defaults to `global-map'), but |
| @@ -28033,7 +28063,7 @@ To define items in any other map, use `tool-bar-local-item-from-menu'. | |||
| 28033 | 28063 | ||
| 28034 | \(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil) | 28064 | \(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil) |
| 28035 | 28065 | ||
| 28036 | (autoload (quote tool-bar-local-item-from-menu) "tool-bar" "\ | 28066 | (autoload 'tool-bar-local-item-from-menu "tool-bar" "\ |
| 28037 | Define local tool bar binding for COMMAND using the given ICON. | 28067 | Define local tool bar binding for COMMAND using the given ICON. |
| 28038 | This makes a binding for COMMAND in IN-MAP, copying its binding from | 28068 | This makes a binding for COMMAND in IN-MAP, copying its binding from |
| 28039 | the menu bar in FROM-MAP (which defaults to `global-map'), but | 28069 | the menu bar in FROM-MAP (which defaults to `global-map'), but |
| @@ -28049,7 +28079,7 @@ holds a keymap. | |||
| 28049 | ;;;*** | 28079 | ;;;*** |
| 28050 | 28080 | ||
| 28051 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" | 28081 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" |
| 28052 | ;;;;;; (18104 24748)) | 28082 | ;;;;;; (18211 32385)) |
| 28053 | ;;; Generated autoloads from emulation/tpu-edt.el | 28083 | ;;; Generated autoloads from emulation/tpu-edt.el |
| 28054 | 28084 | ||
| 28055 | (defvar tpu-edt-mode nil "\ | 28085 | (defvar tpu-edt-mode nil "\ |
| @@ -28059,47 +28089,26 @@ Setting this variable directly does not take effect; | |||
| 28059 | either customize it (see the info node `Easy Customization') | 28089 | either customize it (see the info node `Easy Customization') |
| 28060 | or call the function `tpu-edt-mode'.") | 28090 | or call the function `tpu-edt-mode'.") |
| 28061 | 28091 | ||
| 28062 | (custom-autoload (quote tpu-edt-mode) "tpu-edt" nil) | 28092 | (custom-autoload 'tpu-edt-mode "tpu-edt" nil) |
| 28063 | 28093 | ||
| 28064 | (autoload (quote tpu-edt-mode) "tpu-edt" "\ | 28094 | (autoload 'tpu-edt-mode "tpu-edt" "\ |
| 28065 | TPU/edt emulation. | 28095 | TPU/edt emulation. |
| 28066 | 28096 | ||
| 28067 | \(fn &optional ARG)" t nil) | 28097 | \(fn &optional ARG)" t nil) |
| 28068 | 28098 | ||
| 28069 | (defalias (quote tpu-edt) (quote tpu-edt-on)) | 28099 | (defalias 'tpu-edt 'tpu-edt-on) |
| 28070 | 28100 | ||
| 28071 | (autoload (quote tpu-edt-on) "tpu-edt" "\ | 28101 | (autoload 'tpu-edt-on "tpu-edt" "\ |
| 28072 | Turn on TPU/edt emulation. | 28102 | Turn on TPU/edt emulation. |
| 28073 | 28103 | ||
| 28074 | \(fn)" t nil) | 28104 | \(fn)" t nil) |
| 28075 | 28105 | ||
| 28076 | ;;;*** | 28106 | ;;;*** |
| 28077 | 28107 | ||
| 28078 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) | 28108 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (18088 55096)) |
| 28079 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (18104 24748)) | ||
| 28080 | ;;; Generated autoloads from emulation/tpu-extras.el | ||
| 28081 | |||
| 28082 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ | ||
| 28083 | Set scroll margins. | ||
| 28084 | |||
| 28085 | \(fn TOP BOTTOM)" t nil) | ||
| 28086 | |||
| 28087 | (autoload (quote tpu-set-cursor-free) "tpu-extras" "\ | ||
| 28088 | Allow the cursor to move freely about the screen. | ||
| 28089 | |||
| 28090 | \(fn)" t nil) | ||
| 28091 | |||
| 28092 | (autoload (quote tpu-set-cursor-bound) "tpu-extras" "\ | ||
| 28093 | Constrain the cursor to the flow of the text. | ||
| 28094 | |||
| 28095 | \(fn)" t nil) | ||
| 28096 | |||
| 28097 | ;;;*** | ||
| 28098 | |||
| 28099 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (18104 24748)) | ||
| 28100 | ;;; Generated autoloads from emacs-lisp/tq.el | 28109 | ;;; Generated autoloads from emacs-lisp/tq.el |
| 28101 | 28110 | ||
| 28102 | (autoload (quote tq-create) "tq" "\ | 28111 | (autoload 'tq-create "tq" "\ |
| 28103 | Create and return a transaction queue communicating with PROCESS. | 28112 | Create and return a transaction queue communicating with PROCESS. |
| 28104 | PROCESS should be a subprocess capable of sending and receiving | 28113 | PROCESS should be a subprocess capable of sending and receiving |
| 28105 | streams of bytes. It may be a local process, or it may be connected | 28114 | streams of bytes. It may be a local process, or it may be connected |
| @@ -28110,15 +28119,15 @@ to a tcp server on another machine. | |||
| 28110 | ;;;*** | 28119 | ;;;*** |
| 28111 | 28120 | ||
| 28112 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) | 28121 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) |
| 28113 | ;;;;;; "trace" "emacs-lisp/trace.el" (18104 24748)) | 28122 | ;;;;;; "trace" "emacs-lisp/trace.el" (18088 55096)) |
| 28114 | ;;; Generated autoloads from emacs-lisp/trace.el | 28123 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 28115 | 28124 | ||
| 28116 | (defvar trace-buffer "*trace-output*" "\ | 28125 | (defvar trace-buffer "*trace-output*" "\ |
| 28117 | *Trace output will by default go to that buffer.") | 28126 | *Trace output will by default go to that buffer.") |
| 28118 | 28127 | ||
| 28119 | (custom-autoload (quote trace-buffer) "trace" t) | 28128 | (custom-autoload 'trace-buffer "trace" t) |
| 28120 | 28129 | ||
| 28121 | (autoload (quote trace-function) "trace" "\ | 28130 | (autoload 'trace-function "trace" "\ |
| 28122 | Traces FUNCTION with trace output going to BUFFER. | 28131 | Traces FUNCTION with trace output going to BUFFER. |
| 28123 | For every call of FUNCTION Lisp-style trace messages that display argument | 28132 | For every call of FUNCTION Lisp-style trace messages that display argument |
| 28124 | and return values will be inserted into BUFFER. This function generates the | 28133 | and return values will be inserted into BUFFER. This function generates the |
| @@ -28129,7 +28138,7 @@ display oriented stuff, use `trace-function-background' instead. | |||
| 28129 | 28138 | ||
| 28130 | \(fn FUNCTION &optional BUFFER)" t nil) | 28139 | \(fn FUNCTION &optional BUFFER)" t nil) |
| 28131 | 28140 | ||
| 28132 | (autoload (quote trace-function-background) "trace" "\ | 28141 | (autoload 'trace-function-background "trace" "\ |
| 28133 | Traces FUNCTION with trace output going quietly to BUFFER. | 28142 | Traces FUNCTION with trace output going quietly to BUFFER. |
| 28134 | When this tracing is enabled, every call to FUNCTION writes | 28143 | When this tracing is enabled, every call to FUNCTION writes |
| 28135 | a Lisp-style trace message (showing the arguments and return value) | 28144 | a Lisp-style trace message (showing the arguments and return value) |
| @@ -28147,10 +28156,10 @@ BUFFER defaults to `trace-buffer'. | |||
| 28147 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion | 28156 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion |
| 28148 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers | 28157 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers |
| 28149 | ;;;;;; tramp-file-name-handler tramp-syntax) "tramp" "net/tramp.el" | 28158 | ;;;;;; tramp-file-name-handler tramp-syntax) "tramp" "net/tramp.el" |
| 28150 | ;;;;;; (18104 24760)) | 28159 | ;;;;;; (18211 32385)) |
| 28151 | ;;; Generated autoloads from net/tramp.el | 28160 | ;;; Generated autoloads from net/tramp.el |
| 28152 | 28161 | ||
| 28153 | (defvar tramp-syntax (if (featurep (quote xemacs)) (quote sep) (quote ftp)) "\ | 28162 | (defvar tramp-syntax (if (featurep 'xemacs) 'sep 'ftp) "\ |
| 28154 | Tramp filename syntax to be used. | 28163 | Tramp filename syntax to be used. |
| 28155 | 28164 | ||
| 28156 | It can have the following values: | 28165 | It can have the following values: |
| @@ -28159,7 +28168,7 @@ It can have the following values: | |||
| 28159 | 'sep -- Syntax as defined for XEmacs (not available yet for GNU Emacs) | 28168 | 'sep -- Syntax as defined for XEmacs (not available yet for GNU Emacs) |
| 28160 | 'url -- URL-like syntax.") | 28169 | 'url -- URL-like syntax.") |
| 28161 | 28170 | ||
| 28162 | (custom-autoload (quote tramp-syntax) "tramp" t) | 28171 | (custom-autoload 'tramp-syntax "tramp" t) |
| 28163 | 28172 | ||
| 28164 | (defconst tramp-file-name-regexp-unified "\\`/[^/:]+:" "\ | 28173 | (defconst tramp-file-name-regexp-unified "\\`/[^/:]+:" "\ |
| 28165 | Value for `tramp-file-name-regexp' for unified remoting. | 28174 | Value for `tramp-file-name-regexp' for unified remoting. |
| @@ -28175,13 +28184,13 @@ See `tramp-file-name-structure' for more explanations.") | |||
| 28175 | Value for `tramp-file-name-regexp' for URL-like remoting. | 28184 | Value for `tramp-file-name-regexp' for URL-like remoting. |
| 28176 | See `tramp-file-name-structure' for more explanations.") | 28185 | See `tramp-file-name-structure' for more explanations.") |
| 28177 | 28186 | ||
| 28178 | (defconst tramp-file-name-regexp (cond ((equal tramp-syntax (quote ftp)) tramp-file-name-regexp-unified) ((equal tramp-syntax (quote sep)) tramp-file-name-regexp-separate) ((equal tramp-syntax (quote url)) tramp-file-name-regexp-url) (t (error "Wrong `tramp-syntax' defined"))) "\ | 28187 | (defconst tramp-file-name-regexp (cond ((equal tramp-syntax 'ftp) tramp-file-name-regexp-unified) ((equal tramp-syntax 'sep) tramp-file-name-regexp-separate) ((equal tramp-syntax 'url) tramp-file-name-regexp-url) (t (error "Wrong `tramp-syntax' defined"))) "\ |
| 28179 | *Regular expression matching file names handled by tramp. | 28188 | *Regular expression matching file names handled by Tramp. |
| 28180 | This regexp should match tramp file names but no other file names. | 28189 | This regexp should match Tramp file names but no other file names. |
| 28181 | \(When tramp.el is loaded, this regular expression is prepended to | 28190 | \(When tramp.el is loaded, this regular expression is prepended to |
| 28182 | `file-name-handler-alist', and that is searched sequentially. Thus, | 28191 | `file-name-handler-alist', and that is searched sequentially. Thus, |
| 28183 | if the tramp entry appears rather early in the `file-name-handler-alist' | 28192 | if the Tramp entry appears rather early in the `file-name-handler-alist' |
| 28184 | and is a bit too general, then some files might be considered tramp | 28193 | and is a bit too general, then some files might be considered Tramp |
| 28185 | files which are not really Tramp files. | 28194 | files which are not really Tramp files. |
| 28186 | 28195 | ||
| 28187 | Please note that the entry in `file-name-handler-alist' is made when | 28196 | Please note that the entry in `file-name-handler-alist' is made when |
| @@ -28191,23 +28200,23 @@ updated after changing this variable. | |||
| 28191 | 28200 | ||
| 28192 | Also see `tramp-file-name-structure'.") | 28201 | Also see `tramp-file-name-structure'.") |
| 28193 | 28202 | ||
| 28194 | (defconst tramp-completion-file-name-regexp-unified (if (memq system-type (quote (cygwin windows-nt))) "^\\([a-zA-Z]:\\)?/$\\|^\\([a-zA-Z]:\\)?/[^/:][^/]*$" "^/$\\|^/[^/:][^/]*$") "\ | 28203 | (defconst tramp-completion-file-name-regexp-unified (if (memq system-type '(cygwin windows-nt)) "^\\([a-zA-Z]:\\)?/$\\|^\\([a-zA-Z]:\\)?/[^/:][^/]*$" "^/$\\|^/[^/:][^/]*$") "\ |
| 28195 | Value for `tramp-completion-file-name-regexp' for unified remoting. | 28204 | Value for `tramp-completion-file-name-regexp' for unified remoting. |
| 28196 | Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and | 28205 | Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and |
| 28197 | Tramp. See `tramp-file-name-structure' for more explanations.") | 28206 | Tramp. See `tramp-file-name-structure' for more explanations.") |
| 28198 | 28207 | ||
| 28199 | (defconst tramp-completion-file-name-regexp-separate (if (memq system-type (quote (cygwin windows-nt))) "^\\([a-zA-Z]:\\)?/\\([[][^]]*\\)?$" "^/\\([[][^]]*\\)?$") "\ | 28208 | (defconst tramp-completion-file-name-regexp-separate (if (memq system-type '(cygwin windows-nt)) "^\\([a-zA-Z]:\\)?/\\([[][^]]*\\)?$" "^/\\([[][^]]*\\)?$") "\ |
| 28200 | Value for `tramp-completion-file-name-regexp' for separate remoting. | 28209 | Value for `tramp-completion-file-name-regexp' for separate remoting. |
| 28201 | XEmacs uses a separate filename syntax for Tramp and EFS. | 28210 | XEmacs uses a separate filename syntax for Tramp and EFS. |
| 28202 | See `tramp-file-name-structure' for more explanations.") | 28211 | See `tramp-file-name-structure' for more explanations.") |
| 28203 | 28212 | ||
| 28204 | (defconst tramp-completion-file-name-regexp-url (if (memq system-type (quote (cygwin windows-nt))) "^\\([a-zA-Z]:\\)?/$\\|^\\([a-zA-Z]:\\)?/[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?$" "^/$\\|^/[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?$") "\ | 28213 | (defconst tramp-completion-file-name-regexp-url (if (memq system-type '(cygwin windows-nt)) "^\\([a-zA-Z]:\\)?/$\\|^\\([a-zA-Z]:\\)?/[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?$" "^/$\\|^/[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?$") "\ |
| 28205 | Value for `tramp-completion-file-name-regexp' for URL-like remoting. | 28214 | Value for `tramp-completion-file-name-regexp' for URL-like remoting. |
| 28206 | See `tramp-file-name-structure' for more explanations.") | 28215 | See `tramp-file-name-structure' for more explanations.") |
| 28207 | 28216 | ||
| 28208 | (defconst tramp-completion-file-name-regexp (cond ((equal tramp-syntax (quote ftp)) tramp-completion-file-name-regexp-unified) ((equal tramp-syntax (quote sep)) tramp-completion-file-name-regexp-separate) ((equal tramp-syntax (quote url)) tramp-completion-file-name-regexp-url) (t (error "Wrong `tramp-syntax' defined"))) "\ | 28217 | (defconst tramp-completion-file-name-regexp (cond ((equal tramp-syntax 'ftp) tramp-completion-file-name-regexp-unified) ((equal tramp-syntax 'sep) tramp-completion-file-name-regexp-separate) ((equal tramp-syntax 'url) tramp-completion-file-name-regexp-url) (t (error "Wrong `tramp-syntax' defined"))) "\ |
| 28209 | *Regular expression matching file names handled by tramp completion. | 28218 | *Regular expression matching file names handled by Tramp completion. |
| 28210 | This regexp should match partial tramp file names only. | 28219 | This regexp should match partial Tramp file names only. |
| 28211 | 28220 | ||
| 28212 | Please note that the entry in `file-name-handler-alist' is made when | 28221 | Please note that the entry in `file-name-handler-alist' is made when |
| 28213 | this file (tramp.el) is loaded. This means that this variable must be set | 28222 | this file (tramp.el) is loaded. This means that this variable must be set |
| @@ -28216,7 +28225,7 @@ updated after changing this variable. | |||
| 28216 | 28225 | ||
| 28217 | Also see `tramp-file-name-structure'.") | 28226 | Also see `tramp-file-name-structure'.") |
| 28218 | 28227 | ||
| 28219 | (defconst tramp-completion-file-name-handler-alist (quote ((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion))) "\ | 28228 | (defconst tramp-completion-file-name-handler-alist '((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion)) "\ |
| 28220 | Alist of completion handler functions. | 28229 | Alist of completion handler functions. |
| 28221 | Used for file names matching `tramp-file-name-regexp'. Operations not | 28230 | Used for file names matching `tramp-file-name-regexp'. Operations not |
| 28222 | mentioned here will be handled by `tramp-file-name-handler-alist' or the | 28231 | mentioned here will be handled by `tramp-file-name-handler-alist' or the |
| @@ -28232,42 +28241,42 @@ Invoke `tramp-file-name-handler' for OPERATION. | |||
| 28232 | First arg specifies the OPERATION, second arg is a list of arguments to | 28241 | First arg specifies the OPERATION, second arg is a list of arguments to |
| 28233 | pass to the OPERATION." (let* ((inhibit-file-name-handlers (\` (tramp-completion-file-name-handler cygwin-mount-name-hook-function cygwin-mount-map-drive-hook-function \, (and (eq inhibit-file-name-operation operation) inhibit-file-name-handlers)))) (inhibit-file-name-operation operation)) (apply operation args))) | 28242 | pass to the OPERATION." (let* ((inhibit-file-name-handlers (\` (tramp-completion-file-name-handler cygwin-mount-name-hook-function cygwin-mount-map-drive-hook-function \, (and (eq inhibit-file-name-operation operation) inhibit-file-name-handlers)))) (inhibit-file-name-operation operation)) (apply operation args))) |
| 28234 | 28243 | ||
| 28235 | (autoload (quote tramp-file-name-handler) "tramp" "\ | 28244 | (autoload 'tramp-file-name-handler "tramp" "\ |
| 28236 | Invoke Tramp file name handler. | 28245 | Invoke Tramp file name handler. |
| 28237 | Falls back to normal file name handler if no tramp file name handler exists. | 28246 | Falls back to normal file name handler if no Tramp file name handler exists. |
| 28238 | 28247 | ||
| 28239 | \(fn OPERATION &rest ARGS)" nil nil) | 28248 | \(fn OPERATION &rest ARGS)" nil nil) |
| 28240 | 28249 | ||
| 28241 | (defun tramp-completion-file-name-handler (operation &rest args) "\ | 28250 | (defun tramp-completion-file-name-handler (operation &rest args) "\ |
| 28242 | Invoke tramp file name completion handler. | 28251 | Invoke Tramp file name completion handler. |
| 28243 | Falls back to normal file name handler if no tramp file name handler exists." (let ((fn (assoc operation tramp-completion-file-name-handler-alist))) (if fn (save-match-data (apply (cdr fn) args)) (tramp-completion-run-real-handler operation args)))) | 28252 | Falls back to normal file name handler if no Tramp file name handler exists." (let ((fn (assoc operation tramp-completion-file-name-handler-alist))) (if fn (save-match-data (apply (cdr fn) args)) (tramp-completion-run-real-handler operation args)))) |
| 28244 | 28253 | ||
| 28245 | (defsubst tramp-register-file-name-handler nil "\ | 28254 | (defsubst tramp-register-file-name-handler nil "\ |
| 28246 | Add tramp file name handler to `file-name-handler-alist'." (let ((a1 (rassq (quote tramp-file-name-handler) file-name-handler-alist))) (setq file-name-handler-alist (delete a1 file-name-handler-alist))) (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler))) (let ((jka (rassoc (quote jka-compr-handler) file-name-handler-alist))) (when jka (setq file-name-handler-alist (cons jka (delete jka file-name-handler-alist)))))) | 28255 | Add Tramp file name handler to `file-name-handler-alist'." (let ((a1 (rassq (quote tramp-file-name-handler) file-name-handler-alist))) (setq file-name-handler-alist (delete a1 file-name-handler-alist))) (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler))) (let ((jka (rassoc (quote jka-compr-handler) file-name-handler-alist))) (when jka (setq file-name-handler-alist (cons jka (delete jka file-name-handler-alist)))))) |
| 28247 | (tramp-register-file-name-handler) | 28256 | (tramp-register-file-name-handler) |
| 28248 | 28257 | ||
| 28249 | (defsubst tramp-register-completion-file-name-handler nil "\ | 28258 | (defsubst tramp-register-completion-file-name-handler nil "\ |
| 28250 | Add tramp completion file name handler to `file-name-handler-alist'." (let ((a1 (rassq (quote tramp-completion-file-name-handler) file-name-handler-alist))) (setq file-name-handler-alist (delete a1 file-name-handler-alist))) (when (or (not (boundp (quote partial-completion-mode))) (symbol-value (quote partial-completion-mode)) (featurep (quote ido))) (add-to-list (quote file-name-handler-alist) (cons tramp-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t)) (let ((jka (rassoc (quote jka-compr-handler) file-name-handler-alist))) (when jka (setq file-name-handler-alist (cons jka (delete jka file-name-handler-alist)))))) | 28259 | Add Tramp completion file name handler to `file-name-handler-alist'." (let ((a1 (rassq (quote tramp-completion-file-name-handler) file-name-handler-alist))) (setq file-name-handler-alist (delete a1 file-name-handler-alist))) (when (or (not (boundp (quote partial-completion-mode))) (symbol-value (quote partial-completion-mode)) (featurep (quote ido)) (featurep (quote icicles))) (add-to-list (quote file-name-handler-alist) (cons tramp-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t)) (let ((jka (rassoc (quote jka-compr-handler) file-name-handler-alist))) (when jka (setq file-name-handler-alist (cons jka (delete jka file-name-handler-alist)))))) |
| 28251 | (add-hook | 28260 | (add-hook |
| 28252 | 'after-init-hook | 28261 | 'after-init-hook |
| 28253 | '(lambda () (tramp-register-completion-file-name-handler))) | 28262 | '(lambda () (tramp-register-completion-file-name-handler))) |
| 28254 | 28263 | ||
| 28255 | (autoload (quote tramp-unload-file-name-handlers) "tramp" "\ | 28264 | (autoload 'tramp-unload-file-name-handlers "tramp" "\ |
| 28256 | Not documented | 28265 | Not documented |
| 28257 | 28266 | ||
| 28258 | \(fn)" nil nil) | 28267 | \(fn)" nil nil) |
| 28259 | 28268 | ||
| 28260 | (autoload (quote tramp-completion-handle-file-name-all-completions) "tramp" "\ | 28269 | (autoload 'tramp-completion-handle-file-name-all-completions "tramp" "\ |
| 28261 | Like `file-name-all-completions' for partial Tramp files. | 28270 | Like `file-name-all-completions' for partial Tramp files. |
| 28262 | 28271 | ||
| 28263 | \(fn FILENAME DIRECTORY)" nil nil) | 28272 | \(fn FILENAME DIRECTORY)" nil nil) |
| 28264 | 28273 | ||
| 28265 | (autoload (quote tramp-completion-handle-file-name-completion) "tramp" "\ | 28274 | (autoload 'tramp-completion-handle-file-name-completion "tramp" "\ |
| 28266 | Like `file-name-completion' for Tramp files. | 28275 | Like `file-name-completion' for Tramp files. |
| 28267 | 28276 | ||
| 28268 | \(fn FILENAME DIRECTORY &optional PREDICATE)" nil nil) | 28277 | \(fn FILENAME DIRECTORY &optional PREDICATE)" nil nil) |
| 28269 | 28278 | ||
| 28270 | (autoload (quote tramp-unload-tramp) "tramp" "\ | 28279 | (autoload 'tramp-unload-tramp "tramp" "\ |
| 28271 | Discard Tramp from loading remote files. | 28280 | Discard Tramp from loading remote files. |
| 28272 | 28281 | ||
| 28273 | \(fn)" t nil) | 28282 | \(fn)" t nil) |
| @@ -28275,21 +28284,21 @@ Discard Tramp from loading remote files. | |||
| 28275 | ;;;*** | 28284 | ;;;*** |
| 28276 | 28285 | ||
| 28277 | ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" | 28286 | ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" |
| 28278 | ;;;;;; (18104 24760)) | 28287 | ;;;;;; (18183 58477)) |
| 28279 | ;;; Generated autoloads from net/tramp-ftp.el | 28288 | ;;; Generated autoloads from net/tramp-ftp.el |
| 28280 | 28289 | ||
| 28281 | (autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ | 28290 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ |
| 28282 | Not documented | 28291 | Not documented |
| 28283 | 28292 | ||
| 28284 | \(fn)" nil nil) | 28293 | \(fn)" nil nil) |
| 28285 | 28294 | ||
| 28286 | ;;;*** | 28295 | ;;;*** |
| 28287 | 28296 | ||
| 28288 | ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (18104 | 28297 | ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (18200 |
| 28289 | ;;;;;; 24740)) | 28298 | ;;;;;; 51264)) |
| 28290 | ;;; Generated autoloads from tutorial.el | 28299 | ;;; Generated autoloads from tutorial.el |
| 28291 | 28300 | ||
| 28292 | (autoload (quote help-with-tutorial) "tutorial" "\ | 28301 | (autoload 'help-with-tutorial "tutorial" "\ |
| 28293 | Select the Emacs learn-by-doing tutorial. | 28302 | Select the Emacs learn-by-doing tutorial. |
| 28294 | If there is a tutorial version written in the language | 28303 | If there is a tutorial version written in the language |
| 28295 | of the selected language environment, that version is used. | 28304 | of the selected language environment, that version is used. |
| @@ -28311,13 +28320,13 @@ resumed later. | |||
| 28311 | ;;;*** | 28320 | ;;;*** |
| 28312 | 28321 | ||
| 28313 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" | 28322 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" |
| 28314 | ;;;;;; "textmodes/two-column.el" (18104 24773)) | 28323 | ;;;;;; "textmodes/two-column.el" (18201 33329)) |
| 28315 | ;;; Generated autoloads from textmodes/two-column.el | 28324 | ;;; Generated autoloads from textmodes/two-column.el |
| 28316 | (autoload '2C-command "two-column" () t 'keymap) | 28325 | (autoload '2C-command "two-column" () t 'keymap) |
| 28317 | (global-set-key "\C-x6" '2C-command) | 28326 | (global-set-key "\C-x6" '2C-command) |
| 28318 | (global-set-key [f2] '2C-command) | 28327 | (global-set-key [f2] '2C-command) |
| 28319 | 28328 | ||
| 28320 | (autoload (quote 2C-two-columns) "two-column" "\ | 28329 | (autoload '2C-two-columns "two-column" "\ |
| 28321 | Split current window vertically for two-column editing. | 28330 | Split current window vertically for two-column editing. |
| 28322 | \\<global-map>When called the first time, associates a buffer with the current | 28331 | \\<global-map>When called the first time, associates a buffer with the current |
| 28323 | buffer in two-column minor mode (use \\[describe-mode] once in the mode, | 28332 | buffer in two-column minor mode (use \\[describe-mode] once in the mode, |
| @@ -28327,7 +28336,7 @@ first and the associated buffer to its right. | |||
| 28327 | 28336 | ||
| 28328 | \(fn &optional BUFFER)" t nil) | 28337 | \(fn &optional BUFFER)" t nil) |
| 28329 | 28338 | ||
| 28330 | (autoload (quote 2C-associate-buffer) "two-column" "\ | 28339 | (autoload '2C-associate-buffer "two-column" "\ |
| 28331 | Associate another buffer with this one in two-column minor mode. | 28340 | Associate another buffer with this one in two-column minor mode. |
| 28332 | Can also be used to associate a just previously visited file, by | 28341 | Can also be used to associate a just previously visited file, by |
| 28333 | accepting the proposed default buffer. | 28342 | accepting the proposed default buffer. |
| @@ -28336,7 +28345,7 @@ accepting the proposed default buffer. | |||
| 28336 | 28345 | ||
| 28337 | \(fn)" t nil) | 28346 | \(fn)" t nil) |
| 28338 | 28347 | ||
| 28339 | (autoload (quote 2C-split) "two-column" "\ | 28348 | (autoload '2C-split "two-column" "\ |
| 28340 | Split a two-column text at point, into two buffers in two-column minor mode. | 28349 | Split a two-column text at point, into two buffers in two-column minor mode. |
| 28341 | Point becomes the local value of `2C-window-width'. Only lines that | 28350 | Point becomes the local value of `2C-window-width'. Only lines that |
| 28342 | have the ARG same preceding characters at that column get split. The | 28351 | have the ARG same preceding characters at that column get split. The |
| @@ -28362,7 +28371,7 @@ First column's text sSs Second column's text | |||
| 28362 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold | 28371 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold |
| 28363 | ;;;;;; type-break-good-break-interval type-break-good-rest-interval | 28372 | ;;;;;; type-break-good-break-interval type-break-good-rest-interval |
| 28364 | ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" | 28373 | ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" |
| 28365 | ;;;;;; (18104 24740)) | 28374 | ;;;;;; (18088 55090)) |
| 28366 | ;;; Generated autoloads from type-break.el | 28375 | ;;; Generated autoloads from type-break.el |
| 28367 | 28376 | ||
| 28368 | (defvar type-break-mode nil "\ | 28377 | (defvar type-break-mode nil "\ |
| @@ -28371,12 +28380,12 @@ See the docstring for the `type-break-mode' command for more information. | |||
| 28371 | Setting this variable directly does not take effect; | 28380 | Setting this variable directly does not take effect; |
| 28372 | use either \\[customize] or the function `type-break-mode'.") | 28381 | use either \\[customize] or the function `type-break-mode'.") |
| 28373 | 28382 | ||
| 28374 | (custom-autoload (quote type-break-mode) "type-break" nil) | 28383 | (custom-autoload 'type-break-mode "type-break" nil) |
| 28375 | 28384 | ||
| 28376 | (defvar type-break-interval (* 60 60) "\ | 28385 | (defvar type-break-interval (* 60 60) "\ |
| 28377 | *Number of seconds between scheduled typing breaks.") | 28386 | *Number of seconds between scheduled typing breaks.") |
| 28378 | 28387 | ||
| 28379 | (custom-autoload (quote type-break-interval) "type-break" t) | 28388 | (custom-autoload 'type-break-interval "type-break" t) |
| 28380 | 28389 | ||
| 28381 | (defvar type-break-good-rest-interval (/ type-break-interval 6) "\ | 28390 | (defvar type-break-good-rest-interval (/ type-break-interval 6) "\ |
| 28382 | *Number of seconds of idle time considered to be an adequate typing rest. | 28391 | *Number of seconds of idle time considered to be an adequate typing rest. |
| @@ -28388,7 +28397,7 @@ rest from typing, then the next typing break is simply rescheduled for later. | |||
| 28388 | If a break is interrupted before this much time elapses, the user will be | 28397 | If a break is interrupted before this much time elapses, the user will be |
| 28389 | asked whether or not really to interrupt the break.") | 28398 | asked whether or not really to interrupt the break.") |
| 28390 | 28399 | ||
| 28391 | (custom-autoload (quote type-break-good-rest-interval) "type-break" t) | 28400 | (custom-autoload 'type-break-good-rest-interval "type-break" t) |
| 28392 | 28401 | ||
| 28393 | (defvar type-break-good-break-interval nil "\ | 28402 | (defvar type-break-good-break-interval nil "\ |
| 28394 | *Number of seconds considered to be an adequate explicit typing rest. | 28403 | *Number of seconds considered to be an adequate explicit typing rest. |
| @@ -28398,7 +28407,7 @@ length (in seconds) for a break initiated by the command `type-break', | |||
| 28398 | overriding `type-break-good-rest-interval'. This provides querying of | 28407 | overriding `type-break-good-rest-interval'. This provides querying of |
| 28399 | break interruptions when `type-break-good-rest-interval' is nil.") | 28408 | break interruptions when `type-break-good-rest-interval' is nil.") |
| 28400 | 28409 | ||
| 28401 | (custom-autoload (quote type-break-good-break-interval) "type-break" t) | 28410 | (custom-autoload 'type-break-good-break-interval "type-break" t) |
| 28402 | 28411 | ||
| 28403 | (defvar type-break-keystroke-threshold (let* ((wpm 35) (avg-word-length 5) (upper (* wpm avg-word-length (/ type-break-interval 60))) (lower (/ upper 5))) (cons lower upper)) "\ | 28412 | (defvar type-break-keystroke-threshold (let* ((wpm 35) (avg-word-length 5) (upper (* wpm avg-word-length (/ type-break-interval 60))) (lower (/ upper 5))) (cons lower upper)) "\ |
| 28404 | *Upper and lower bound on number of keystrokes for considering typing break. | 28413 | *Upper and lower bound on number of keystrokes for considering typing break. |
| @@ -28422,9 +28431,9 @@ keystroke even though they really require multiple keys to generate them. | |||
| 28422 | The command `type-break-guesstimate-keystroke-threshold' can be used to | 28431 | The command `type-break-guesstimate-keystroke-threshold' can be used to |
| 28423 | guess a reasonably good pair of values for this variable.") | 28432 | guess a reasonably good pair of values for this variable.") |
| 28424 | 28433 | ||
| 28425 | (custom-autoload (quote type-break-keystroke-threshold) "type-break" t) | 28434 | (custom-autoload 'type-break-keystroke-threshold "type-break" t) |
| 28426 | 28435 | ||
| 28427 | (autoload (quote type-break-mode) "type-break" "\ | 28436 | (autoload 'type-break-mode "type-break" "\ |
| 28428 | Enable or disable typing-break mode. | 28437 | Enable or disable typing-break mode. |
| 28429 | This is a minor mode, but it is global to all buffers by default. | 28438 | This is a minor mode, but it is global to all buffers by default. |
| 28430 | 28439 | ||
| @@ -28500,7 +28509,7 @@ problems. | |||
| 28500 | 28509 | ||
| 28501 | \(fn &optional PREFIX)" t nil) | 28510 | \(fn &optional PREFIX)" t nil) |
| 28502 | 28511 | ||
| 28503 | (autoload (quote type-break) "type-break" "\ | 28512 | (autoload 'type-break "type-break" "\ |
| 28504 | Take a typing break. | 28513 | Take a typing break. |
| 28505 | 28514 | ||
| 28506 | During the break, a demo selected from the functions listed in | 28515 | During the break, a demo selected from the functions listed in |
| @@ -28511,14 +28520,14 @@ as per the function `type-break-schedule'. | |||
| 28511 | 28520 | ||
| 28512 | \(fn)" t nil) | 28521 | \(fn)" t nil) |
| 28513 | 28522 | ||
| 28514 | (autoload (quote type-break-statistics) "type-break" "\ | 28523 | (autoload 'type-break-statistics "type-break" "\ |
| 28515 | Print statistics about typing breaks in a temporary buffer. | 28524 | Print statistics about typing breaks in a temporary buffer. |
| 28516 | This includes the last time a typing break was taken, when the next one is | 28525 | This includes the last time a typing break was taken, when the next one is |
| 28517 | scheduled, the keystroke thresholds and the current keystroke count, etc. | 28526 | scheduled, the keystroke thresholds and the current keystroke count, etc. |
| 28518 | 28527 | ||
| 28519 | \(fn)" t nil) | 28528 | \(fn)" t nil) |
| 28520 | 28529 | ||
| 28521 | (autoload (quote type-break-guesstimate-keystroke-threshold) "type-break" "\ | 28530 | (autoload 'type-break-guesstimate-keystroke-threshold "type-break" "\ |
| 28522 | Guess values for the minimum/maximum keystroke threshold for typing breaks. | 28531 | Guess values for the minimum/maximum keystroke threshold for typing breaks. |
| 28523 | 28532 | ||
| 28524 | If called interactively, the user is prompted for their guess as to how | 28533 | If called interactively, the user is prompted for their guess as to how |
| @@ -28545,10 +28554,10 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 28545 | ;;;*** | 28554 | ;;;*** |
| 28546 | 28555 | ||
| 28547 | ;;;### (autoloads (ununderline-region underline-region) "underline" | 28556 | ;;;### (autoloads (ununderline-region underline-region) "underline" |
| 28548 | ;;;;;; "textmodes/underline.el" (18104 24773)) | 28557 | ;;;;;; "textmodes/underline.el" (18088 55121)) |
| 28549 | ;;; Generated autoloads from textmodes/underline.el | 28558 | ;;; Generated autoloads from textmodes/underline.el |
| 28550 | 28559 | ||
| 28551 | (autoload (quote underline-region) "underline" "\ | 28560 | (autoload 'underline-region "underline" "\ |
| 28552 | Underline all nonblank characters in the region. | 28561 | Underline all nonblank characters in the region. |
| 28553 | Works by overstriking underscores. | 28562 | Works by overstriking underscores. |
| 28554 | Called from program, takes two arguments START and END | 28563 | Called from program, takes two arguments START and END |
| @@ -28556,7 +28565,7 @@ which specify the range to operate on. | |||
| 28556 | 28565 | ||
| 28557 | \(fn START END)" t nil) | 28566 | \(fn START END)" t nil) |
| 28558 | 28567 | ||
| 28559 | (autoload (quote ununderline-region) "underline" "\ | 28568 | (autoload 'ununderline-region "underline" "\ |
| 28560 | Remove all underlining (overstruck underscores) in the region. | 28569 | Remove all underlining (overstruck underscores) in the region. |
| 28561 | Called from program, takes two arguments START and END | 28570 | Called from program, takes two arguments START and END |
| 28562 | which specify the range to operate on. | 28571 | which specify the range to operate on. |
| @@ -28566,16 +28575,16 @@ which specify the range to operate on. | |||
| 28566 | ;;;*** | 28575 | ;;;*** |
| 28567 | 28576 | ||
| 28568 | ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) | 28577 | ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) |
| 28569 | ;;;;;; "undigest" "mail/undigest.el" (18104 24758)) | 28578 | ;;;;;; "undigest" "mail/undigest.el" (18120 34751)) |
| 28570 | ;;; Generated autoloads from mail/undigest.el | 28579 | ;;; Generated autoloads from mail/undigest.el |
| 28571 | 28580 | ||
| 28572 | (autoload (quote undigestify-rmail-message) "undigest" "\ | 28581 | (autoload 'undigestify-rmail-message "undigest" "\ |
| 28573 | Break up a digest message into its constituent messages. | 28582 | Break up a digest message into its constituent messages. |
| 28574 | Leaves original message, deleted, before the undigestified messages. | 28583 | Leaves original message, deleted, before the undigestified messages. |
| 28575 | 28584 | ||
| 28576 | \(fn)" t nil) | 28585 | \(fn)" t nil) |
| 28577 | 28586 | ||
| 28578 | (autoload (quote unforward-rmail-message) "undigest" "\ | 28587 | (autoload 'unforward-rmail-message "undigest" "\ |
| 28579 | Extract a forwarded message from the containing message. | 28588 | Extract a forwarded message from the containing message. |
| 28580 | This puts the forwarded message into a separate rmail message | 28589 | This puts the forwarded message into a separate rmail message |
| 28581 | following the containing message. | 28590 | following the containing message. |
| @@ -28585,10 +28594,10 @@ following the containing message. | |||
| 28585 | ;;;*** | 28594 | ;;;*** |
| 28586 | 28595 | ||
| 28587 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" | 28596 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" |
| 28588 | ;;;;;; (18104 24758)) | 28597 | ;;;;;; (18088 55110)) |
| 28589 | ;;; Generated autoloads from mail/unrmail.el | 28598 | ;;; Generated autoloads from mail/unrmail.el |
| 28590 | 28599 | ||
| 28591 | (autoload (quote batch-unrmail) "unrmail" "\ | 28600 | (autoload 'batch-unrmail "unrmail" "\ |
| 28592 | Convert Rmail files to system inbox format. | 28601 | Convert Rmail files to system inbox format. |
| 28593 | Specify the input Rmail file names as command line arguments. | 28602 | Specify the input Rmail file names as command line arguments. |
| 28594 | For each Rmail file, the corresponding output file name | 28603 | For each Rmail file, the corresponding output file name |
| @@ -28597,18 +28606,18 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'. | |||
| 28597 | 28606 | ||
| 28598 | \(fn)" nil nil) | 28607 | \(fn)" nil nil) |
| 28599 | 28608 | ||
| 28600 | (autoload (quote unrmail) "unrmail" "\ | 28609 | (autoload 'unrmail "unrmail" "\ |
| 28601 | Convert Rmail file FILE to system inbox format file TO-FILE. | 28610 | Convert Rmail file FILE to system inbox format file TO-FILE. |
| 28602 | 28611 | ||
| 28603 | \(fn FILE TO-FILE)" t nil) | 28612 | \(fn FILE TO-FILE)" t nil) |
| 28604 | 28613 | ||
| 28605 | ;;;*** | 28614 | ;;;*** |
| 28606 | 28615 | ||
| 28607 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (18104 | 28616 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (18120 |
| 28608 | ;;;;;; 24748)) | 28617 | ;;;;;; 34750)) |
| 28609 | ;;; Generated autoloads from emacs-lisp/unsafep.el | 28618 | ;;; Generated autoloads from emacs-lisp/unsafep.el |
| 28610 | 28619 | ||
| 28611 | (autoload (quote unsafep) "unsafep" "\ | 28620 | (autoload 'unsafep "unsafep" "\ |
| 28612 | Return nil if evaluating FORM couldn't possibly do any harm; | 28621 | Return nil if evaluating FORM couldn't possibly do any harm; |
| 28613 | otherwise result is a reason why FORM is unsafe. UNSAFEP-VARS is a list | 28622 | otherwise result is a reason why FORM is unsafe. UNSAFEP-VARS is a list |
| 28614 | of symbols with local bindings. | 28623 | of symbols with local bindings. |
| @@ -28618,10 +28627,10 @@ of symbols with local bindings. | |||
| 28618 | ;;;*** | 28627 | ;;;*** |
| 28619 | 28628 | ||
| 28620 | ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" | 28629 | ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" |
| 28621 | ;;;;;; "url/url.el" (18104 24773)) | 28630 | ;;;;;; "url/url.el" (18088 55122)) |
| 28622 | ;;; Generated autoloads from url/url.el | 28631 | ;;; Generated autoloads from url/url.el |
| 28623 | 28632 | ||
| 28624 | (autoload (quote url-retrieve) "url" "\ | 28633 | (autoload 'url-retrieve "url" "\ |
| 28625 | Retrieve URL asynchronously and call CALLBACK with CBARGS when finished. | 28634 | Retrieve URL asynchronously and call CALLBACK with CBARGS when finished. |
| 28626 | URL is either a string or a parsed URL. | 28635 | URL is either a string or a parsed URL. |
| 28627 | 28636 | ||
| @@ -28647,7 +28656,7 @@ take effect. | |||
| 28647 | 28656 | ||
| 28648 | \(fn URL CALLBACK &optional CBARGS)" nil nil) | 28657 | \(fn URL CALLBACK &optional CBARGS)" nil nil) |
| 28649 | 28658 | ||
| 28650 | (autoload (quote url-retrieve-synchronously) "url" "\ | 28659 | (autoload 'url-retrieve-synchronously "url" "\ |
| 28651 | Retrieve URL synchronously. | 28660 | Retrieve URL synchronously. |
| 28652 | Return the buffer containing the data, or nil if there are no data | 28661 | Return the buffer containing the data, or nil if there are no data |
| 28653 | associated with it (the case for dired, info, or mailto URLs that need | 28662 | associated with it (the case for dired, info, or mailto URLs that need |
| @@ -28658,10 +28667,10 @@ no further processing). URL is either a string or a parsed URL. | |||
| 28658 | ;;;*** | 28667 | ;;;*** |
| 28659 | 28668 | ||
| 28660 | ;;;### (autoloads (url-register-auth-scheme url-get-authentication) | 28669 | ;;;### (autoloads (url-register-auth-scheme url-get-authentication) |
| 28661 | ;;;;;; "url-auth" "url/url-auth.el" (18104 24773)) | 28670 | ;;;;;; "url-auth" "url/url-auth.el" (18197 21677)) |
| 28662 | ;;; Generated autoloads from url/url-auth.el | 28671 | ;;; Generated autoloads from url/url-auth.el |
| 28663 | 28672 | ||
| 28664 | (autoload (quote url-get-authentication) "url-auth" "\ | 28673 | (autoload 'url-get-authentication "url-auth" "\ |
| 28665 | Return an authorization string suitable for use in the WWW-Authenticate | 28674 | Return an authorization string suitable for use in the WWW-Authenticate |
| 28666 | header in an HTTP/1.0 request. | 28675 | header in an HTTP/1.0 request. |
| 28667 | 28676 | ||
| @@ -28683,7 +28692,7 @@ PROMPT is boolean - specifies whether to ask the user for a username/password | |||
| 28683 | 28692 | ||
| 28684 | \(fn URL REALM TYPE PROMPT &optional ARGS)" nil nil) | 28693 | \(fn URL REALM TYPE PROMPT &optional ARGS)" nil nil) |
| 28685 | 28694 | ||
| 28686 | (autoload (quote url-register-auth-scheme) "url-auth" "\ | 28695 | (autoload 'url-register-auth-scheme "url-auth" "\ |
| 28687 | Register an HTTP authentication method. | 28696 | Register an HTTP authentication method. |
| 28688 | 28697 | ||
| 28689 | TYPE is a string or symbol specifying the name of the method. This | 28698 | TYPE is a string or symbol specifying the name of the method. This |
| @@ -28700,36 +28709,36 @@ RATING a rating between 1 and 10 of the strength of the authentication. | |||
| 28700 | ;;;*** | 28709 | ;;;*** |
| 28701 | 28710 | ||
| 28702 | ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached | 28711 | ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached |
| 28703 | ;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (18104 | 28712 | ;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (18120 |
| 28704 | ;;;;;; 24773)) | 28713 | ;;;;;; 34753)) |
| 28705 | ;;; Generated autoloads from url/url-cache.el | 28714 | ;;; Generated autoloads from url/url-cache.el |
| 28706 | 28715 | ||
| 28707 | (autoload (quote url-store-in-cache) "url-cache" "\ | 28716 | (autoload 'url-store-in-cache "url-cache" "\ |
| 28708 | Store buffer BUFF in the cache. | 28717 | Store buffer BUFF in the cache. |
| 28709 | 28718 | ||
| 28710 | \(fn &optional BUFF)" nil nil) | 28719 | \(fn &optional BUFF)" nil nil) |
| 28711 | 28720 | ||
| 28712 | (autoload (quote url-is-cached) "url-cache" "\ | 28721 | (autoload 'url-is-cached "url-cache" "\ |
| 28713 | Return non-nil if the URL is cached. | 28722 | Return non-nil if the URL is cached. |
| 28714 | 28723 | ||
| 28715 | \(fn URL)" nil nil) | 28724 | \(fn URL)" nil nil) |
| 28716 | 28725 | ||
| 28717 | (autoload (quote url-cache-extract) "url-cache" "\ | 28726 | (autoload 'url-cache-extract "url-cache" "\ |
| 28718 | Extract FNAM from the local disk cache | 28727 | Extract FNAM from the local disk cache |
| 28719 | 28728 | ||
| 28720 | \(fn FNAM)" nil nil) | 28729 | \(fn FNAM)" nil nil) |
| 28721 | 28730 | ||
| 28722 | (autoload (quote url-cache-expired) "url-cache" "\ | 28731 | (autoload 'url-cache-expired "url-cache" "\ |
| 28723 | Return t iff a cached file has expired. | 28732 | Return t if a cached file has expired. |
| 28724 | 28733 | ||
| 28725 | \(fn URL MOD)" nil nil) | 28734 | \(fn URL MOD)" nil nil) |
| 28726 | 28735 | ||
| 28727 | ;;;*** | 28736 | ;;;*** |
| 28728 | 28737 | ||
| 28729 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (18104 24773)) | 28738 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (18088 55121)) |
| 28730 | ;;; Generated autoloads from url/url-cid.el | 28739 | ;;; Generated autoloads from url/url-cid.el |
| 28731 | 28740 | ||
| 28732 | (autoload (quote url-cid) "url-cid" "\ | 28741 | (autoload 'url-cid "url-cid" "\ |
| 28733 | Not documented | 28742 | Not documented |
| 28734 | 28743 | ||
| 28735 | \(fn URL)" nil nil) | 28744 | \(fn URL)" nil nil) |
| @@ -28737,26 +28746,26 @@ Not documented | |||
| 28737 | ;;;*** | 28746 | ;;;*** |
| 28738 | 28747 | ||
| 28739 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" | 28748 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" |
| 28740 | ;;;;;; "url/url-dav.el" (18104 24773)) | 28749 | ;;;;;; "url/url-dav.el" (18173 8196)) |
| 28741 | ;;; Generated autoloads from url/url-dav.el | 28750 | ;;; Generated autoloads from url/url-dav.el |
| 28742 | 28751 | ||
| 28743 | (autoload (quote url-dav-supported-p) "url-dav" "\ | 28752 | (autoload 'url-dav-supported-p "url-dav" "\ |
| 28744 | Not documented | 28753 | Not documented |
| 28745 | 28754 | ||
| 28746 | \(fn URL)" nil nil) | 28755 | \(fn URL)" nil nil) |
| 28747 | 28756 | ||
| 28748 | (autoload (quote url-dav-vc-registered) "url-dav" "\ | 28757 | (autoload 'url-dav-vc-registered "url-dav" "\ |
| 28749 | Not documented | 28758 | Not documented |
| 28750 | 28759 | ||
| 28751 | \(fn URL)" nil nil) | 28760 | \(fn URL)" nil nil) |
| 28752 | 28761 | ||
| 28753 | ;;;*** | 28762 | ;;;*** |
| 28754 | 28763 | ||
| 28755 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (18104 | 28764 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (18140 |
| 28756 | ;;;;;; 24773)) | 28765 | ;;;;;; 63039)) |
| 28757 | ;;; Generated autoloads from url/url-file.el | 28766 | ;;; Generated autoloads from url/url-file.el |
| 28758 | 28767 | ||
| 28759 | (autoload (quote url-file) "url-file" "\ | 28768 | (autoload 'url-file "url-file" "\ |
| 28760 | Handle file: and ftp: URLs. | 28769 | Handle file: and ftp: URLs. |
| 28761 | 28770 | ||
| 28762 | \(fn URL CALLBACK CBARGS)" nil nil) | 28771 | \(fn URL CALLBACK CBARGS)" nil nil) |
| @@ -28764,15 +28773,15 @@ Handle file: and ftp: URLs. | |||
| 28764 | ;;;*** | 28773 | ;;;*** |
| 28765 | 28774 | ||
| 28766 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" | 28775 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" |
| 28767 | ;;;;;; "url/url-gw.el" (18104 24773)) | 28776 | ;;;;;; "url/url-gw.el" (18088 55121)) |
| 28768 | ;;; Generated autoloads from url/url-gw.el | 28777 | ;;; Generated autoloads from url/url-gw.el |
| 28769 | 28778 | ||
| 28770 | (autoload (quote url-gateway-nslookup-host) "url-gw" "\ | 28779 | (autoload 'url-gateway-nslookup-host "url-gw" "\ |
| 28771 | Attempt to resolve the given HOST using nslookup if possible. | 28780 | Attempt to resolve the given HOST using nslookup if possible. |
| 28772 | 28781 | ||
| 28773 | \(fn HOST)" t nil) | 28782 | \(fn HOST)" t nil) |
| 28774 | 28783 | ||
| 28775 | (autoload (quote url-open-stream) "url-gw" "\ | 28784 | (autoload 'url-open-stream "url-gw" "\ |
| 28776 | Open a stream to HOST, possibly via a gateway. | 28785 | Open a stream to HOST, possibly via a gateway. |
| 28777 | Args per `open-network-stream'. | 28786 | Args per `open-network-stream'. |
| 28778 | Will not make a connection if `url-gateway-unplugged' is non-nil. | 28787 | Will not make a connection if `url-gateway-unplugged' is non-nil. |
| @@ -28783,8 +28792,8 @@ Might do a non-blocking connection; use `process-status' to check. | |||
| 28783 | ;;;*** | 28792 | ;;;*** |
| 28784 | 28793 | ||
| 28785 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file | 28794 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file |
| 28786 | ;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (18104 | 28795 | ;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (18088 |
| 28787 | ;;;;;; 24773)) | 28796 | ;;;;;; 55121)) |
| 28788 | ;;; Generated autoloads from url/url-handlers.el | 28797 | ;;; Generated autoloads from url/url-handlers.el |
| 28789 | 28798 | ||
| 28790 | (defvar url-handler-mode nil "\ | 28799 | (defvar url-handler-mode nil "\ |
| @@ -28794,14 +28803,14 @@ Setting this variable directly does not take effect; | |||
| 28794 | either customize it (see the info node `Easy Customization') | 28803 | either customize it (see the info node `Easy Customization') |
| 28795 | or call the function `url-handler-mode'.") | 28804 | or call the function `url-handler-mode'.") |
| 28796 | 28805 | ||
| 28797 | (custom-autoload (quote url-handler-mode) "url-handlers" nil) | 28806 | (custom-autoload 'url-handler-mode "url-handlers" nil) |
| 28798 | 28807 | ||
| 28799 | (autoload (quote url-handler-mode) "url-handlers" "\ | 28808 | (autoload 'url-handler-mode "url-handlers" "\ |
| 28800 | Use URL to handle URL-like file names. | 28809 | Use URL to handle URL-like file names. |
| 28801 | 28810 | ||
| 28802 | \(fn &optional ARG)" t nil) | 28811 | \(fn &optional ARG)" t nil) |
| 28803 | 28812 | ||
| 28804 | (autoload (quote url-copy-file) "url-handlers" "\ | 28813 | (autoload 'url-copy-file "url-handlers" "\ |
| 28805 | Copy URL to NEWNAME. Both args must be strings. | 28814 | Copy URL to NEWNAME. Both args must be strings. |
| 28806 | Signals a `file-already-exists' error if file NEWNAME already exists, | 28815 | Signals a `file-already-exists' error if file NEWNAME already exists, |
| 28807 | unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. | 28816 | unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. |
| @@ -28813,14 +28822,14 @@ A prefix arg makes KEEP-TIME non-nil. | |||
| 28813 | 28822 | ||
| 28814 | \(fn URL NEWNAME &optional OK-IF-ALREADY-EXISTS KEEP-TIME)" nil nil) | 28823 | \(fn URL NEWNAME &optional OK-IF-ALREADY-EXISTS KEEP-TIME)" nil nil) |
| 28815 | 28824 | ||
| 28816 | (autoload (quote url-file-local-copy) "url-handlers" "\ | 28825 | (autoload 'url-file-local-copy "url-handlers" "\ |
| 28817 | Copy URL into a temporary file on this machine. | 28826 | Copy URL into a temporary file on this machine. |
| 28818 | Returns the name of the local copy, or nil, if FILE is directly | 28827 | Returns the name of the local copy, or nil, if FILE is directly |
| 28819 | accessible. | 28828 | accessible. |
| 28820 | 28829 | ||
| 28821 | \(fn URL &rest IGNORED)" nil nil) | 28830 | \(fn URL &rest IGNORED)" nil nil) |
| 28822 | 28831 | ||
| 28823 | (autoload (quote url-insert-file-contents) "url-handlers" "\ | 28832 | (autoload 'url-insert-file-contents "url-handlers" "\ |
| 28824 | Not documented | 28833 | Not documented |
| 28825 | 28834 | ||
| 28826 | \(fn URL &optional VISIT BEG END REPLACE)" nil nil) | 28835 | \(fn URL &optional VISIT BEG END REPLACE)" nil nil) |
| @@ -28828,10 +28837,10 @@ Not documented | |||
| 28828 | ;;;*** | 28837 | ;;;*** |
| 28829 | 28838 | ||
| 28830 | ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p | 28839 | ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p |
| 28831 | ;;;;;; url-http) "url-http" "url/url-http.el" (18104 24773)) | 28840 | ;;;;;; url-http) "url-http" "url/url-http.el" (18140 63039)) |
| 28832 | ;;; Generated autoloads from url/url-http.el | 28841 | ;;; Generated autoloads from url/url-http.el |
| 28833 | 28842 | ||
| 28834 | (autoload (quote url-http) "url-http" "\ | 28843 | (autoload 'url-http "url-http" "\ |
| 28835 | Retrieve URL via HTTP asynchronously. | 28844 | Retrieve URL via HTTP asynchronously. |
| 28836 | URL must be a parsed URL. See `url-generic-parse-url' for details. | 28845 | URL must be a parsed URL. See `url-generic-parse-url' for details. |
| 28837 | When retrieval is completed, the function CALLBACK is executed with | 28846 | When retrieval is completed, the function CALLBACK is executed with |
| @@ -28839,19 +28848,19 @@ CBARGS as the arguments. | |||
| 28839 | 28848 | ||
| 28840 | \(fn URL CALLBACK CBARGS)" nil nil) | 28849 | \(fn URL CALLBACK CBARGS)" nil nil) |
| 28841 | 28850 | ||
| 28842 | (autoload (quote url-http-file-exists-p) "url-http" "\ | 28851 | (autoload 'url-http-file-exists-p "url-http" "\ |
| 28843 | Not documented | 28852 | Not documented |
| 28844 | 28853 | ||
| 28845 | \(fn URL)" nil nil) | 28854 | \(fn URL)" nil nil) |
| 28846 | 28855 | ||
| 28847 | (defalias (quote url-http-file-readable-p) (quote url-http-file-exists-p)) | 28856 | (defalias 'url-http-file-readable-p 'url-http-file-exists-p) |
| 28848 | 28857 | ||
| 28849 | (autoload (quote url-http-file-attributes) "url-http" "\ | 28858 | (autoload 'url-http-file-attributes "url-http" "\ |
| 28850 | Not documented | 28859 | Not documented |
| 28851 | 28860 | ||
| 28852 | \(fn URL &optional ID-FORMAT)" nil nil) | 28861 | \(fn URL &optional ID-FORMAT)" nil nil) |
| 28853 | 28862 | ||
| 28854 | (autoload (quote url-http-options) "url-http" "\ | 28863 | (autoload 'url-http-options "url-http" "\ |
| 28855 | Return a property list describing options available for URL. | 28864 | Return a property list describing options available for URL. |
| 28856 | This list is retrieved using the `OPTIONS' HTTP method. | 28865 | This list is retrieved using the `OPTIONS' HTTP method. |
| 28857 | 28866 | ||
| @@ -28885,7 +28894,7 @@ Default HTTPS port.") | |||
| 28885 | (defconst url-https-asynchronous-p t "\ | 28894 | (defconst url-https-asynchronous-p t "\ |
| 28886 | HTTPS retrievals are asynchronous.") | 28895 | HTTPS retrievals are asynchronous.") |
| 28887 | 28896 | ||
| 28888 | (defalias (quote url-https-expand-file-name) (quote url-http-expand-file-name)) | 28897 | (defalias 'url-https-expand-file-name 'url-http-expand-file-name) |
| 28889 | (autoload 'url-https "url-http") | 28898 | (autoload 'url-https "url-http") |
| 28890 | (autoload 'url-https-file-exists-p "url-http") | 28899 | (autoload 'url-https-file-exists-p "url-http") |
| 28891 | (autoload 'url-https-file-readable-p "url-http") | 28900 | (autoload 'url-https-file-readable-p "url-http") |
| @@ -28893,21 +28902,21 @@ HTTPS retrievals are asynchronous.") | |||
| 28893 | 28902 | ||
| 28894 | ;;;*** | 28903 | ;;;*** |
| 28895 | 28904 | ||
| 28896 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (18104 24773)) | 28905 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (18088 55121)) |
| 28897 | ;;; Generated autoloads from url/url-irc.el | 28906 | ;;; Generated autoloads from url/url-irc.el |
| 28898 | 28907 | ||
| 28899 | (autoload (quote url-irc) "url-irc" "\ | 28908 | (autoload 'url-irc "url-irc" "\ |
| 28900 | Not documented | 28909 | Not documented |
| 28901 | 28910 | ||
| 28902 | \(fn URL)" nil nil) | 28911 | \(fn URL)" nil nil) |
| 28903 | 28912 | ||
| 28904 | ;;;*** | 28913 | ;;;*** |
| 28905 | 28914 | ||
| 28906 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (18104 | 28915 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (18088 |
| 28907 | ;;;;;; 24773)) | 28916 | ;;;;;; 55121)) |
| 28908 | ;;; Generated autoloads from url/url-ldap.el | 28917 | ;;; Generated autoloads from url/url-ldap.el |
| 28909 | 28918 | ||
| 28910 | (autoload (quote url-ldap) "url-ldap" "\ | 28919 | (autoload 'url-ldap "url-ldap" "\ |
| 28911 | Perform an LDAP search specified by URL. | 28920 | Perform an LDAP search specified by URL. |
| 28912 | The return value is a buffer displaying the search results in HTML. | 28921 | The return value is a buffer displaying the search results in HTML. |
| 28913 | URL can be a URL string, or a URL vector of the type returned by | 28922 | URL can be a URL string, or a URL vector of the type returned by |
| @@ -28918,15 +28927,15 @@ URL can be a URL string, or a URL vector of the type returned by | |||
| 28918 | ;;;*** | 28927 | ;;;*** |
| 28919 | 28928 | ||
| 28920 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" | 28929 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" |
| 28921 | ;;;;;; (18104 24773)) | 28930 | ;;;;;; (18140 63039)) |
| 28922 | ;;; Generated autoloads from url/url-mailto.el | 28931 | ;;; Generated autoloads from url/url-mailto.el |
| 28923 | 28932 | ||
| 28924 | (autoload (quote url-mail) "url-mailto" "\ | 28933 | (autoload 'url-mail "url-mailto" "\ |
| 28925 | Not documented | 28934 | Not documented |
| 28926 | 28935 | ||
| 28927 | \(fn &rest ARGS)" t nil) | 28936 | \(fn &rest ARGS)" t nil) |
| 28928 | 28937 | ||
| 28929 | (autoload (quote url-mailto) "url-mailto" "\ | 28938 | (autoload 'url-mailto "url-mailto" "\ |
| 28930 | Handle the mailto: URL syntax. | 28939 | Handle the mailto: URL syntax. |
| 28931 | 28940 | ||
| 28932 | \(fn URL)" nil nil) | 28941 | \(fn URL)" nil nil) |
| @@ -28934,31 +28943,31 @@ Handle the mailto: URL syntax. | |||
| 28934 | ;;;*** | 28943 | ;;;*** |
| 28935 | 28944 | ||
| 28936 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info | 28945 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info |
| 28937 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (18104 24773)) | 28946 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (18165 39747)) |
| 28938 | ;;; Generated autoloads from url/url-misc.el | 28947 | ;;; Generated autoloads from url/url-misc.el |
| 28939 | 28948 | ||
| 28940 | (autoload (quote url-man) "url-misc" "\ | 28949 | (autoload 'url-man "url-misc" "\ |
| 28941 | Fetch a Unix manual page URL. | 28950 | Fetch a Unix manual page URL. |
| 28942 | 28951 | ||
| 28943 | \(fn URL)" nil nil) | 28952 | \(fn URL)" nil nil) |
| 28944 | 28953 | ||
| 28945 | (autoload (quote url-info) "url-misc" "\ | 28954 | (autoload 'url-info "url-misc" "\ |
| 28946 | Fetch a GNU Info URL. | 28955 | Fetch a GNU Info URL. |
| 28947 | 28956 | ||
| 28948 | \(fn URL)" nil nil) | 28957 | \(fn URL)" nil nil) |
| 28949 | 28958 | ||
| 28950 | (autoload (quote url-generic-emulator-loader) "url-misc" "\ | 28959 | (autoload 'url-generic-emulator-loader "url-misc" "\ |
| 28951 | Not documented | 28960 | Not documented |
| 28952 | 28961 | ||
| 28953 | \(fn URL)" nil nil) | 28962 | \(fn URL)" nil nil) |
| 28954 | 28963 | ||
| 28955 | (defalias (quote url-rlogin) (quote url-generic-emulator-loader)) | 28964 | (defalias 'url-rlogin 'url-generic-emulator-loader) |
| 28956 | 28965 | ||
| 28957 | (defalias (quote url-telnet) (quote url-generic-emulator-loader)) | 28966 | (defalias 'url-telnet 'url-generic-emulator-loader) |
| 28958 | 28967 | ||
| 28959 | (defalias (quote url-tn3270) (quote url-generic-emulator-loader)) | 28968 | (defalias 'url-tn3270 'url-generic-emulator-loader) |
| 28960 | 28969 | ||
| 28961 | (autoload (quote url-data) "url-misc" "\ | 28970 | (autoload 'url-data "url-misc" "\ |
| 28962 | Fetch a data URL (RFC 2397). | 28971 | Fetch a data URL (RFC 2397). |
| 28963 | 28972 | ||
| 28964 | \(fn URL)" nil nil) | 28973 | \(fn URL)" nil nil) |
| @@ -28966,15 +28975,15 @@ Fetch a data URL (RFC 2397). | |||
| 28966 | ;;;*** | 28975 | ;;;*** |
| 28967 | 28976 | ||
| 28968 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" | 28977 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" |
| 28969 | ;;;;;; (18104 24773)) | 28978 | ;;;;;; (18163 15437)) |
| 28970 | ;;; Generated autoloads from url/url-news.el | 28979 | ;;; Generated autoloads from url/url-news.el |
| 28971 | 28980 | ||
| 28972 | (autoload (quote url-news) "url-news" "\ | 28981 | (autoload 'url-news "url-news" "\ |
| 28973 | Not documented | 28982 | Not documented |
| 28974 | 28983 | ||
| 28975 | \(fn URL)" nil nil) | 28984 | \(fn URL)" nil nil) |
| 28976 | 28985 | ||
| 28977 | (autoload (quote url-snews) "url-news" "\ | 28986 | (autoload 'url-snews "url-news" "\ |
| 28978 | Not documented | 28987 | Not documented |
| 28979 | 28988 | ||
| 28980 | \(fn URL)" nil nil) | 28989 | \(fn URL)" nil nil) |
| @@ -28983,40 +28992,40 @@ Not documented | |||
| 28983 | 28992 | ||
| 28984 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable | 28993 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable |
| 28985 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" | 28994 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" |
| 28986 | ;;;;;; (18104 24773)) | 28995 | ;;;;;; (18088 55121)) |
| 28987 | ;;; Generated autoloads from url/url-ns.el | 28996 | ;;; Generated autoloads from url/url-ns.el |
| 28988 | 28997 | ||
| 28989 | (autoload (quote isPlainHostName) "url-ns" "\ | 28998 | (autoload 'isPlainHostName "url-ns" "\ |
| 28990 | Not documented | 28999 | Not documented |
| 28991 | 29000 | ||
| 28992 | \(fn HOST)" nil nil) | 29001 | \(fn HOST)" nil nil) |
| 28993 | 29002 | ||
| 28994 | (autoload (quote dnsDomainIs) "url-ns" "\ | 29003 | (autoload 'dnsDomainIs "url-ns" "\ |
| 28995 | Not documented | 29004 | Not documented |
| 28996 | 29005 | ||
| 28997 | \(fn HOST DOM)" nil nil) | 29006 | \(fn HOST DOM)" nil nil) |
| 28998 | 29007 | ||
| 28999 | (autoload (quote dnsResolve) "url-ns" "\ | 29008 | (autoload 'dnsResolve "url-ns" "\ |
| 29000 | Not documented | 29009 | Not documented |
| 29001 | 29010 | ||
| 29002 | \(fn HOST)" nil nil) | 29011 | \(fn HOST)" nil nil) |
| 29003 | 29012 | ||
| 29004 | (autoload (quote isResolvable) "url-ns" "\ | 29013 | (autoload 'isResolvable "url-ns" "\ |
| 29005 | Not documented | 29014 | Not documented |
| 29006 | 29015 | ||
| 29007 | \(fn HOST)" nil nil) | 29016 | \(fn HOST)" nil nil) |
| 29008 | 29017 | ||
| 29009 | (autoload (quote isInNet) "url-ns" "\ | 29018 | (autoload 'isInNet "url-ns" "\ |
| 29010 | Not documented | 29019 | Not documented |
| 29011 | 29020 | ||
| 29012 | \(fn IP NET MASK)" nil nil) | 29021 | \(fn IP NET MASK)" nil nil) |
| 29013 | 29022 | ||
| 29014 | (autoload (quote url-ns-prefs) "url-ns" "\ | 29023 | (autoload 'url-ns-prefs "url-ns" "\ |
| 29015 | Not documented | 29024 | Not documented |
| 29016 | 29025 | ||
| 29017 | \(fn &optional FILE)" nil nil) | 29026 | \(fn &optional FILE)" nil nil) |
| 29018 | 29027 | ||
| 29019 | (autoload (quote url-ns-user-pref) "url-ns" "\ | 29028 | (autoload 'url-ns-user-pref "url-ns" "\ |
| 29020 | Not documented | 29029 | Not documented |
| 29021 | 29030 | ||
| 29022 | \(fn KEY &optional DEFAULT)" nil nil) | 29031 | \(fn KEY &optional DEFAULT)" nil nil) |
| @@ -29024,15 +29033,15 @@ Not documented | |||
| 29024 | ;;;*** | 29033 | ;;;*** |
| 29025 | 29034 | ||
| 29026 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" | 29035 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" |
| 29027 | ;;;;;; "url/url-parse.el" (18104 24773)) | 29036 | ;;;;;; "url/url-parse.el" (18140 63039)) |
| 29028 | ;;; Generated autoloads from url/url-parse.el | 29037 | ;;; Generated autoloads from url/url-parse.el |
| 29029 | 29038 | ||
| 29030 | (autoload (quote url-recreate-url) "url-parse" "\ | 29039 | (autoload 'url-recreate-url "url-parse" "\ |
| 29031 | Recreate a URL string from the parsed URLOBJ. | 29040 | Recreate a URL string from the parsed URLOBJ. |
| 29032 | 29041 | ||
| 29033 | \(fn URLOBJ)" nil nil) | 29042 | \(fn URLOBJ)" nil nil) |
| 29034 | 29043 | ||
| 29035 | (autoload (quote url-generic-parse-url) "url-parse" "\ | 29044 | (autoload 'url-generic-parse-url "url-parse" "\ |
| 29036 | Return a vector of the parts of URL. | 29045 | Return a vector of the parts of URL. |
| 29037 | Format is: | 29046 | Format is: |
| 29038 | \[TYPE USER PASSWORD HOST PORT FILE TARGET ATTRIBUTES FULL] | 29047 | \[TYPE USER PASSWORD HOST PORT FILE TARGET ATTRIBUTES FULL] |
| @@ -29042,10 +29051,10 @@ Format is: | |||
| 29042 | ;;;*** | 29051 | ;;;*** |
| 29043 | 29052 | ||
| 29044 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" | 29053 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" |
| 29045 | ;;;;;; (18104 24773)) | 29054 | ;;;;;; (18088 55121)) |
| 29046 | ;;; Generated autoloads from url/url-privacy.el | 29055 | ;;; Generated autoloads from url/url-privacy.el |
| 29047 | 29056 | ||
| 29048 | (autoload (quote url-setup-privacy-info) "url-privacy" "\ | 29057 | (autoload 'url-setup-privacy-info "url-privacy" "\ |
| 29049 | Setup variables that expose info about you and your system. | 29058 | Setup variables that expose info about you and your system. |
| 29050 | 29059 | ||
| 29051 | \(fn)" t nil) | 29060 | \(fn)" t nil) |
| @@ -29054,11 +29063,11 @@ Setup variables that expose info about you and your system. | |||
| 29054 | 29063 | ||
| 29055 | ;;;### (autoloads (url-view-url url-truncate-url-for-viewing url-file-extension | 29064 | ;;;### (autoloads (url-view-url url-truncate-url-for-viewing url-file-extension |
| 29056 | ;;;;;; url-hexify-string url-unhex-string url-parse-query-string | 29065 | ;;;;;; url-hexify-string url-unhex-string url-parse-query-string |
| 29057 | ;;;;;; url-basepath url-percentage url-display-percentage url-pretty-length | 29066 | ;;;;;; url-file-nondirectory url-file-directory url-percentage url-display-percentage |
| 29058 | ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date | 29067 | ;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space |
| 29059 | ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string | 29068 | ;;;;;; url-get-normalized-date url-lazy-message url-normalize-url |
| 29060 | ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" | 29069 | ;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug) |
| 29061 | ;;;;;; (18104 24773)) | 29070 | ;;;;;; "url-util" "url/url-util.el" (18197 21677)) |
| 29062 | ;;; Generated autoloads from url/url-util.el | 29071 | ;;; Generated autoloads from url/url-util.el |
| 29063 | 29072 | ||
| 29064 | (defvar url-debug nil "\ | 29073 | (defvar url-debug nil "\ |
| @@ -29069,19 +29078,19 @@ If t, all messages will be logged. | |||
| 29069 | If a number, all messages will be logged, as well shown via `message'. | 29078 | If a number, all messages will be logged, as well shown via `message'. |
| 29070 | If a list, it is a list of the types of messages to be logged.") | 29079 | If a list, it is a list of the types of messages to be logged.") |
| 29071 | 29080 | ||
| 29072 | (custom-autoload (quote url-debug) "url-util" t) | 29081 | (custom-autoload 'url-debug "url-util" t) |
| 29073 | 29082 | ||
| 29074 | (autoload (quote url-debug) "url-util" "\ | 29083 | (autoload 'url-debug "url-util" "\ |
| 29075 | Not documented | 29084 | Not documented |
| 29076 | 29085 | ||
| 29077 | \(fn TAG &rest ARGS)" nil nil) | 29086 | \(fn TAG &rest ARGS)" nil nil) |
| 29078 | 29087 | ||
| 29079 | (autoload (quote url-parse-args) "url-util" "\ | 29088 | (autoload 'url-parse-args "url-util" "\ |
| 29080 | Not documented | 29089 | Not documented |
| 29081 | 29090 | ||
| 29082 | \(fn STR &optional NODOWNCASE)" nil nil) | 29091 | \(fn STR &optional NODOWNCASE)" nil nil) |
| 29083 | 29092 | ||
| 29084 | (autoload (quote url-insert-entities-in-string) "url-util" "\ | 29093 | (autoload 'url-insert-entities-in-string "url-util" "\ |
| 29085 | Convert HTML markup-start characters to entity references in STRING. | 29094 | Convert HTML markup-start characters to entity references in STRING. |
| 29086 | Also replaces the \" character, so that the result may be safely used as | 29095 | Also replaces the \" character, so that the result may be safely used as |
| 29087 | an attribute value in a tag. Returns a new string with the result of the | 29096 | an attribute value in a tag. Returns a new string with the result of the |
| @@ -29093,59 +29102,64 @@ Also replaces the \" character, so that the result may be safely used as | |||
| 29093 | 29102 | ||
| 29094 | \(fn STRING)" nil nil) | 29103 | \(fn STRING)" nil nil) |
| 29095 | 29104 | ||
| 29096 | (autoload (quote url-normalize-url) "url-util" "\ | 29105 | (autoload 'url-normalize-url "url-util" "\ |
| 29097 | Return a 'normalized' version of URL. | 29106 | Return a 'normalized' version of URL. |
| 29098 | Strips out default port numbers, etc. | 29107 | Strips out default port numbers, etc. |
| 29099 | 29108 | ||
| 29100 | \(fn URL)" nil nil) | 29109 | \(fn URL)" nil nil) |
| 29101 | 29110 | ||
| 29102 | (autoload (quote url-lazy-message) "url-util" "\ | 29111 | (autoload 'url-lazy-message "url-util" "\ |
| 29103 | Just like `message', but is a no-op if called more than once a second. | 29112 | Just like `message', but is a no-op if called more than once a second. |
| 29104 | Will not do anything if `url-show-status' is nil. | 29113 | Will not do anything if `url-show-status' is nil. |
| 29105 | 29114 | ||
| 29106 | \(fn &rest ARGS)" nil nil) | 29115 | \(fn &rest ARGS)" nil nil) |
| 29107 | 29116 | ||
| 29108 | (autoload (quote url-get-normalized-date) "url-util" "\ | 29117 | (autoload 'url-get-normalized-date "url-util" "\ |
| 29109 | Return a 'real' date string that most HTTP servers can understand. | 29118 | Return a 'real' date string that most HTTP servers can understand. |
| 29110 | 29119 | ||
| 29111 | \(fn &optional SPECIFIED-TIME)" nil nil) | 29120 | \(fn &optional SPECIFIED-TIME)" nil nil) |
| 29112 | 29121 | ||
| 29113 | (autoload (quote url-eat-trailing-space) "url-util" "\ | 29122 | (autoload 'url-eat-trailing-space "url-util" "\ |
| 29114 | Remove spaces/tabs at the end of a string. | 29123 | Remove spaces/tabs at the end of a string. |
| 29115 | 29124 | ||
| 29116 | \(fn X)" nil nil) | 29125 | \(fn X)" nil nil) |
| 29117 | 29126 | ||
| 29118 | (autoload (quote url-strip-leading-spaces) "url-util" "\ | 29127 | (autoload 'url-strip-leading-spaces "url-util" "\ |
| 29119 | Remove spaces at the front of a string. | 29128 | Remove spaces at the front of a string. |
| 29120 | 29129 | ||
| 29121 | \(fn X)" nil nil) | 29130 | \(fn X)" nil nil) |
| 29122 | 29131 | ||
| 29123 | (autoload (quote url-pretty-length) "url-util" "\ | 29132 | (autoload 'url-pretty-length "url-util" "\ |
| 29124 | Not documented | 29133 | Not documented |
| 29125 | 29134 | ||
| 29126 | \(fn N)" nil nil) | 29135 | \(fn N)" nil nil) |
| 29127 | 29136 | ||
| 29128 | (autoload (quote url-display-percentage) "url-util" "\ | 29137 | (autoload 'url-display-percentage "url-util" "\ |
| 29129 | Not documented | 29138 | Not documented |
| 29130 | 29139 | ||
| 29131 | \(fn FMT PERC &rest ARGS)" nil nil) | 29140 | \(fn FMT PERC &rest ARGS)" nil nil) |
| 29132 | 29141 | ||
| 29133 | (autoload (quote url-percentage) "url-util" "\ | 29142 | (autoload 'url-percentage "url-util" "\ |
| 29134 | Not documented | 29143 | Not documented |
| 29135 | 29144 | ||
| 29136 | \(fn X Y)" nil nil) | 29145 | \(fn X Y)" nil nil) |
| 29137 | 29146 | ||
| 29138 | (autoload (quote url-basepath) "url-util" "\ | 29147 | (autoload 'url-file-directory "url-util" "\ |
| 29139 | Return the base pathname of FILE, or the actual filename if X is true. | 29148 | Return the directory part of FILE, for a URL. |
| 29149 | |||
| 29150 | \(fn FILE)" nil nil) | ||
| 29140 | 29151 | ||
| 29141 | \(fn FILE &optional X)" nil nil) | 29152 | (autoload 'url-file-nondirectory "url-util" "\ |
| 29153 | Return the nondirectory part of FILE, for a URL. | ||
| 29154 | |||
| 29155 | \(fn FILE)" nil nil) | ||
| 29142 | 29156 | ||
| 29143 | (autoload (quote url-parse-query-string) "url-util" "\ | 29157 | (autoload 'url-parse-query-string "url-util" "\ |
| 29144 | Not documented | 29158 | Not documented |
| 29145 | 29159 | ||
| 29146 | \(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)" nil nil) | 29160 | \(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)" nil nil) |
| 29147 | 29161 | ||
| 29148 | (autoload (quote url-unhex-string) "url-util" "\ | 29162 | (autoload 'url-unhex-string "url-util" "\ |
| 29149 | Remove %XX embedded spaces, etc in a url. | 29163 | Remove %XX embedded spaces, etc in a url. |
| 29150 | If optional second argument ALLOW-NEWLINES is non-nil, then allow the | 29164 | If optional second argument ALLOW-NEWLINES is non-nil, then allow the |
| 29151 | decoding of carriage returns and line feeds in the string, which is normally | 29165 | decoding of carriage returns and line feeds in the string, which is normally |
| @@ -29153,7 +29167,7 @@ forbidden in URL encoding. | |||
| 29153 | 29167 | ||
| 29154 | \(fn STR &optional ALLOW-NEWLINES)" nil nil) | 29168 | \(fn STR &optional ALLOW-NEWLINES)" nil nil) |
| 29155 | 29169 | ||
| 29156 | (autoload (quote url-hexify-string) "url-util" "\ | 29170 | (autoload 'url-hexify-string "url-util" "\ |
| 29157 | Return a new string that is STRING URI-encoded. | 29171 | Return a new string that is STRING URI-encoded. |
| 29158 | First, STRING is converted to utf-8, if necessary. Then, for each | 29172 | First, STRING is converted to utf-8, if necessary. Then, for each |
| 29159 | character in the utf-8 string, those found in `url-unreserved-chars' | 29173 | character in the utf-8 string, those found in `url-unreserved-chars' |
| @@ -29162,20 +29176,20 @@ string: \"%\" followed by two lowercase hex digits. | |||
| 29162 | 29176 | ||
| 29163 | \(fn STRING)" nil nil) | 29177 | \(fn STRING)" nil nil) |
| 29164 | 29178 | ||
| 29165 | (autoload (quote url-file-extension) "url-util" "\ | 29179 | (autoload 'url-file-extension "url-util" "\ |
| 29166 | Return the filename extension of FNAME. | 29180 | Return the filename extension of FNAME. |
| 29167 | If optional variable X is t, | 29181 | If optional variable X is t, |
| 29168 | then return the basename of the file with the extension stripped off. | 29182 | then return the basename of the file with the extension stripped off. |
| 29169 | 29183 | ||
| 29170 | \(fn FNAME &optional X)" nil nil) | 29184 | \(fn FNAME &optional X)" nil nil) |
| 29171 | 29185 | ||
| 29172 | (autoload (quote url-truncate-url-for-viewing) "url-util" "\ | 29186 | (autoload 'url-truncate-url-for-viewing "url-util" "\ |
| 29173 | Return a shortened version of URL that is WIDTH characters or less wide. | 29187 | Return a shortened version of URL that is WIDTH characters or less wide. |
| 29174 | WIDTH defaults to the current frame width. | 29188 | WIDTH defaults to the current frame width. |
| 29175 | 29189 | ||
| 29176 | \(fn URL &optional WIDTH)" nil nil) | 29190 | \(fn URL &optional WIDTH)" nil nil) |
| 29177 | 29191 | ||
| 29178 | (autoload (quote url-view-url) "url-util" "\ | 29192 | (autoload 'url-view-url "url-util" "\ |
| 29179 | View the current document's URL. | 29193 | View the current document's URL. |
| 29180 | Optional argument NO-SHOW means just return the URL, don't show it in | 29194 | Optional argument NO-SHOW means just return the URL, don't show it in |
| 29181 | the minibuffer. | 29195 | the minibuffer. |
| @@ -29187,10 +29201,10 @@ This uses `url-current-object', set locally to the buffer. | |||
| 29187 | ;;;*** | 29201 | ;;;*** |
| 29188 | 29202 | ||
| 29189 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) | 29203 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) |
| 29190 | ;;;;;; "userlock" "userlock.el" (18104 24740)) | 29204 | ;;;;;; "userlock" "userlock.el" (18120 34749)) |
| 29191 | ;;; Generated autoloads from userlock.el | 29205 | ;;; Generated autoloads from userlock.el |
| 29192 | 29206 | ||
| 29193 | (autoload (quote ask-user-about-lock) "userlock" "\ | 29207 | (autoload 'ask-user-about-lock "userlock" "\ |
| 29194 | Ask user what to do when he wants to edit FILE but it is locked by OPPONENT. | 29208 | Ask user what to do when he wants to edit FILE but it is locked by OPPONENT. |
| 29195 | This function has a choice of three things to do: | 29209 | This function has a choice of three things to do: |
| 29196 | do (signal 'file-locked (list FILE OPPONENT)) | 29210 | do (signal 'file-locked (list FILE OPPONENT)) |
| @@ -29202,7 +29216,7 @@ in any way you like. | |||
| 29202 | 29216 | ||
| 29203 | \(fn FILE OPPONENT)" nil nil) | 29217 | \(fn FILE OPPONENT)" nil nil) |
| 29204 | 29218 | ||
| 29205 | (autoload (quote ask-user-about-supersession-threat) "userlock" "\ | 29219 | (autoload 'ask-user-about-supersession-threat "userlock" "\ |
| 29206 | Ask a user who is about to modify an obsolete buffer what to do. | 29220 | Ask a user who is about to modify an obsolete buffer what to do. |
| 29207 | This function has two choices: it can return, in which case the modification | 29221 | This function has two choices: it can return, in which case the modification |
| 29208 | of the buffer will proceed, or it can (signal 'file-supersession (file)), | 29222 | of the buffer will proceed, or it can (signal 'file-supersession (file)), |
| @@ -29215,7 +29229,7 @@ The buffer in question is current when this function is called. | |||
| 29215 | 29229 | ||
| 29216 | ;;;*** | 29230 | ;;;*** |
| 29217 | 29231 | ||
| 29218 | ;;;### (autoloads nil "utf-7" "international/utf-7.el" (18104 24757)) | 29232 | ;;;### (autoloads nil "utf-7" "international/utf-7.el" (18088 55108)) |
| 29219 | ;;; Generated autoloads from international/utf-7.el | 29233 | ;;; Generated autoloads from international/utf-7.el |
| 29220 | (autoload-coding-system 'utf-7 '(require 'utf-7)) | 29234 | (autoload-coding-system 'utf-7 '(require 'utf-7)) |
| 29221 | 29235 | ||
| @@ -29223,23 +29237,23 @@ The buffer in question is current when this function is called. | |||
| 29223 | 29237 | ||
| 29224 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal | 29238 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal |
| 29225 | ;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el" | 29239 | ;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el" |
| 29226 | ;;;;;; (18104 24755)) | 29240 | ;;;;;; (18212 46007)) |
| 29227 | ;;; Generated autoloads from gnus/uudecode.el | 29241 | ;;; Generated autoloads from gnus/uudecode.el |
| 29228 | 29242 | ||
| 29229 | (autoload (quote uudecode-decode-region-external) "uudecode" "\ | 29243 | (autoload 'uudecode-decode-region-external "uudecode" "\ |
| 29230 | Uudecode region between START and END using external program. | 29244 | Uudecode region between START and END using external program. |
| 29231 | If FILE-NAME is non-nil, save the result to FILE-NAME. The program | 29245 | If FILE-NAME is non-nil, save the result to FILE-NAME. The program |
| 29232 | used is specified by `uudecode-decoder-program'. | 29246 | used is specified by `uudecode-decoder-program'. |
| 29233 | 29247 | ||
| 29234 | \(fn START END &optional FILE-NAME)" t nil) | 29248 | \(fn START END &optional FILE-NAME)" t nil) |
| 29235 | 29249 | ||
| 29236 | (autoload (quote uudecode-decode-region-internal) "uudecode" "\ | 29250 | (autoload 'uudecode-decode-region-internal "uudecode" "\ |
| 29237 | Uudecode region between START and END without using an external program. | 29251 | Uudecode region between START and END without using an external program. |
| 29238 | If FILE-NAME is non-nil, save the result to FILE-NAME. | 29252 | If FILE-NAME is non-nil, save the result to FILE-NAME. |
| 29239 | 29253 | ||
| 29240 | \(fn START END &optional FILE-NAME)" t nil) | 29254 | \(fn START END &optional FILE-NAME)" t nil) |
| 29241 | 29255 | ||
| 29242 | (autoload (quote uudecode-decode-region) "uudecode" "\ | 29256 | (autoload 'uudecode-decode-region "uudecode" "\ |
| 29243 | Uudecode region between START and END. | 29257 | Uudecode region between START and END. |
| 29244 | If FILE-NAME is non-nil, save the result to FILE-NAME. | 29258 | If FILE-NAME is non-nil, save the result to FILE-NAME. |
| 29245 | 29259 | ||
| @@ -29247,53 +29261,44 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 29247 | 29261 | ||
| 29248 | ;;;*** | 29262 | ;;;*** |
| 29249 | 29263 | ||
| 29250 | ;;;### (autoloads (vc-annotate vc-update-change-log vc-rename-file | 29264 | ;;;### (autoloads (vc-annotate vc-branch-part vc-trunk-p vc-update-change-log |
| 29251 | ;;;;;; vc-transfer-file vc-switch-backend vc-rollback vc-update | 29265 | ;;;;;; vc-rename-file vc-transfer-file vc-switch-backend vc-update |
| 29252 | ;;;;;; vc-revert vc-print-log vc-retrieve-snapshot vc-create-snapshot | 29266 | ;;;;;; vc-rollback vc-revert vc-print-log vc-retrieve-snapshot vc-create-snapshot |
| 29253 | ;;;;;; vc-directory vc-merge vc-insert-headers vc-revision-other-window | 29267 | ;;;;;; vc-directory vc-merge vc-insert-headers vc-revision-other-window |
| 29254 | ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file | 29268 | ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-do-command |
| 29255 | ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook | 29269 | ;;;;;; edit-vc-file with-vc-file vc-before-checkin-hook vc-checkin-hook |
| 29256 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (18104 24741)) | 29270 | ;;;;;; vc-checkout-hook) "vc" "vc.el" (18214 4763)) |
| 29257 | ;;; Generated autoloads from vc.el | 29271 | ;;; Generated autoloads from vc.el |
| 29258 | 29272 | ||
| 29259 | (defvar vc-checkout-hook nil "\ | 29273 | (defvar vc-checkout-hook nil "\ |
| 29260 | Normal hook (list of functions) run after checking out a file. | 29274 | Normal hook (list of functions) run after checking out a file. |
| 29261 | See `run-hooks'.") | 29275 | See `run-hooks'.") |
| 29262 | 29276 | ||
| 29263 | (custom-autoload (quote vc-checkout-hook) "vc" t) | 29277 | (custom-autoload 'vc-checkout-hook "vc" t) |
| 29264 | 29278 | ||
| 29265 | (defvar vc-checkin-hook nil "\ | 29279 | (defvar vc-checkin-hook nil "\ |
| 29266 | Normal hook (list of functions) run after a checkin is done. | 29280 | Normal hook (list of functions) run after commit or file checkin. |
| 29267 | See also `log-edit-done-hook'.") | 29281 | See also `log-edit-done-hook'.") |
| 29268 | 29282 | ||
| 29269 | (custom-autoload (quote vc-checkin-hook) "vc" t) | 29283 | (custom-autoload 'vc-checkin-hook "vc" t) |
| 29270 | 29284 | ||
| 29271 | (defvar vc-before-checkin-hook nil "\ | 29285 | (defvar vc-before-checkin-hook nil "\ |
| 29272 | Normal hook (list of functions) run before a file is checked in. | 29286 | Normal hook (list of functions) run before a commit or a file checkin. |
| 29273 | See `run-hooks'.") | 29287 | See `run-hooks'.") |
| 29274 | 29288 | ||
| 29275 | (custom-autoload (quote vc-before-checkin-hook) "vc" t) | 29289 | (custom-autoload 'vc-before-checkin-hook "vc" t) |
| 29276 | 29290 | ||
| 29277 | (autoload (quote vc-trunk-p) "vc" "\ | 29291 | (autoload 'with-vc-file "vc" "\ |
| 29278 | Return t if REV is a revision on the trunk. | ||
| 29279 | |||
| 29280 | \(fn REV)" nil nil) | ||
| 29281 | |||
| 29282 | (autoload (quote vc-branch-part) "vc" "\ | ||
| 29283 | Return the branch part of a revision number REV. | ||
| 29284 | |||
| 29285 | \(fn REV)" nil nil) | ||
| 29286 | |||
| 29287 | (autoload (quote with-vc-file) "vc" "\ | ||
| 29288 | Check out a writable copy of FILE if necessary, then execute BODY. | 29292 | Check out a writable copy of FILE if necessary, then execute BODY. |
| 29289 | Check in FILE with COMMENT (a string) after BODY has been executed. | 29293 | Check in FILE with COMMENT (a string) after BODY has been executed. |
| 29290 | FILE is passed through `expand-file-name'; BODY executed within | 29294 | FILE is passed through `expand-file-name'; BODY executed within |
| 29291 | `save-excursion'. If FILE is not under version control, or locked by | 29295 | `save-excursion'. If FILE is not under version control, or you are |
| 29296 | using a locking version-control system and the file is locked by | ||
| 29292 | somebody else, signal error. | 29297 | somebody else, signal error. |
| 29293 | 29298 | ||
| 29294 | \(fn FILE COMMENT &rest BODY)" nil (quote macro)) | 29299 | \(fn FILE COMMENT &rest BODY)" nil (quote macro)) |
| 29295 | 29300 | ||
| 29296 | (autoload (quote edit-vc-file) "vc" "\ | 29301 | (autoload 'edit-vc-file "vc" "\ |
| 29297 | Edit FILE under version control, executing body. | 29302 | Edit FILE under version control, executing body. |
| 29298 | Checkin with COMMENT after executing BODY. | 29303 | Checkin with COMMENT after executing BODY. |
| 29299 | This macro uses `with-vc-file', passing args to it. | 29304 | This macro uses `with-vc-file', passing args to it. |
| @@ -29301,7 +29306,7 @@ However, before executing BODY, find FILE, and after BODY, save buffer. | |||
| 29301 | 29306 | ||
| 29302 | \(fn FILE COMMENT &rest BODY)" nil (quote macro)) | 29307 | \(fn FILE COMMENT &rest BODY)" nil (quote macro)) |
| 29303 | 29308 | ||
| 29304 | (autoload (quote vc-do-command) "vc" "\ | 29309 | (autoload 'vc-do-command "vc" "\ |
| 29305 | Execute a VC command, notifying user and checking for errors. | 29310 | Execute a VC command, notifying user and checking for errors. |
| 29306 | Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the | 29311 | Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the |
| 29307 | current buffer if BUFFER is t. If the destination buffer is not | 29312 | current buffer if BUFFER is t. If the destination buffer is not |
| @@ -29310,47 +29315,37 @@ considered successful if its exit status does not exceed OKSTATUS (if | |||
| 29310 | OKSTATUS is nil, that means to ignore error status, if it is `async', that | 29315 | OKSTATUS is nil, that means to ignore error status, if it is `async', that |
| 29311 | means not to wait for termination of the subprocess; if it is t it means to | 29316 | means not to wait for termination of the subprocess; if it is t it means to |
| 29312 | ignore all execution errors). FILE-OR-LIST is the name of a working file; | 29317 | ignore all execution errors). FILE-OR-LIST is the name of a working file; |
| 29313 | it may be a list of files or be nil (to execute commands that don't expect | 29318 | it may be a list of files or be nil (to execute commands that don't expect |
| 29314 | a file name or set of files). If an optional list of FLAGS is present, | 29319 | a file name or set of files). If an optional list of FLAGS is present, |
| 29315 | that is inserted into the command line before the filename. | 29320 | that is inserted into the command line before the filename. |
| 29316 | 29321 | ||
| 29317 | \(fn BUFFER OKSTATUS COMMAND FILE-OR-LIST &rest FLAGS)" nil nil) | 29322 | \(fn BUFFER OKSTATUS COMMAND FILE-OR-LIST &rest FLAGS)" nil nil) |
| 29318 | 29323 | ||
| 29319 | (autoload (quote vc-next-action) "vc" "\ | 29324 | (autoload 'vc-next-action "vc" "\ |
| 29320 | Do the next logical version control operation on the current file. | 29325 | Do the next logical version control operation on the current fileset. |
| 29321 | 29326 | This requires that all files in the fileset be in the same state. | |
| 29322 | If you call this from within a VC dired buffer with no files marked, | ||
| 29323 | it will operate on the file in the current line. | ||
| 29324 | |||
| 29325 | If you call this from within a VC dired buffer, and one or more | ||
| 29326 | files are marked, it will accept a log message and then operate on | ||
| 29327 | each one. The log message will be used as a comment for any register | ||
| 29328 | or checkin operations, but ignored when doing checkouts. Attempted | ||
| 29329 | lock steals will raise an error. | ||
| 29330 | 29327 | ||
| 29331 | A prefix argument lets you specify the version number to use. | 29328 | For locking systems: |
| 29332 | 29329 | If every file is not already registered, this registers each for version | |
| 29333 | For RCS and SCCS files: | ||
| 29334 | If the file is not already registered, this registers it for version | ||
| 29335 | control. | 29330 | control. |
| 29336 | If the file is registered and not locked by anyone, this checks out | 29331 | If every file is registered and not locked by anyone, this checks out |
| 29337 | a writable and locked file ready for editing. | 29332 | a writable and locked file of each ready for editing. |
| 29338 | If the file is checked out and locked by the calling user, this | 29333 | If every file is checked out and locked by the calling user, this |
| 29339 | first checks to see if the file has changed since checkout. If not, | 29334 | first checks to see if each file has changed since checkout. If not, |
| 29340 | it performs a revert. | 29335 | it performs a revert on that file. |
| 29341 | If the file has been changed, this pops up a buffer for entry | 29336 | If every file has been changed, this pops up a buffer for entry |
| 29342 | of a log message; when the message has been entered, it checks in the | 29337 | of a log message; when the message has been entered, it checks in the |
| 29343 | resulting changes along with the log message as change commentary. If | 29338 | resulting changes along with the log message as change commentary. If |
| 29344 | the variable `vc-keep-workfiles' is non-nil (which is its default), a | 29339 | the variable `vc-keep-workfiles' is non-nil (which is its default), a |
| 29345 | read-only copy of the changed file is left in place afterwards. | 29340 | read-only copy of each changed file is left in place afterwards. |
| 29346 | If the file is registered and locked by someone else, you are given | 29341 | If the affected file is registered and locked by someone else, you are |
| 29347 | the option to steal the lock. | 29342 | given the option to steal the lock(s). |
| 29348 | 29343 | ||
| 29349 | For CVS files: | 29344 | For merging systems: |
| 29350 | If the file is not already registered, this registers it for version | 29345 | If every file is not already registered, this registers each one for version |
| 29351 | control. This does a \"cvs add\", but no \"cvs commit\". | 29346 | control. This does an add, but not a commit. |
| 29352 | If the file is added but not committed, it is committed. | 29347 | If every file is added but not committed, each one is committed. |
| 29353 | If your working file is changed, but the repository file is | 29348 | If every working file is changed, but the corresponding repository file is |
| 29354 | unchanged, this pops up a buffer for entry of a log message; when the | 29349 | unchanged, this pops up a buffer for entry of a log message; when the |
| 29355 | message has been entered, it checks in the resulting changes along | 29350 | message has been entered, it checks in the resulting changes along |
| 29356 | with the logmessage as change commentary. A writable file is retained. | 29351 | with the logmessage as change commentary. A writable file is retained. |
| @@ -29359,9 +29354,9 @@ merge in the changes into your working copy. | |||
| 29359 | 29354 | ||
| 29360 | \(fn VERBOSE)" t nil) | 29355 | \(fn VERBOSE)" t nil) |
| 29361 | 29356 | ||
| 29362 | (autoload (quote vc-register) "vc" "\ | 29357 | (autoload 'vc-register "vc" "\ |
| 29363 | Register the current file into a version control system. | 29358 | Register the current file into a version control system. |
| 29364 | With prefix argument SET-VERSION, allow user to specify initial version | 29359 | With prefix argument SET-REVISION, allow user to specify initial revision |
| 29365 | level. If COMMENT is present, use that as an initial comment. | 29360 | level. If COMMENT is present, use that as an initial comment. |
| 29366 | 29361 | ||
| 29367 | The version control system to use is found by cycling through the list | 29362 | The version control system to use is found by cycling through the list |
| @@ -29371,47 +29366,56 @@ directory are already registered under that backend) will be used to | |||
| 29371 | register the file. If no backend declares itself responsible, the | 29366 | register the file. If no backend declares itself responsible, the |
| 29372 | first backend that could register the file is used. | 29367 | first backend that could register the file is used. |
| 29373 | 29368 | ||
| 29374 | \(fn &optional SET-VERSION COMMENT)" t nil) | 29369 | \(fn &optional SET-REVISION COMMENT)" t nil) |
| 29370 | |||
| 29371 | (autoload 'vc-version-diff "vc" "\ | ||
| 29372 | Report diffs between revisions of the fileset in the repository history. | ||
| 29373 | |||
| 29374 | \(fn FILES REV1 REV2)" t nil) | ||
| 29375 | 29375 | ||
| 29376 | (autoload (quote vc-diff) "vc" "\ | 29376 | (autoload 'vc-diff "vc" "\ |
| 29377 | Display diffs between file versions. | 29377 | Display diffs between file revisions. |
| 29378 | Normally this compares the current file and buffer with the most | 29378 | Normally this compares the currently selected fileset with their |
| 29379 | recent checked in version of that file. This uses no arguments. With | 29379 | working revisions. With a prefix argument HISTORIC, it reads two revision |
| 29380 | a prefix argument HISTORIC, it reads the file name to use and two | 29380 | designators specifying which revisions to compare. |
| 29381 | version designators specifying which versions to compare. The | 29381 | |
| 29382 | optional argument NOT-URGENT non-nil means it is ok to say no to | 29382 | If no current fileset is available (that is, we are not in |
| 29383 | VC-Dired mode and the visited file of the current buffer is not | ||
| 29384 | under version control) and we're in a Dired buffer, use | ||
| 29385 | the current directory. | ||
| 29386 | The optional argument NOT-URGENT non-nil means it is ok to say no to | ||
| 29383 | saving the buffer. | 29387 | saving the buffer. |
| 29384 | 29388 | ||
| 29385 | \(fn HISTORIC &optional NOT-URGENT)" t nil) | 29389 | \(fn HISTORIC &optional NOT-URGENT)" t nil) |
| 29386 | 29390 | ||
| 29387 | (autoload (quote vc-revision-other-window) "vc" "\ | 29391 | (autoload 'vc-revision-other-window "vc" "\ |
| 29388 | Visit version REV of the current file in another window. | 29392 | Visit revision REV of the current file in another window. |
| 29389 | If the current file is named `F', the version is named `F.~REV~'. | 29393 | If the current file is named `F', the revision is named `F.~REV~'. |
| 29390 | If `F.~REV~' already exists, use it instead of checking it out again. | 29394 | If `F.~REV~' already exists, use it instead of checking it out again. |
| 29391 | 29395 | ||
| 29392 | \(fn REV)" t nil) | 29396 | \(fn REV)" t nil) |
| 29393 | 29397 | ||
| 29394 | (autoload (quote vc-insert-headers) "vc" "\ | 29398 | (autoload 'vc-insert-headers "vc" "\ |
| 29395 | Insert headers into a file for use with a version control system. | 29399 | Insert headers into a file for use with a version control system. |
| 29396 | Headers desired are inserted at point, and are pulled from | 29400 | Headers desired are inserted at point, and are pulled from |
| 29397 | the variable `vc-BACKEND-header'. | 29401 | the variable `vc-BACKEND-header'. |
| 29398 | 29402 | ||
| 29399 | \(fn)" t nil) | 29403 | \(fn)" t nil) |
| 29400 | 29404 | ||
| 29401 | (autoload (quote vc-merge) "vc" "\ | 29405 | (autoload 'vc-merge "vc" "\ |
| 29402 | Merge changes between two versions into the current buffer's file. | 29406 | Merge changes between two revisions into the current buffer's file. |
| 29403 | This asks for two versions to merge from in the minibuffer. If the | 29407 | This asks for two revisions to merge from in the minibuffer. If the |
| 29404 | first version is a branch number, then merge all changes from that | 29408 | first revision is a branch number, then merge all changes from that |
| 29405 | branch. If the first version is empty, merge news, i.e. recent changes | 29409 | branch. If the first revision is empty, merge news, i.e. recent changes |
| 29406 | from the current branch. | 29410 | from the current branch. |
| 29407 | 29411 | ||
| 29408 | See Info node `Merging'. | 29412 | See Info node `Merging'. |
| 29409 | 29413 | ||
| 29410 | \(fn)" t nil) | 29414 | \(fn)" t nil) |
| 29411 | 29415 | ||
| 29412 | (defalias (quote vc-resolve-conflicts) (quote smerge-ediff)) | 29416 | (defalias 'vc-resolve-conflicts 'smerge-ediff) |
| 29413 | 29417 | ||
| 29414 | (autoload (quote vc-directory) "vc" "\ | 29418 | (autoload 'vc-directory "vc" "\ |
| 29415 | Create a buffer in VC Dired Mode for directory DIR. | 29419 | Create a buffer in VC Dired Mode for directory DIR. |
| 29416 | 29420 | ||
| 29417 | See Info node `VC Dired Mode'. | 29421 | See Info node `VC Dired Mode'. |
| @@ -29421,53 +29425,56 @@ With prefix arg READ-SWITCHES, specify a value to override | |||
| 29421 | 29425 | ||
| 29422 | \(fn DIR READ-SWITCHES)" t nil) | 29426 | \(fn DIR READ-SWITCHES)" t nil) |
| 29423 | 29427 | ||
| 29424 | (autoload (quote vc-create-snapshot) "vc" "\ | 29428 | (autoload 'vc-create-snapshot "vc" "\ |
| 29425 | Descending recursively from DIR, make a snapshot called NAME. | 29429 | Descending recursively from DIR, make a snapshot called NAME. |
| 29426 | For each registered file, the version level of its latest version | 29430 | For each registered file, the working revision becomes part of |
| 29427 | becomes part of the named configuration. If the prefix argument | 29431 | the named configuration. If the prefix argument BRANCHP is |
| 29428 | BRANCHP is given, the snapshot is made as a new branch and the files | 29432 | given, the snapshot is made as a new branch and the files are |
| 29429 | are checked out in that new branch. | 29433 | checked out in that new branch. |
| 29430 | 29434 | ||
| 29431 | \(fn DIR NAME BRANCHP)" t nil) | 29435 | \(fn DIR NAME BRANCHP)" t nil) |
| 29432 | 29436 | ||
| 29433 | (autoload (quote vc-retrieve-snapshot) "vc" "\ | 29437 | (autoload 'vc-retrieve-snapshot "vc" "\ |
| 29434 | Descending recursively from DIR, retrieve the snapshot called NAME. | 29438 | Descending recursively from DIR, retrieve the snapshot called NAME. |
| 29435 | If NAME is empty, it refers to the latest versions. | 29439 | If NAME is empty, it refers to the latest revisions. |
| 29436 | If locking is used for the files in DIR, then there must not be any | 29440 | If locking is used for the files in DIR, then there must not be any |
| 29437 | locked files at or below DIR (but if NAME is empty, locked files are | 29441 | locked files at or below DIR (but if NAME is empty, locked files are |
| 29438 | allowed and simply skipped). | 29442 | allowed and simply skipped). |
| 29439 | 29443 | ||
| 29440 | \(fn DIR NAME)" t nil) | 29444 | \(fn DIR NAME)" t nil) |
| 29441 | 29445 | ||
| 29442 | (autoload (quote vc-print-log) "vc" "\ | 29446 | (autoload 'vc-print-log "vc" "\ |
| 29443 | List the change log of the current buffer in a window. | 29447 | List the change log of the current fileset in a window. |
| 29444 | If FOCUS-REV is non-nil, leave the point at that revision. | 29448 | If WORKING-REVISION is non-nil, leave the point at that revision. |
| 29445 | 29449 | ||
| 29446 | \(fn &optional FOCUS-REV)" t nil) | 29450 | \(fn &optional WORKING-REVISION)" t nil) |
| 29447 | 29451 | ||
| 29448 | (autoload (quote vc-revert) "vc" "\ | 29452 | (autoload 'vc-revert "vc" "\ |
| 29449 | Revert the current buffer's file to the version it was based on. | 29453 | Revert working copies of the selected fileset to their repository contents. |
| 29450 | This asks for confirmation if the buffer contents are not identical | 29454 | This asks for confirmation if the buffer contents are not identical |
| 29451 | to that version. This function does not automatically pick up newer | 29455 | to the working revision (except for keyword expansion). |
| 29452 | changes found in the master file; use \\[universal-argument] \\[vc-next-action] to do so. | ||
| 29453 | 29456 | ||
| 29454 | \(fn)" t nil) | 29457 | \(fn)" t nil) |
| 29455 | 29458 | ||
| 29456 | (autoload (quote vc-update) "vc" "\ | 29459 | (autoload 'vc-rollback "vc" "\ |
| 29457 | Update the current buffer's file to the latest version on its branch. | 29460 | Roll back (remove) the most recent changeset committed to the repository. |
| 29458 | If the file contains no changes, and is not locked, then this simply replaces | 29461 | This may be either a file-level or a repository-level operation, |
| 29459 | the working file with the latest version on its branch. If the file contains | 29462 | depending on the underlying version-control system. |
| 29460 | changes, and the backend supports merging news, then any recent changes from | ||
| 29461 | the current branch are merged into the working file. | ||
| 29462 | 29463 | ||
| 29463 | \(fn)" t nil) | 29464 | \(fn)" t nil) |
| 29464 | 29465 | ||
| 29465 | (autoload (quote vc-rollback) "vc" "\ | 29466 | (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1") |
| 29466 | Get rid of most recently checked in version of this file. | 29467 | |
| 29468 | (autoload 'vc-update "vc" "\ | ||
| 29469 | Update the current fileset's files to their tip revisions. | ||
| 29470 | For each one that contains no changes, and is not locked, then this simply | ||
| 29471 | replaces the work file with the latest revision on its branch. If the file | ||
| 29472 | contains changes, and the backend supports merging news, then any recent | ||
| 29473 | changes from the current branch are merged into the working file. | ||
| 29467 | 29474 | ||
| 29468 | \(fn)" t nil) | 29475 | \(fn)" t nil) |
| 29469 | 29476 | ||
| 29470 | (autoload (quote vc-switch-backend) "vc" "\ | 29477 | (autoload 'vc-switch-backend "vc" "\ |
| 29471 | Make BACKEND the current version control system for FILE. | 29478 | Make BACKEND the current version control system for FILE. |
| 29472 | FILE must already be registered in BACKEND. The change is not | 29479 | FILE must already be registered in BACKEND. The change is not |
| 29473 | permanent, only for the current session. This function only changes | 29480 | permanent, only for the current session. This function only changes |
| @@ -29477,11 +29484,11 @@ To get a prompt, use a prefix argument. | |||
| 29477 | 29484 | ||
| 29478 | \(fn FILE BACKEND)" t nil) | 29485 | \(fn FILE BACKEND)" t nil) |
| 29479 | 29486 | ||
| 29480 | (autoload (quote vc-transfer-file) "vc" "\ | 29487 | (autoload 'vc-transfer-file "vc" "\ |
| 29481 | Transfer FILE to another version control system NEW-BACKEND. | 29488 | Transfer FILE to another version control system NEW-BACKEND. |
| 29482 | If NEW-BACKEND has a higher precedence than FILE's current backend | 29489 | If NEW-BACKEND has a higher precedence than FILE's current backend |
| 29483 | \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in | 29490 | \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in |
| 29484 | NEW-BACKEND, using the version number from the current backend as the | 29491 | NEW-BACKEND, using the revision number from the current backend as the |
| 29485 | base level. If NEW-BACKEND has a lower precedence than the current | 29492 | base level. If NEW-BACKEND has a lower precedence than the current |
| 29486 | backend, then commit all changes that were made under the current | 29493 | backend, then commit all changes that were made under the current |
| 29487 | backend to NEW-BACKEND, and unregister FILE from the current backend. | 29494 | backend to NEW-BACKEND, and unregister FILE from the current backend. |
| @@ -29489,12 +29496,12 @@ backend to NEW-BACKEND, and unregister FILE from the current backend. | |||
| 29489 | 29496 | ||
| 29490 | \(fn FILE NEW-BACKEND)" nil nil) | 29497 | \(fn FILE NEW-BACKEND)" nil nil) |
| 29491 | 29498 | ||
| 29492 | (autoload (quote vc-rename-file) "vc" "\ | 29499 | (autoload 'vc-rename-file "vc" "\ |
| 29493 | Rename file OLD to NEW, and rename its master file likewise. | 29500 | Rename file OLD to NEW, and rename its master file likewise. |
| 29494 | 29501 | ||
| 29495 | \(fn OLD NEW)" t nil) | 29502 | \(fn OLD NEW)" t nil) |
| 29496 | 29503 | ||
| 29497 | (autoload (quote vc-update-change-log) "vc" "\ | 29504 | (autoload 'vc-update-change-log "vc" "\ |
| 29498 | Find change log file and add entries from recent version control logs. | 29505 | Find change log file and add entries from recent version control logs. |
| 29499 | Normally, find log entries for all registered files in the default | 29506 | Normally, find log entries for all registered files in the default |
| 29500 | directory. | 29507 | directory. |
| @@ -29510,7 +29517,17 @@ log entries should be gathered. | |||
| 29510 | 29517 | ||
| 29511 | \(fn &rest ARGS)" t nil) | 29518 | \(fn &rest ARGS)" t nil) |
| 29512 | 29519 | ||
| 29513 | (autoload (quote vc-annotate) "vc" "\ | 29520 | (autoload 'vc-trunk-p "vc" "\ |
| 29521 | Return t if REV is a revision on the trunk. | ||
| 29522 | |||
| 29523 | \(fn REV)" nil nil) | ||
| 29524 | |||
| 29525 | (autoload 'vc-branch-part "vc" "\ | ||
| 29526 | Return the branch part of a revision number REV. | ||
| 29527 | |||
| 29528 | \(fn REV)" nil nil) | ||
| 29529 | |||
| 29530 | (autoload 'vc-annotate "vc" "\ | ||
| 29514 | Display the edit history of the current file using colors. | 29531 | Display the edit history of the current file using colors. |
| 29515 | 29532 | ||
| 29516 | This command creates a buffer that shows, for each line of the current | 29533 | This command creates a buffer that shows, for each line of the current |
| @@ -29521,8 +29538,8 @@ default, the time scale stretches back one year into the past; | |||
| 29521 | everything that is older than that is shown in blue. | 29538 | everything that is older than that is shown in blue. |
| 29522 | 29539 | ||
| 29523 | With a prefix argument, this command asks two questions in the | 29540 | With a prefix argument, this command asks two questions in the |
| 29524 | minibuffer. First, you may enter a version number; then the buffer | 29541 | minibuffer. First, you may enter a revision number; then the buffer |
| 29525 | displays and annotates that version instead of the current version | 29542 | displays and annotates that revision instead of the working revision |
| 29526 | \(type RET in the minibuffer to leave that default unchanged). Then, | 29543 | \(type RET in the minibuffer to leave that default unchanged). Then, |
| 29527 | you are prompted for the time span in days which the color range | 29544 | you are prompted for the time span in days which the color range |
| 29528 | should cover. For example, a time span of 20 days means that changes | 29545 | should cover. For example, a time span of 20 days means that changes |
| @@ -29532,15 +29549,15 @@ age, and everything that is older than that is shown in blue. | |||
| 29532 | Customization variables: | 29549 | Customization variables: |
| 29533 | 29550 | ||
| 29534 | `vc-annotate-menu-elements' customizes the menu elements of the | 29551 | `vc-annotate-menu-elements' customizes the menu elements of the |
| 29535 | mode-specific menu. `vc-annotate-color-map' and | 29552 | mode-specific menu. `vc-annotate-color-map' and |
| 29536 | `vc-annotate-very-old-color' defines the mapping of time to | 29553 | `vc-annotate-very-old-color' define the mapping of time to colors. |
| 29537 | colors. `vc-annotate-background' specifies the background color. | 29554 | `vc-annotate-background' specifies the background color. |
| 29538 | 29555 | ||
| 29539 | \(fn FILE REV &optional DISPLAY-MODE BUF)" t nil) | 29556 | \(fn FILE REV &optional DISPLAY-MODE BUF)" t nil) |
| 29540 | 29557 | ||
| 29541 | ;;;*** | 29558 | ;;;*** |
| 29542 | 29559 | ||
| 29543 | ;;;### (autoloads nil "vc-arch" "vc-arch.el" (18104 24740)) | 29560 | ;;;### (autoloads nil "vc-arch" "vc-arch.el" (18201 33325)) |
| 29544 | ;;; Generated autoloads from vc-arch.el | 29561 | ;;; Generated autoloads from vc-arch.el |
| 29545 | (defun vc-arch-registered (file) | 29562 | (defun vc-arch-registered (file) |
| 29546 | (if (vc-find-root file "{arch}/=tagging-method") | 29563 | (if (vc-find-root file "{arch}/=tagging-method") |
| @@ -29550,19 +29567,22 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29550 | 29567 | ||
| 29551 | ;;;*** | 29568 | ;;;*** |
| 29552 | 29569 | ||
| 29553 | ;;;### (autoloads nil "vc-bzr" "vc-bzr.el" (18104 24740)) | 29570 | ;;;### (autoloads nil "vc-bzr" "vc-bzr.el" (18201 33325)) |
| 29554 | ;;; Generated autoloads from vc-bzr.el | 29571 | ;;; Generated autoloads from vc-bzr.el |
| 29555 | 29572 | ||
| 29556 | (defconst vc-bzr-admin-dirname ".bzr") | 29573 | (defconst vc-bzr-admin-dirname ".bzr" "\ |
| 29574 | Name of the directory containing Bzr repository status files.") | ||
| 29575 | |||
| 29576 | (defconst vc-bzr-admin-checkout-format-file (concat vc-bzr-admin-dirname "/checkout/format")) | ||
| 29557 | (defun vc-bzr-registered (file) | 29577 | (defun vc-bzr-registered (file) |
| 29558 | (if (vc-find-root file vc-bzr-admin-dirname) | 29578 | (if (vc-find-root file vc-bzr-admin-checkout-format-file) |
| 29559 | (progn | 29579 | (progn |
| 29560 | (load "vc-bzr") | 29580 | (load "vc-bzr") |
| 29561 | (vc-bzr-registered file)))) | 29581 | (vc-bzr-registered file)))) |
| 29562 | 29582 | ||
| 29563 | ;;;*** | 29583 | ;;;*** |
| 29564 | 29584 | ||
| 29565 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (18104 24740)) | 29585 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (18201 33326)) |
| 29566 | ;;; Generated autoloads from vc-cvs.el | 29586 | ;;; Generated autoloads from vc-cvs.el |
| 29567 | (defun vc-cvs-registered (f) | 29587 | (defun vc-cvs-registered (f) |
| 29568 | (when (file-readable-p (expand-file-name | 29588 | (when (file-readable-p (expand-file-name |
| @@ -29572,7 +29592,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29572 | 29592 | ||
| 29573 | ;;;*** | 29593 | ;;;*** |
| 29574 | 29594 | ||
| 29575 | ;;;### (autoloads nil "vc-git" "vc-git.el" (18104 24740)) | 29595 | ;;;### (autoloads nil "vc-git" "vc-git.el" (18201 33364)) |
| 29576 | ;;; Generated autoloads from vc-git.el | 29596 | ;;; Generated autoloads from vc-git.el |
| 29577 | (defun vc-git-registered (file) | 29597 | (defun vc-git-registered (file) |
| 29578 | "Return non-nil if FILE is registered with git." | 29598 | "Return non-nil if FILE is registered with git." |
| @@ -29583,7 +29603,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29583 | 29603 | ||
| 29584 | ;;;*** | 29604 | ;;;*** |
| 29585 | 29605 | ||
| 29586 | ;;;### (autoloads nil "vc-hg" "vc-hg.el" (18104 24740)) | 29606 | ;;;### (autoloads nil "vc-hg" "vc-hg.el" (18203 37787)) |
| 29587 | ;;; Generated autoloads from vc-hg.el | 29607 | ;;; Generated autoloads from vc-hg.el |
| 29588 | (defun vc-hg-registered (file) | 29608 | (defun vc-hg-registered (file) |
| 29589 | "Return non-nil if FILE is registered with hg." | 29609 | "Return non-nil if FILE is registered with hg." |
| @@ -29594,7 +29614,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29594 | 29614 | ||
| 29595 | ;;;*** | 29615 | ;;;*** |
| 29596 | 29616 | ||
| 29597 | ;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (18104 24741)) | 29617 | ;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (18201 33326)) |
| 29598 | ;;; Generated autoloads from vc-mcvs.el | 29618 | ;;; Generated autoloads from vc-mcvs.el |
| 29599 | (defun vc-mcvs-registered (file) | 29619 | (defun vc-mcvs-registered (file) |
| 29600 | (if (vc-find-root file "MCVS/CVS") | 29620 | (if (vc-find-root file "MCVS/CVS") |
| @@ -29604,28 +29624,42 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 29604 | 29624 | ||
| 29605 | ;;;*** | 29625 | ;;;*** |
| 29606 | 29626 | ||
| 29627 | ;;;### (autoloads nil "vc-mtn" "vc-mtn.el" (18202 3996)) | ||
| 29628 | ;;; Generated autoloads from vc-mtn.el | ||
| 29629 | |||
| 29630 | (defconst vc-mtn-admin-dir "_MTN") | ||
| 29631 | |||
| 29632 | (defconst vc-mtn-admin-format (concat vc-mtn-admin-dir "/format")) | ||
| 29633 | (defun vc-mtn-registered (file) | ||
| 29634 | (if (vc-find-root file vc-mtn-admin-format) | ||
| 29635 | (progn | ||
| 29636 | (load "vc-mtn") | ||
| 29637 | (vc-mtn-registered file)))) | ||
| 29638 | |||
| 29639 | ;;;*** | ||
| 29640 | |||
| 29607 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" | 29641 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" |
| 29608 | ;;;;;; (18104 24741)) | 29642 | ;;;;;; (18190 46608)) |
| 29609 | ;;; Generated autoloads from vc-rcs.el | 29643 | ;;; Generated autoloads from vc-rcs.el |
| 29610 | 29644 | ||
| 29611 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 29645 | (defvar vc-rcs-master-templates '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s") "\ |
| 29612 | *Where to look for RCS master files. | 29646 | *Where to look for RCS master files. |
| 29613 | For a description of possible values, see `vc-check-master-templates'.") | 29647 | For a description of possible values, see `vc-check-master-templates'.") |
| 29614 | 29648 | ||
| 29615 | (custom-autoload (quote vc-rcs-master-templates) "vc-rcs" t) | 29649 | (custom-autoload 'vc-rcs-master-templates "vc-rcs" t) |
| 29616 | (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) | 29650 | (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) |
| 29617 | 29651 | ||
| 29618 | ;;;*** | 29652 | ;;;*** |
| 29619 | 29653 | ||
| 29620 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" | 29654 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" |
| 29621 | ;;;;;; (18104 24741)) | 29655 | ;;;;;; (18190 46608)) |
| 29622 | ;;; Generated autoloads from vc-sccs.el | 29656 | ;;; Generated autoloads from vc-sccs.el |
| 29623 | 29657 | ||
| 29624 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 29658 | (defvar vc-sccs-master-templates '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir) "\ |
| 29625 | *Where to look for SCCS master files. | 29659 | *Where to look for SCCS master files. |
| 29626 | For a description of possible values, see `vc-check-master-templates'.") | 29660 | For a description of possible values, see `vc-check-master-templates'.") |
| 29627 | 29661 | ||
| 29628 | (custom-autoload (quote vc-sccs-master-templates) "vc-sccs" t) | 29662 | (custom-autoload 'vc-sccs-master-templates "vc-sccs" t) |
| 29629 | (defun vc-sccs-registered(f) (vc-default-registered 'SCCS f)) | 29663 | (defun vc-sccs-registered(f) (vc-default-registered 'SCCS f)) |
| 29630 | 29664 | ||
| 29631 | (defun vc-sccs-search-project-dir (dirname basename) "\ | 29665 | (defun vc-sccs-search-project-dir (dirname basename) "\ |
| @@ -29635,7 +29669,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 29635 | 29669 | ||
| 29636 | ;;;*** | 29670 | ;;;*** |
| 29637 | 29671 | ||
| 29638 | ;;;### (autoloads nil "vc-svn" "vc-svn.el" (18104 24741)) | 29672 | ;;;### (autoloads nil "vc-svn" "vc-svn.el" (18201 33326)) |
| 29639 | ;;; Generated autoloads from vc-svn.el | 29673 | ;;; Generated autoloads from vc-svn.el |
| 29640 | (defun vc-svn-registered (f) | 29674 | (defun vc-svn-registered (f) |
| 29641 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) | 29675 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) |
| @@ -29648,16 +29682,16 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 29648 | (load "vc-svn") | 29682 | (load "vc-svn") |
| 29649 | (vc-svn-registered f)))) | 29683 | (vc-svn-registered f)))) |
| 29650 | 29684 | ||
| 29651 | (add-to-list (quote completion-ignored-extensions) ".svn/") | 29685 | (add-to-list 'completion-ignored-extensions ".svn/") |
| 29652 | 29686 | ||
| 29653 | ;;;*** | 29687 | ;;;*** |
| 29654 | 29688 | ||
| 29655 | ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" | 29689 | ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" |
| 29656 | ;;;;;; (18104 24769)) | 29690 | ;;;;;; (18203 37789)) |
| 29657 | ;;; Generated autoloads from progmodes/vera-mode.el | 29691 | ;;; Generated autoloads from progmodes/vera-mode.el |
| 29658 | (add-to-list 'auto-mode-alist '("\\.vr[hi]?\\'" . vera-mode)) | 29692 | (add-to-list 'auto-mode-alist '("\\.vr[hi]?\\'" . vera-mode)) |
| 29659 | 29693 | ||
| 29660 | (autoload (quote vera-mode) "vera-mode" "\ | 29694 | (autoload 'vera-mode "vera-mode" "\ |
| 29661 | Major mode for editing Vera code. | 29695 | Major mode for editing Vera code. |
| 29662 | 29696 | ||
| 29663 | Usage: | 29697 | Usage: |
| @@ -29711,10 +29745,10 @@ Key bindings: | |||
| 29711 | ;;;*** | 29745 | ;;;*** |
| 29712 | 29746 | ||
| 29713 | ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" | 29747 | ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" |
| 29714 | ;;;;;; (18104 24769)) | 29748 | ;;;;;; (18203 37789)) |
| 29715 | ;;; Generated autoloads from progmodes/vhdl-mode.el | 29749 | ;;; Generated autoloads from progmodes/vhdl-mode.el |
| 29716 | 29750 | ||
| 29717 | (autoload (quote vhdl-mode) "vhdl-mode" "\ | 29751 | (autoload 'vhdl-mode "vhdl-mode" "\ |
| 29718 | Major mode for editing VHDL code. | 29752 | Major mode for editing VHDL code. |
| 29719 | 29753 | ||
| 29720 | Usage: | 29754 | Usage: |
| @@ -30252,10 +30286,10 @@ Key bindings: | |||
| 30252 | 30286 | ||
| 30253 | ;;;*** | 30287 | ;;;*** |
| 30254 | 30288 | ||
| 30255 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17821 5856)) | 30289 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (18201 33326)) |
| 30256 | ;;; Generated autoloads from emulation/vi.el | 30290 | ;;; Generated autoloads from emulation/vi.el |
| 30257 | 30291 | ||
| 30258 | (autoload (quote vi-mode) "vi" "\ | 30292 | (autoload 'vi-mode "vi" "\ |
| 30259 | Major mode that acts like the `vi' editor. | 30293 | Major mode that acts like the `vi' editor. |
| 30260 | The purpose of this mode is to provide you the combined power of vi (namely, | 30294 | The purpose of this mode is to provide you the combined power of vi (namely, |
| 30261 | the \"cross product\" effect of commands and repeat last changes) and Emacs. | 30295 | the \"cross product\" effect of commands and repeat last changes) and Emacs. |
| @@ -30307,44 +30341,44 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. | |||
| 30307 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion | 30341 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion |
| 30308 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer | 30342 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer |
| 30309 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" | 30343 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" |
| 30310 | ;;;;;; "language/viet-util.el" (18104 24758)) | 30344 | ;;;;;; "language/viet-util.el" (18088 55109)) |
| 30311 | ;;; Generated autoloads from language/viet-util.el | 30345 | ;;; Generated autoloads from language/viet-util.el |
| 30312 | 30346 | ||
| 30313 | (autoload (quote viet-encode-viscii-char) "viet-util" "\ | 30347 | (autoload 'viet-encode-viscii-char "viet-util" "\ |
| 30314 | Return VISCII character code of CHAR if appropriate. | 30348 | Return VISCII character code of CHAR if appropriate. |
| 30315 | 30349 | ||
| 30316 | \(fn CHAR)" nil nil) | 30350 | \(fn CHAR)" nil nil) |
| 30317 | 30351 | ||
| 30318 | (autoload (quote viet-decode-viqr-region) "viet-util" "\ | 30352 | (autoload 'viet-decode-viqr-region "viet-util" "\ |
| 30319 | Convert `VIQR' mnemonics of the current region to Vietnamese characters. | 30353 | Convert `VIQR' mnemonics of the current region to Vietnamese characters. |
| 30320 | When called from a program, expects two arguments, | 30354 | When called from a program, expects two arguments, |
| 30321 | positions (integers or markers) specifying the stretch of the region. | 30355 | positions (integers or markers) specifying the stretch of the region. |
| 30322 | 30356 | ||
| 30323 | \(fn FROM TO)" t nil) | 30357 | \(fn FROM TO)" t nil) |
| 30324 | 30358 | ||
| 30325 | (autoload (quote viet-decode-viqr-buffer) "viet-util" "\ | 30359 | (autoload 'viet-decode-viqr-buffer "viet-util" "\ |
| 30326 | Convert `VIQR' mnemonics of the current buffer to Vietnamese characters. | 30360 | Convert `VIQR' mnemonics of the current buffer to Vietnamese characters. |
| 30327 | 30361 | ||
| 30328 | \(fn)" t nil) | 30362 | \(fn)" t nil) |
| 30329 | 30363 | ||
| 30330 | (autoload (quote viet-encode-viqr-region) "viet-util" "\ | 30364 | (autoload 'viet-encode-viqr-region "viet-util" "\ |
| 30331 | Convert Vietnamese characters of the current region to `VIQR' mnemonics. | 30365 | Convert Vietnamese characters of the current region to `VIQR' mnemonics. |
| 30332 | When called from a program, expects two arguments, | 30366 | When called from a program, expects two arguments, |
| 30333 | positions (integers or markers) specifying the stretch of the region. | 30367 | positions (integers or markers) specifying the stretch of the region. |
| 30334 | 30368 | ||
| 30335 | \(fn FROM TO)" t nil) | 30369 | \(fn FROM TO)" t nil) |
| 30336 | 30370 | ||
| 30337 | (autoload (quote viet-encode-viqr-buffer) "viet-util" "\ | 30371 | (autoload 'viet-encode-viqr-buffer "viet-util" "\ |
| 30338 | Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. | 30372 | Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. |
| 30339 | 30373 | ||
| 30340 | \(fn)" t nil) | 30374 | \(fn)" t nil) |
| 30341 | 30375 | ||
| 30342 | (autoload (quote viqr-post-read-conversion) "viet-util" "\ | 30376 | (autoload 'viqr-post-read-conversion "viet-util" "\ |
| 30343 | Not documented | 30377 | Not documented |
| 30344 | 30378 | ||
| 30345 | \(fn LEN)" nil nil) | 30379 | \(fn LEN)" nil nil) |
| 30346 | 30380 | ||
| 30347 | (autoload (quote viqr-pre-write-conversion) "viet-util" "\ | 30381 | (autoload 'viqr-pre-write-conversion "viet-util" "\ |
| 30348 | Not documented | 30382 | Not documented |
| 30349 | 30383 | ||
| 30350 | \(fn FROM TO)" nil nil) | 30384 | \(fn FROM TO)" nil nil) |
| @@ -30353,8 +30387,8 @@ Not documented | |||
| 30353 | 30387 | ||
| 30354 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame | 30388 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame |
| 30355 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame | 30389 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame |
| 30356 | ;;;;;; view-file-other-window view-file) "view" "view.el" (18104 | 30390 | ;;;;;; view-file-other-window view-file) "view" "view.el" (18169 |
| 30357 | ;;;;;; 24741)) | 30391 | ;;;;;; 11932)) |
| 30358 | ;;; Generated autoloads from view.el | 30392 | ;;; Generated autoloads from view.el |
| 30359 | 30393 | ||
| 30360 | (defvar view-mode nil "\ | 30394 | (defvar view-mode nil "\ |
| @@ -30362,9 +30396,9 @@ Non-nil if View mode is enabled. | |||
| 30362 | Don't change this variable directly, you must change it by one of the | 30396 | Don't change this variable directly, you must change it by one of the |
| 30363 | functions that enable or disable view mode.") | 30397 | functions that enable or disable view mode.") |
| 30364 | 30398 | ||
| 30365 | (make-variable-buffer-local (quote view-mode)) | 30399 | (make-variable-buffer-local 'view-mode) |
| 30366 | 30400 | ||
| 30367 | (autoload (quote view-file) "view" "\ | 30401 | (autoload 'view-file "view" "\ |
| 30368 | View FILE in View mode, returning to previous buffer when done. | 30402 | View FILE in View mode, returning to previous buffer when done. |
| 30369 | Emacs commands editing the buffer contents are not available; instead, | 30403 | Emacs commands editing the buffer contents are not available; instead, |
| 30370 | a special set of commands (mostly letters and punctuation) | 30404 | a special set of commands (mostly letters and punctuation) |
| @@ -30376,7 +30410,7 @@ This command runs the normal hook `view-mode-hook'. | |||
| 30376 | 30410 | ||
| 30377 | \(fn FILE)" t nil) | 30411 | \(fn FILE)" t nil) |
| 30378 | 30412 | ||
| 30379 | (autoload (quote view-file-other-window) "view" "\ | 30413 | (autoload 'view-file-other-window "view" "\ |
| 30380 | View FILE in View mode in another window. | 30414 | View FILE in View mode in another window. |
| 30381 | Return that window to its previous buffer when done. | 30415 | Return that window to its previous buffer when done. |
| 30382 | Emacs commands editing the buffer contents are not available; instead, | 30416 | Emacs commands editing the buffer contents are not available; instead, |
| @@ -30389,7 +30423,7 @@ This command runs the normal hook `view-mode-hook'. | |||
| 30389 | 30423 | ||
| 30390 | \(fn FILE)" t nil) | 30424 | \(fn FILE)" t nil) |
| 30391 | 30425 | ||
| 30392 | (autoload (quote view-file-other-frame) "view" "\ | 30426 | (autoload 'view-file-other-frame "view" "\ |
| 30393 | View FILE in View mode in another frame. | 30427 | View FILE in View mode in another frame. |
| 30394 | Maybe delete other frame and/or return to previous buffer when done. | 30428 | Maybe delete other frame and/or return to previous buffer when done. |
| 30395 | Emacs commands editing the buffer contents are not available; instead, | 30429 | Emacs commands editing the buffer contents are not available; instead, |
| @@ -30402,7 +30436,7 @@ This command runs the normal hook `view-mode-hook'. | |||
| 30402 | 30436 | ||
| 30403 | \(fn FILE)" t nil) | 30437 | \(fn FILE)" t nil) |
| 30404 | 30438 | ||
| 30405 | (autoload (quote view-buffer) "view" "\ | 30439 | (autoload 'view-buffer "view" "\ |
| 30406 | View BUFFER in View mode, returning to previous buffer when done. | 30440 | View BUFFER in View mode, returning to previous buffer when done. |
| 30407 | Emacs commands editing the buffer contents are not available; instead, | 30441 | Emacs commands editing the buffer contents are not available; instead, |
| 30408 | a special set of commands (mostly letters and punctuation) | 30442 | a special set of commands (mostly letters and punctuation) |
| @@ -30418,7 +30452,7 @@ Use this argument instead of explicitly setting `view-exit-action'. | |||
| 30418 | 30452 | ||
| 30419 | \(fn BUFFER &optional EXIT-ACTION)" t nil) | 30453 | \(fn BUFFER &optional EXIT-ACTION)" t nil) |
| 30420 | 30454 | ||
| 30421 | (autoload (quote view-buffer-other-window) "view" "\ | 30455 | (autoload 'view-buffer-other-window "view" "\ |
| 30422 | View BUFFER in View mode in another window. | 30456 | View BUFFER in View mode in another window. |
| 30423 | Return to previous buffer when done, unless optional NOT-RETURN is non-nil. | 30457 | Return to previous buffer when done, unless optional NOT-RETURN is non-nil. |
| 30424 | Emacs commands editing the buffer contents are not available; instead, | 30458 | Emacs commands editing the buffer contents are not available; instead, |
| @@ -30435,7 +30469,7 @@ Use this argument instead of explicitly setting `view-exit-action'. | |||
| 30435 | 30469 | ||
| 30436 | \(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil) | 30470 | \(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil) |
| 30437 | 30471 | ||
| 30438 | (autoload (quote view-buffer-other-frame) "view" "\ | 30472 | (autoload 'view-buffer-other-frame "view" "\ |
| 30439 | View BUFFER in View mode in another frame. | 30473 | View BUFFER in View mode in another frame. |
| 30440 | Return to previous buffer when done, unless optional NOT-RETURN is non-nil. | 30474 | Return to previous buffer when done, unless optional NOT-RETURN is non-nil. |
| 30441 | Emacs commands editing the buffer contents are not available; instead, | 30475 | Emacs commands editing the buffer contents are not available; instead, |
| @@ -30452,9 +30486,10 @@ Use this argument instead of explicitly setting `view-exit-action'. | |||
| 30452 | 30486 | ||
| 30453 | \(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil) | 30487 | \(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil) |
| 30454 | 30488 | ||
| 30455 | (autoload (quote view-mode) "view" "\ | 30489 | (autoload 'view-mode "view" "\ |
| 30456 | Toggle View mode, a minor mode for viewing text but not editing it. | 30490 | Toggle View mode, a minor mode for viewing text but not editing it. |
| 30457 | With ARG, turn View mode on iff ARG is positive. | 30491 | With prefix argument ARG, turn View mode on if ARG is positive, otherwise |
| 30492 | turn it off. | ||
| 30458 | 30493 | ||
| 30459 | Emacs commands that do not change the buffer contents are available as usual. | 30494 | Emacs commands that do not change the buffer contents are available as usual. |
| 30460 | Kill commands insert text in kill buffers but do not delete. Other commands | 30495 | Kill commands insert text in kill buffers but do not delete. Other commands |
| @@ -30531,7 +30566,7 @@ Entry to view-mode runs the normal hook `view-mode-hook'. | |||
| 30531 | 30566 | ||
| 30532 | \(fn &optional ARG)" t nil) | 30567 | \(fn &optional ARG)" t nil) |
| 30533 | 30568 | ||
| 30534 | (autoload (quote view-mode-enter) "view" "\ | 30569 | (autoload 'view-mode-enter "view" "\ |
| 30535 | Enter View mode and set up exit from view mode depending on optional arguments. | 30570 | Enter View mode and set up exit from view mode depending on optional arguments. |
| 30536 | If RETURN-TO is non-nil it is added as an element to the buffer local alist | 30571 | If RETURN-TO is non-nil it is added as an element to the buffer local alist |
| 30537 | `view-return-to-alist'. | 30572 | `view-return-to-alist'. |
| @@ -30556,23 +30591,23 @@ This function runs the normal hook `view-mode-hook'. | |||
| 30556 | 30591 | ||
| 30557 | \(fn &optional RETURN-TO EXIT-ACTION)" nil nil) | 30592 | \(fn &optional RETURN-TO EXIT-ACTION)" nil nil) |
| 30558 | 30593 | ||
| 30559 | (autoload (quote View-exit-and-edit) "view" "\ | 30594 | (autoload 'View-exit-and-edit "view" "\ |
| 30560 | Exit View mode and make the current buffer editable. | 30595 | Exit View mode and make the current buffer editable. |
| 30561 | 30596 | ||
| 30562 | \(fn)" t nil) | 30597 | \(fn)" t nil) |
| 30563 | 30598 | ||
| 30564 | ;;;*** | 30599 | ;;;*** |
| 30565 | 30600 | ||
| 30566 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (18104 | 30601 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (18088 |
| 30567 | ;;;;;; 24748)) | 30602 | ;;;;;; 55097)) |
| 30568 | ;;; Generated autoloads from emulation/vip.el | 30603 | ;;; Generated autoloads from emulation/vip.el |
| 30569 | 30604 | ||
| 30570 | (autoload (quote vip-setup) "vip" "\ | 30605 | (autoload 'vip-setup "vip" "\ |
| 30571 | Set up bindings for C-x 7 and C-z that are useful for VIP users. | 30606 | Set up bindings for C-x 7 and C-z that are useful for VIP users. |
| 30572 | 30607 | ||
| 30573 | \(fn)" nil nil) | 30608 | \(fn)" nil nil) |
| 30574 | 30609 | ||
| 30575 | (autoload (quote vip-mode) "vip" "\ | 30610 | (autoload 'vip-mode "vip" "\ |
| 30576 | Turn on VIP emulation of VI. | 30611 | Turn on VIP emulation of VI. |
| 30577 | 30612 | ||
| 30578 | \(fn)" t nil) | 30613 | \(fn)" t nil) |
| @@ -30580,16 +30615,16 @@ Turn on VIP emulation of VI. | |||
| 30580 | ;;;*** | 30615 | ;;;*** |
| 30581 | 30616 | ||
| 30582 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" | 30617 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" |
| 30583 | ;;;;;; (18104 24748)) | 30618 | ;;;;;; (18213 13953)) |
| 30584 | ;;; Generated autoloads from emulation/viper.el | 30619 | ;;; Generated autoloads from emulation/viper.el |
| 30585 | 30620 | ||
| 30586 | (autoload (quote toggle-viper-mode) "viper" "\ | 30621 | (autoload 'toggle-viper-mode "viper" "\ |
| 30587 | Toggle Viper on/off. | 30622 | Toggle Viper on/off. |
| 30588 | If Viper is enabled, turn it off. Otherwise, turn it on. | 30623 | If Viper is enabled, turn it off. Otherwise, turn it on. |
| 30589 | 30624 | ||
| 30590 | \(fn)" t nil) | 30625 | \(fn)" t nil) |
| 30591 | 30626 | ||
| 30592 | (autoload (quote viper-mode) "viper" "\ | 30627 | (autoload 'viper-mode "viper" "\ |
| 30593 | Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. | 30628 | Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. |
| 30594 | 30629 | ||
| 30595 | \(fn)" t nil) | 30630 | \(fn)" t nil) |
| @@ -30597,7 +30632,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. | |||
| 30597 | ;;;*** | 30632 | ;;;*** |
| 30598 | 30633 | ||
| 30599 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" | 30634 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" |
| 30600 | ;;;;;; (18104 24748)) | 30635 | ;;;;;; (18088 55096)) |
| 30601 | ;;; Generated autoloads from emacs-lisp/warnings.el | 30636 | ;;; Generated autoloads from emacs-lisp/warnings.el |
| 30602 | 30637 | ||
| 30603 | (defvar warning-prefix-function nil "\ | 30638 | (defvar warning-prefix-function nil "\ |
| @@ -30626,7 +30661,7 @@ Format for displaying the warning type in the warning message. | |||
| 30626 | The result of formatting the type this way gets included in the | 30661 | The result of formatting the type this way gets included in the |
| 30627 | message under the control of the string in `warning-levels'.") | 30662 | message under the control of the string in `warning-levels'.") |
| 30628 | 30663 | ||
| 30629 | (autoload (quote display-warning) "warnings" "\ | 30664 | (autoload 'display-warning "warnings" "\ |
| 30630 | Display a warning message, MESSAGE. | 30665 | Display a warning message, MESSAGE. |
| 30631 | TYPE is the warning type: either a custom group name (a symbol), | 30666 | TYPE is the warning type: either a custom group name (a symbol), |
| 30632 | or a list of symbols whose first element is a custom group name. | 30667 | or a list of symbols whose first element is a custom group name. |
| @@ -30655,7 +30690,7 @@ See also `warning-series', `warning-prefix-function' and | |||
| 30655 | 30690 | ||
| 30656 | \(fn TYPE MESSAGE &optional LEVEL BUFFER-NAME)" nil nil) | 30691 | \(fn TYPE MESSAGE &optional LEVEL BUFFER-NAME)" nil nil) |
| 30657 | 30692 | ||
| 30658 | (autoload (quote lwarn) "warnings" "\ | 30693 | (autoload 'lwarn "warnings" "\ |
| 30659 | Display a warning message made from (format MESSAGE ARGS...). | 30694 | Display a warning message made from (format MESSAGE ARGS...). |
| 30660 | Aside from generating the message with `format', | 30695 | Aside from generating the message with `format', |
| 30661 | this is equivalent to `display-warning'. | 30696 | this is equivalent to `display-warning'. |
| @@ -30676,7 +30711,7 @@ LEVEL should be either :debug, :warning, :error, or :emergency | |||
| 30676 | 30711 | ||
| 30677 | \(fn TYPE LEVEL MESSAGE &rest ARGS)" nil nil) | 30712 | \(fn TYPE LEVEL MESSAGE &rest ARGS)" nil nil) |
| 30678 | 30713 | ||
| 30679 | (autoload (quote warn) "warnings" "\ | 30714 | (autoload 'warn "warnings" "\ |
| 30680 | Display a warning message made from (format MESSAGE ARGS...). | 30715 | Display a warning message made from (format MESSAGE ARGS...). |
| 30681 | Aside from generating the message with `format', | 30716 | Aside from generating the message with `format', |
| 30682 | this is equivalent to `display-warning', using | 30717 | this is equivalent to `display-warning', using |
| @@ -30687,10 +30722,10 @@ this is equivalent to `display-warning', using | |||
| 30687 | ;;;*** | 30722 | ;;;*** |
| 30688 | 30723 | ||
| 30689 | ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" | 30724 | ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" |
| 30690 | ;;;;;; (18104 24742)) | 30725 | ;;;;;; (18214 4479)) |
| 30691 | ;;; Generated autoloads from wdired.el | 30726 | ;;; Generated autoloads from wdired.el |
| 30692 | 30727 | ||
| 30693 | (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ | 30728 | (autoload 'wdired-change-to-wdired-mode "wdired" "\ |
| 30694 | Put a dired buffer in a mode in which filenames are editable. | 30729 | Put a dired buffer in a mode in which filenames are editable. |
| 30695 | \\<wdired-mode-map> | 30730 | \\<wdired-mode-map> |
| 30696 | This mode allows the user to change the names of the files, and after | 30731 | This mode allows the user to change the names of the files, and after |
| @@ -30703,10 +30738,10 @@ See `wdired-mode'. | |||
| 30703 | 30738 | ||
| 30704 | ;;;*** | 30739 | ;;;*** |
| 30705 | 30740 | ||
| 30706 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (18104 24760)) | 30741 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (18088 55112)) |
| 30707 | ;;; Generated autoloads from net/webjump.el | 30742 | ;;; Generated autoloads from net/webjump.el |
| 30708 | 30743 | ||
| 30709 | (autoload (quote webjump) "webjump" "\ | 30744 | (autoload 'webjump "webjump" "\ |
| 30710 | Jumps to a Web site from a programmable hotlist. | 30745 | Jumps to a Web site from a programmable hotlist. |
| 30711 | 30746 | ||
| 30712 | See the documentation for the `webjump-sites' variable for how to customize the | 30747 | See the documentation for the `webjump-sites' variable for how to customize the |
| @@ -30720,12 +30755,12 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 30720 | ;;;*** | 30755 | ;;;*** |
| 30721 | 30756 | ||
| 30722 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" | 30757 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" |
| 30723 | ;;;;;; (18104 24769)) | 30758 | ;;;;;; (18147 59474)) |
| 30724 | ;;; Generated autoloads from progmodes/which-func.el | 30759 | ;;; Generated autoloads from progmodes/which-func.el |
| 30725 | (put 'which-func-format 'risky-local-variable t) | 30760 | (put 'which-func-format 'risky-local-variable t) |
| 30726 | (put 'which-func-current 'risky-local-variable t) | 30761 | (put 'which-func-current 'risky-local-variable t) |
| 30727 | 30762 | ||
| 30728 | (defalias (quote which-func-mode) (quote which-function-mode)) | 30763 | (defalias 'which-func-mode 'which-function-mode) |
| 30729 | 30764 | ||
| 30730 | (defvar which-function-mode nil "\ | 30765 | (defvar which-function-mode nil "\ |
| 30731 | Non-nil if Which-Function mode is enabled. | 30766 | Non-nil if Which-Function mode is enabled. |
| @@ -30734,14 +30769,14 @@ Setting this variable directly does not take effect; | |||
| 30734 | either customize it (see the info node `Easy Customization') | 30769 | either customize it (see the info node `Easy Customization') |
| 30735 | or call the function `which-function-mode'.") | 30770 | or call the function `which-function-mode'.") |
| 30736 | 30771 | ||
| 30737 | (custom-autoload (quote which-function-mode) "which-func" nil) | 30772 | (custom-autoload 'which-function-mode "which-func" nil) |
| 30738 | 30773 | ||
| 30739 | (autoload (quote which-function-mode) "which-func" "\ | 30774 | (autoload 'which-function-mode "which-func" "\ |
| 30740 | Toggle Which Function mode, globally. | 30775 | Toggle Which Function mode, globally. |
| 30741 | When Which Function mode is enabled, the current function name is | 30776 | When Which Function mode is enabled, the current function name is |
| 30742 | continuously displayed in the mode line, in certain major modes. | 30777 | continuously displayed in the mode line, in certain major modes. |
| 30743 | 30778 | ||
| 30744 | With prefix ARG, turn Which Function mode on iff arg is positive, | 30779 | With prefix ARG, turn Which Function mode on if arg is positive, |
| 30745 | and off otherwise. | 30780 | and off otherwise. |
| 30746 | 30781 | ||
| 30747 | \(fn &optional ARG)" t nil) | 30782 | \(fn &optional ARG)" t nil) |
| @@ -30753,35 +30788,35 @@ and off otherwise. | |||
| 30753 | ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check | 30788 | ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check |
| 30754 | ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check | 30789 | ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check |
| 30755 | ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" | 30790 | ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" |
| 30756 | ;;;;;; (18104 24742)) | 30791 | ;;;;;; (18169 11932)) |
| 30757 | ;;; Generated autoloads from whitespace.el | 30792 | ;;; Generated autoloads from whitespace.el |
| 30758 | 30793 | ||
| 30759 | (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ | 30794 | (autoload 'whitespace-toggle-leading-check "whitespace" "\ |
| 30760 | Toggle the check for leading space in the local buffer. | 30795 | Toggle the check for leading space in the local buffer. |
| 30761 | 30796 | ||
| 30762 | \(fn)" t nil) | 30797 | \(fn)" t nil) |
| 30763 | 30798 | ||
| 30764 | (autoload (quote whitespace-toggle-trailing-check) "whitespace" "\ | 30799 | (autoload 'whitespace-toggle-trailing-check "whitespace" "\ |
| 30765 | Toggle the check for trailing space in the local buffer. | 30800 | Toggle the check for trailing space in the local buffer. |
| 30766 | 30801 | ||
| 30767 | \(fn)" t nil) | 30802 | \(fn)" t nil) |
| 30768 | 30803 | ||
| 30769 | (autoload (quote whitespace-toggle-indent-check) "whitespace" "\ | 30804 | (autoload 'whitespace-toggle-indent-check "whitespace" "\ |
| 30770 | Toggle the check for indentation space in the local buffer. | 30805 | Toggle the check for indentation space in the local buffer. |
| 30771 | 30806 | ||
| 30772 | \(fn)" t nil) | 30807 | \(fn)" t nil) |
| 30773 | 30808 | ||
| 30774 | (autoload (quote whitespace-toggle-spacetab-check) "whitespace" "\ | 30809 | (autoload 'whitespace-toggle-spacetab-check "whitespace" "\ |
| 30775 | Toggle the check for space-followed-by-TABs in the local buffer. | 30810 | Toggle the check for space-followed-by-TABs in the local buffer. |
| 30776 | 30811 | ||
| 30777 | \(fn)" t nil) | 30812 | \(fn)" t nil) |
| 30778 | 30813 | ||
| 30779 | (autoload (quote whitespace-toggle-ateol-check) "whitespace" "\ | 30814 | (autoload 'whitespace-toggle-ateol-check "whitespace" "\ |
| 30780 | Toggle the check for end-of-line space in the local buffer. | 30815 | Toggle the check for end-of-line space in the local buffer. |
| 30781 | 30816 | ||
| 30782 | \(fn)" t nil) | 30817 | \(fn)" t nil) |
| 30783 | 30818 | ||
| 30784 | (autoload (quote whitespace-buffer) "whitespace" "\ | 30819 | (autoload 'whitespace-buffer "whitespace" "\ |
| 30785 | Find five different types of white spaces in buffer. | 30820 | Find five different types of white spaces in buffer. |
| 30786 | These are: | 30821 | These are: |
| 30787 | 1. Leading space (empty lines at the top of a file). | 30822 | 1. Leading space (empty lines at the top of a file). |
| @@ -30797,12 +30832,12 @@ and: | |||
| 30797 | 30832 | ||
| 30798 | \(fn &optional QUIET)" t nil) | 30833 | \(fn &optional QUIET)" t nil) |
| 30799 | 30834 | ||
| 30800 | (autoload (quote whitespace-region) "whitespace" "\ | 30835 | (autoload 'whitespace-region "whitespace" "\ |
| 30801 | Check the region for whitespace errors. | 30836 | Check the region for whitespace errors. |
| 30802 | 30837 | ||
| 30803 | \(fn S E)" t nil) | 30838 | \(fn S E)" t nil) |
| 30804 | 30839 | ||
| 30805 | (autoload (quote whitespace-cleanup) "whitespace" "\ | 30840 | (autoload 'whitespace-cleanup "whitespace" "\ |
| 30806 | Cleanup the five different kinds of whitespace problems. | 30841 | Cleanup the five different kinds of whitespace problems. |
| 30807 | It normally applies to the whole buffer, but in Transient Mark mode | 30842 | It normally applies to the whole buffer, but in Transient Mark mode |
| 30808 | when the mark is active it applies to the region. | 30843 | when the mark is active it applies to the region. |
| @@ -30810,12 +30845,12 @@ See `whitespace-buffer' docstring for a summary of the problems. | |||
| 30810 | 30845 | ||
| 30811 | \(fn)" t nil) | 30846 | \(fn)" t nil) |
| 30812 | 30847 | ||
| 30813 | (autoload (quote whitespace-cleanup-region) "whitespace" "\ | 30848 | (autoload 'whitespace-cleanup-region "whitespace" "\ |
| 30814 | Whitespace cleanup on the region. | 30849 | Whitespace cleanup on the region. |
| 30815 | 30850 | ||
| 30816 | \(fn S E)" t nil) | 30851 | \(fn S E)" t nil) |
| 30817 | 30852 | ||
| 30818 | (defalias (quote global-whitespace-mode) (quote whitespace-global-mode)) | 30853 | (defalias 'global-whitespace-mode 'whitespace-global-mode) |
| 30819 | 30854 | ||
| 30820 | (defvar whitespace-global-mode nil "\ | 30855 | (defvar whitespace-global-mode nil "\ |
| 30821 | Non-nil if Whitespace-Global mode is enabled. | 30856 | Non-nil if Whitespace-Global mode is enabled. |
| @@ -30824,18 +30859,18 @@ Setting this variable directly does not take effect; | |||
| 30824 | either customize it (see the info node `Easy Customization') | 30859 | either customize it (see the info node `Easy Customization') |
| 30825 | or call the function `whitespace-global-mode'.") | 30860 | or call the function `whitespace-global-mode'.") |
| 30826 | 30861 | ||
| 30827 | (custom-autoload (quote whitespace-global-mode) "whitespace" nil) | 30862 | (custom-autoload 'whitespace-global-mode "whitespace" nil) |
| 30828 | 30863 | ||
| 30829 | (autoload (quote whitespace-global-mode) "whitespace" "\ | 30864 | (autoload 'whitespace-global-mode "whitespace" "\ |
| 30830 | Toggle using Whitespace mode in new buffers. | 30865 | Toggle using Whitespace mode in new buffers. |
| 30831 | With ARG, turn the mode on iff ARG is positive. | 30866 | With ARG, turn the mode on if ARG is positive, otherwise turn it off. |
| 30832 | 30867 | ||
| 30833 | When this mode is active, `whitespace-buffer' is added to | 30868 | When this mode is active, `whitespace-buffer' is added to |
| 30834 | `find-file-hook' and `kill-buffer-hook'. | 30869 | `find-file-hook' and `kill-buffer-hook'. |
| 30835 | 30870 | ||
| 30836 | \(fn &optional ARG)" t nil) | 30871 | \(fn &optional ARG)" t nil) |
| 30837 | 30872 | ||
| 30838 | (autoload (quote whitespace-write-file-hook) "whitespace" "\ | 30873 | (autoload 'whitespace-write-file-hook "whitespace" "\ |
| 30839 | Hook function to be called on the buffer when whitespace check is enabled. | 30874 | Hook function to be called on the buffer when whitespace check is enabled. |
| 30840 | This is meant to be added buffer-locally to `write-file-functions'. | 30875 | This is meant to be added buffer-locally to `write-file-functions'. |
| 30841 | 30876 | ||
| @@ -30844,25 +30879,25 @@ This is meant to be added buffer-locally to `write-file-functions'. | |||
| 30844 | ;;;*** | 30879 | ;;;*** |
| 30845 | 30880 | ||
| 30846 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse | 30881 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse |
| 30847 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (18104 24742)) | 30882 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (18149 22003)) |
| 30848 | ;;; Generated autoloads from wid-browse.el | 30883 | ;;; Generated autoloads from wid-browse.el |
| 30849 | 30884 | ||
| 30850 | (autoload (quote widget-browse-at) "wid-browse" "\ | 30885 | (autoload 'widget-browse-at "wid-browse" "\ |
| 30851 | Browse the widget under point. | 30886 | Browse the widget under point. |
| 30852 | 30887 | ||
| 30853 | \(fn POS)" t nil) | 30888 | \(fn POS)" t nil) |
| 30854 | 30889 | ||
| 30855 | (autoload (quote widget-browse) "wid-browse" "\ | 30890 | (autoload 'widget-browse "wid-browse" "\ |
| 30856 | Create a widget browser for WIDGET. | 30891 | Create a widget browser for WIDGET. |
| 30857 | 30892 | ||
| 30858 | \(fn WIDGET)" t nil) | 30893 | \(fn WIDGET)" t nil) |
| 30859 | 30894 | ||
| 30860 | (autoload (quote widget-browse-other-window) "wid-browse" "\ | 30895 | (autoload 'widget-browse-other-window "wid-browse" "\ |
| 30861 | Show widget browser for WIDGET in other window. | 30896 | Show widget browser for WIDGET in other window. |
| 30862 | 30897 | ||
| 30863 | \(fn &optional WIDGET)" t nil) | 30898 | \(fn &optional WIDGET)" t nil) |
| 30864 | 30899 | ||
| 30865 | (autoload (quote widget-minor-mode) "wid-browse" "\ | 30900 | (autoload 'widget-minor-mode "wid-browse" "\ |
| 30866 | Togle minor mode for traversing widgets. | 30901 | Togle minor mode for traversing widgets. |
| 30867 | With arg, turn widget mode on if and only if arg is positive. | 30902 | With arg, turn widget mode on if and only if arg is positive. |
| 30868 | 30903 | ||
| @@ -30871,44 +30906,44 @@ With arg, turn widget mode on if and only if arg is positive. | |||
| 30871 | ;;;*** | 30906 | ;;;*** |
| 30872 | 30907 | ||
| 30873 | ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create | 30908 | ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create |
| 30874 | ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (18104 | 30909 | ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (18187 |
| 30875 | ;;;;;; 24742)) | 30910 | ;;;;;; 36840)) |
| 30876 | ;;; Generated autoloads from wid-edit.el | 30911 | ;;; Generated autoloads from wid-edit.el |
| 30877 | 30912 | ||
| 30878 | (autoload (quote widgetp) "wid-edit" "\ | 30913 | (autoload 'widgetp "wid-edit" "\ |
| 30879 | Return non-nil iff WIDGET is a widget. | 30914 | Return non-nil if WIDGET is a widget. |
| 30880 | 30915 | ||
| 30881 | \(fn WIDGET)" nil nil) | 30916 | \(fn WIDGET)" nil nil) |
| 30882 | 30917 | ||
| 30883 | (autoload (quote widget-prompt-value) "wid-edit" "\ | 30918 | (autoload 'widget-prompt-value "wid-edit" "\ |
| 30884 | Prompt for a value matching WIDGET, using PROMPT. | 30919 | Prompt for a value matching WIDGET, using PROMPT. |
| 30885 | The current value is assumed to be VALUE, unless UNBOUND is non-nil. | 30920 | The current value is assumed to be VALUE, unless UNBOUND is non-nil. |
| 30886 | 30921 | ||
| 30887 | \(fn WIDGET PROMPT &optional VALUE UNBOUND)" nil nil) | 30922 | \(fn WIDGET PROMPT &optional VALUE UNBOUND)" nil nil) |
| 30888 | 30923 | ||
| 30889 | (autoload (quote widget-create) "wid-edit" "\ | 30924 | (autoload 'widget-create "wid-edit" "\ |
| 30890 | Create widget of TYPE. | 30925 | Create widget of TYPE. |
| 30891 | The optional ARGS are additional keyword arguments. | 30926 | The optional ARGS are additional keyword arguments. |
| 30892 | 30927 | ||
| 30893 | \(fn TYPE &rest ARGS)" nil nil) | 30928 | \(fn TYPE &rest ARGS)" nil nil) |
| 30894 | 30929 | ||
| 30895 | (autoload (quote widget-delete) "wid-edit" "\ | 30930 | (autoload 'widget-delete "wid-edit" "\ |
| 30896 | Delete WIDGET. | 30931 | Delete WIDGET. |
| 30897 | 30932 | ||
| 30898 | \(fn WIDGET)" nil nil) | 30933 | \(fn WIDGET)" nil nil) |
| 30899 | 30934 | ||
| 30900 | (autoload (quote widget-insert) "wid-edit" "\ | 30935 | (autoload 'widget-insert "wid-edit" "\ |
| 30901 | Call `insert' with ARGS even if surrounding text is read only. | 30936 | Call `insert' with ARGS even if surrounding text is read only. |
| 30902 | 30937 | ||
| 30903 | \(fn &rest ARGS)" nil nil) | 30938 | \(fn &rest ARGS)" nil nil) |
| 30904 | 30939 | ||
| 30905 | (defalias (quote advertised-widget-backward) (quote widget-backward)) | 30940 | (defalias 'advertised-widget-backward 'widget-backward) |
| 30906 | 30941 | ||
| 30907 | (defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map " " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map [down-mouse-1] (quote widget-button-click)) (define-key map " " (quote widget-button-press)) map) "\ | 30942 | (defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " 'widget-forward) (define-key map " " 'widget-backward) (define-key map [(shift tab)] 'advertised-widget-backward) (define-key map [backtab] 'widget-backward) (define-key map [down-mouse-2] 'widget-button-click) (define-key map [down-mouse-1] 'widget-button-click) (define-key map " " 'widget-button-press) map) "\ |
| 30908 | Keymap containing useful binding for buffers containing widgets. | 30943 | Keymap containing useful binding for buffers containing widgets. |
| 30909 | Recommended as a parent keymap for modes using widgets.") | 30944 | Recommended as a parent keymap for modes using widgets.") |
| 30910 | 30945 | ||
| 30911 | (autoload (quote widget-setup) "wid-edit" "\ | 30946 | (autoload 'widget-setup "wid-edit" "\ |
| 30912 | Setup current buffer so editing string widgets works. | 30947 | Setup current buffer so editing string widgets works. |
| 30913 | 30948 | ||
| 30914 | \(fn)" nil nil) | 30949 | \(fn)" nil nil) |
| @@ -30916,11 +30951,11 @@ Setup current buffer so editing string widgets works. | |||
| 30916 | ;;;*** | 30951 | ;;;*** |
| 30917 | 30952 | ||
| 30918 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right | 30953 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right |
| 30919 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (18104 | 30954 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (18088 |
| 30920 | ;;;;;; 24742)) | 30955 | ;;;;;; 55091)) |
| 30921 | ;;; Generated autoloads from windmove.el | 30956 | ;;; Generated autoloads from windmove.el |
| 30922 | 30957 | ||
| 30923 | (autoload (quote windmove-left) "windmove" "\ | 30958 | (autoload 'windmove-left "windmove" "\ |
| 30924 | Select the window to the left of the current one. | 30959 | Select the window to the left of the current one. |
| 30925 | With no prefix argument, or with prefix argument equal to zero, | 30960 | With no prefix argument, or with prefix argument equal to zero, |
| 30926 | \"left\" is relative to the position of point in the window; otherwise | 30961 | \"left\" is relative to the position of point in the window; otherwise |
| @@ -30930,7 +30965,7 @@ If no window is at the desired location, an error is signaled. | |||
| 30930 | 30965 | ||
| 30931 | \(fn &optional ARG)" t nil) | 30966 | \(fn &optional ARG)" t nil) |
| 30932 | 30967 | ||
| 30933 | (autoload (quote windmove-up) "windmove" "\ | 30968 | (autoload 'windmove-up "windmove" "\ |
| 30934 | Select the window above the current one. | 30969 | Select the window above the current one. |
| 30935 | With no prefix argument, or with prefix argument equal to zero, \"up\" | 30970 | With no prefix argument, or with prefix argument equal to zero, \"up\" |
| 30936 | is relative to the position of point in the window; otherwise it is | 30971 | is relative to the position of point in the window; otherwise it is |
| @@ -30940,7 +30975,7 @@ If no window is at the desired location, an error is signaled. | |||
| 30940 | 30975 | ||
| 30941 | \(fn &optional ARG)" t nil) | 30976 | \(fn &optional ARG)" t nil) |
| 30942 | 30977 | ||
| 30943 | (autoload (quote windmove-right) "windmove" "\ | 30978 | (autoload 'windmove-right "windmove" "\ |
| 30944 | Select the window to the right of the current one. | 30979 | Select the window to the right of the current one. |
| 30945 | With no prefix argument, or with prefix argument equal to zero, | 30980 | With no prefix argument, or with prefix argument equal to zero, |
| 30946 | \"right\" is relative to the position of point in the window; | 30981 | \"right\" is relative to the position of point in the window; |
| @@ -30950,7 +30985,7 @@ If no window is at the desired location, an error is signaled. | |||
| 30950 | 30985 | ||
| 30951 | \(fn &optional ARG)" t nil) | 30986 | \(fn &optional ARG)" t nil) |
| 30952 | 30987 | ||
| 30953 | (autoload (quote windmove-down) "windmove" "\ | 30988 | (autoload 'windmove-down "windmove" "\ |
| 30954 | Select the window below the current one. | 30989 | Select the window below the current one. |
| 30955 | With no prefix argument, or with prefix argument equal to zero, | 30990 | With no prefix argument, or with prefix argument equal to zero, |
| 30956 | \"down\" is relative to the position of point in the window; otherwise | 30991 | \"down\" is relative to the position of point in the window; otherwise |
| @@ -30960,7 +30995,7 @@ If no window is at the desired location, an error is signaled. | |||
| 30960 | 30995 | ||
| 30961 | \(fn &optional ARG)" t nil) | 30996 | \(fn &optional ARG)" t nil) |
| 30962 | 30997 | ||
| 30963 | (autoload (quote windmove-default-keybindings) "windmove" "\ | 30998 | (autoload 'windmove-default-keybindings "windmove" "\ |
| 30964 | Set up keybindings for `windmove'. | 30999 | Set up keybindings for `windmove'. |
| 30965 | Keybindings are of the form MODIFIER-{left,right,up,down}. | 31000 | Keybindings are of the form MODIFIER-{left,right,up,down}. |
| 30966 | Default MODIFIER is 'shift. | 31001 | Default MODIFIER is 'shift. |
| @@ -30970,7 +31005,7 @@ Default MODIFIER is 'shift. | |||
| 30970 | ;;;*** | 31005 | ;;;*** |
| 30971 | 31006 | ||
| 30972 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" | 31007 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" |
| 30973 | ;;;;;; (18104 24743)) | 31008 | ;;;;;; (18120 34750)) |
| 30974 | ;;; Generated autoloads from winner.el | 31009 | ;;; Generated autoloads from winner.el |
| 30975 | 31010 | ||
| 30976 | (defvar winner-mode nil "\ | 31011 | (defvar winner-mode nil "\ |
| @@ -30978,9 +31013,9 @@ Toggle Winner mode. | |||
| 30978 | Setting this variable directly does not take effect; | 31013 | Setting this variable directly does not take effect; |
| 30979 | use either \\[customize] or the function `winner-mode'.") | 31014 | use either \\[customize] or the function `winner-mode'.") |
| 30980 | 31015 | ||
| 30981 | (custom-autoload (quote winner-mode) "winner" nil) | 31016 | (custom-autoload 'winner-mode "winner" nil) |
| 30982 | 31017 | ||
| 30983 | (autoload (quote winner-mode) "winner" "\ | 31018 | (autoload 'winner-mode "winner" "\ |
| 30984 | Toggle Winner mode. | 31019 | Toggle Winner mode. |
| 30985 | With arg, turn Winner mode on if and only if arg is positive. | 31020 | With arg, turn Winner mode on if and only if arg is positive. |
| 30986 | 31021 | ||
| @@ -30989,10 +31024,10 @@ With arg, turn Winner mode on if and only if arg is positive. | |||
| 30989 | ;;;*** | 31024 | ;;;*** |
| 30990 | 31025 | ||
| 30991 | ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" | 31026 | ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" |
| 30992 | ;;;;;; "woman.el" (18104 24743)) | 31027 | ;;;;;; "woman.el" (18197 21670)) |
| 30993 | ;;; Generated autoloads from woman.el | 31028 | ;;; Generated autoloads from woman.el |
| 30994 | 31029 | ||
| 30995 | (autoload (quote woman) "woman" "\ | 31030 | (autoload 'woman "woman" "\ |
| 30996 | Browse UN*X man page for TOPIC (Without using external Man program). | 31031 | Browse UN*X man page for TOPIC (Without using external Man program). |
| 30997 | The major browsing mode used is essentially the standard Man mode. | 31032 | The major browsing mode used is essentially the standard Man mode. |
| 30998 | Choose the filename for the man page using completion, based on the | 31033 | Choose the filename for the man page using completion, based on the |
| @@ -31006,12 +31041,12 @@ should be a topic string and non-nil RE-CACHE forces re-caching. | |||
| 31006 | 31041 | ||
| 31007 | \(fn &optional TOPIC RE-CACHE)" t nil) | 31042 | \(fn &optional TOPIC RE-CACHE)" t nil) |
| 31008 | 31043 | ||
| 31009 | (autoload (quote woman-dired-find-file) "woman" "\ | 31044 | (autoload 'woman-dired-find-file "woman" "\ |
| 31010 | In dired, run the WoMan man-page browser on this file. | 31045 | In dired, run the WoMan man-page browser on this file. |
| 31011 | 31046 | ||
| 31012 | \(fn)" t nil) | 31047 | \(fn)" t nil) |
| 31013 | 31048 | ||
| 31014 | (autoload (quote woman-find-file) "woman" "\ | 31049 | (autoload 'woman-find-file "woman" "\ |
| 31015 | Find, decode and browse a specific UN*X man-page source file FILE-NAME. | 31050 | Find, decode and browse a specific UN*X man-page source file FILE-NAME. |
| 31016 | Use existing buffer if possible; reformat only if prefix arg given. | 31051 | Use existing buffer if possible; reformat only if prefix arg given. |
| 31017 | When called interactively, optional argument REFORMAT forces reformatting | 31052 | When called interactively, optional argument REFORMAT forces reformatting |
| @@ -31025,10 +31060,10 @@ decompress the file if appropriate. See the documentation for the | |||
| 31025 | ;;;*** | 31060 | ;;;*** |
| 31026 | 31061 | ||
| 31027 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" | 31062 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" |
| 31028 | ;;;;;; (18104 24748)) | 31063 | ;;;;;; (18088 55097)) |
| 31029 | ;;; Generated autoloads from emulation/ws-mode.el | 31064 | ;;; Generated autoloads from emulation/ws-mode.el |
| 31030 | 31065 | ||
| 31031 | (autoload (quote wordstar-mode) "ws-mode" "\ | 31066 | (autoload 'wordstar-mode "ws-mode" "\ |
| 31032 | Major mode with WordStar-like key bindings. | 31067 | Major mode with WordStar-like key bindings. |
| 31033 | 31068 | ||
| 31034 | BUGS: | 31069 | BUGS: |
| @@ -31138,10 +31173,10 @@ The key bindings are: | |||
| 31138 | ;;;*** | 31173 | ;;;*** |
| 31139 | 31174 | ||
| 31140 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" | 31175 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" |
| 31141 | ;;;;;; (18104 24743)) | 31176 | ;;;;;; (18088 55091)) |
| 31142 | ;;; Generated autoloads from xml.el | 31177 | ;;; Generated autoloads from xml.el |
| 31143 | 31178 | ||
| 31144 | (autoload (quote xml-parse-file) "xml" "\ | 31179 | (autoload 'xml-parse-file "xml" "\ |
| 31145 | Parse the well-formed XML file FILE. | 31180 | Parse the well-formed XML file FILE. |
| 31146 | If FILE is already visited, use its buffer and don't kill it. | 31181 | If FILE is already visited, use its buffer and don't kill it. |
| 31147 | Returns the top node with all its children. | 31182 | Returns the top node with all its children. |
| @@ -31150,7 +31185,7 @@ If PARSE-NS is non-nil, then QNAMES are expanded. | |||
| 31150 | 31185 | ||
| 31151 | \(fn FILE &optional PARSE-DTD PARSE-NS)" nil nil) | 31186 | \(fn FILE &optional PARSE-DTD PARSE-NS)" nil nil) |
| 31152 | 31187 | ||
| 31153 | (autoload (quote xml-parse-region) "xml" "\ | 31188 | (autoload 'xml-parse-region "xml" "\ |
| 31154 | Parse the region from BEG to END in BUFFER. | 31189 | Parse the region from BEG to END in BUFFER. |
| 31155 | If BUFFER is nil, it defaults to the current buffer. | 31190 | If BUFFER is nil, it defaults to the current buffer. |
| 31156 | Returns the XML list for the region, or raises an error if the region | 31191 | Returns the XML list for the region, or raises an error if the region |
| @@ -31163,8 +31198,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. | |||
| 31163 | 31198 | ||
| 31164 | ;;;*** | 31199 | ;;;*** |
| 31165 | 31200 | ||
| 31166 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (18104 | 31201 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (18200 |
| 31167 | ;;;;;; 24743)) | 31202 | ;;;;;; 51264)) |
| 31168 | ;;; Generated autoloads from xt-mouse.el | 31203 | ;;; Generated autoloads from xt-mouse.el |
| 31169 | 31204 | ||
| 31170 | (defvar xterm-mouse-mode nil "\ | 31205 | (defvar xterm-mouse-mode nil "\ |
| @@ -31174,11 +31209,12 @@ Setting this variable directly does not take effect; | |||
| 31174 | either customize it (see the info node `Easy Customization') | 31209 | either customize it (see the info node `Easy Customization') |
| 31175 | or call the function `xterm-mouse-mode'.") | 31210 | or call the function `xterm-mouse-mode'.") |
| 31176 | 31211 | ||
| 31177 | (custom-autoload (quote xterm-mouse-mode) "xt-mouse" nil) | 31212 | (custom-autoload 'xterm-mouse-mode "xt-mouse" nil) |
| 31178 | 31213 | ||
| 31179 | (autoload (quote xterm-mouse-mode) "xt-mouse" "\ | 31214 | (autoload 'xterm-mouse-mode "xt-mouse" "\ |
| 31180 | Toggle XTerm mouse mode. | 31215 | Toggle XTerm mouse mode. |
| 31181 | With prefix arg, turn XTerm mouse mode on iff arg is positive. | 31216 | With prefix arg, turn XTerm mouse mode on if arg is positive, otherwise turn |
| 31217 | it off. | ||
| 31182 | 31218 | ||
| 31183 | Turn it on to use Emacs mouse commands, and off to use xterm mouse commands. | 31219 | Turn it on to use Emacs mouse commands, and off to use xterm mouse commands. |
| 31184 | This works in terminal emulators compatible with xterm. It only | 31220 | This works in terminal emulators compatible with xterm. It only |
| @@ -31192,15 +31228,15 @@ down the SHIFT key while pressing the mouse button. | |||
| 31192 | ;;;*** | 31228 | ;;;*** |
| 31193 | 31229 | ||
| 31194 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" | 31230 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" |
| 31195 | ;;;;;; "gnus/yenc.el" (18104 24756)) | 31231 | ;;;;;; "gnus/yenc.el" (18088 55107)) |
| 31196 | ;;; Generated autoloads from gnus/yenc.el | 31232 | ;;; Generated autoloads from gnus/yenc.el |
| 31197 | 31233 | ||
| 31198 | (autoload (quote yenc-decode-region) "yenc" "\ | 31234 | (autoload 'yenc-decode-region "yenc" "\ |
| 31199 | Yenc decode region between START and END using an internal decoder. | 31235 | Yenc decode region between START and END using an internal decoder. |
| 31200 | 31236 | ||
| 31201 | \(fn START END)" t nil) | 31237 | \(fn START END)" t nil) |
| 31202 | 31238 | ||
| 31203 | (autoload (quote yenc-extract-filename) "yenc" "\ | 31239 | (autoload 'yenc-extract-filename "yenc" "\ |
| 31204 | Extract file name from an yenc header. | 31240 | Extract file name from an yenc header. |
| 31205 | 31241 | ||
| 31206 | \(fn)" nil nil) | 31242 | \(fn)" nil nil) |
| @@ -31208,36 +31244,36 @@ Extract file name from an yenc header. | |||
| 31208 | ;;;*** | 31244 | ;;;*** |
| 31209 | 31245 | ||
| 31210 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism | 31246 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism |
| 31211 | ;;;;;; yow) "yow" "play/yow.el" (18104 24762)) | 31247 | ;;;;;; yow) "yow" "play/yow.el" (18203 37788)) |
| 31212 | ;;; Generated autoloads from play/yow.el | 31248 | ;;; Generated autoloads from play/yow.el |
| 31213 | 31249 | ||
| 31214 | (autoload (quote yow) "yow" "\ | 31250 | (autoload 'yow "yow" "\ |
| 31215 | Return or display a random Zippy quotation. With prefix arg, insert it. | 31251 | Return or display a random Zippy quotation. With prefix arg, insert it. |
| 31216 | 31252 | ||
| 31217 | \(fn &optional INSERT DISPLAY)" t nil) | 31253 | \(fn &optional INSERT DISPLAY)" t nil) |
| 31218 | 31254 | ||
| 31219 | (autoload (quote insert-zippyism) "yow" "\ | 31255 | (autoload 'insert-zippyism "yow" "\ |
| 31220 | Prompt with completion for a known Zippy quotation, and insert it at point. | 31256 | Prompt with completion for a known Zippy quotation, and insert it at point. |
| 31221 | 31257 | ||
| 31222 | \(fn &optional ZIPPYISM)" t nil) | 31258 | \(fn &optional ZIPPYISM)" t nil) |
| 31223 | 31259 | ||
| 31224 | (autoload (quote apropos-zippy) "yow" "\ | 31260 | (autoload 'apropos-zippy "yow" "\ |
| 31225 | Return a list of all Zippy quotes matching REGEXP. | 31261 | Return a list of all Zippy quotes matching REGEXP. |
| 31226 | If called interactively, display a list of matches. | 31262 | If called interactively, display a list of matches. |
| 31227 | 31263 | ||
| 31228 | \(fn REGEXP)" t nil) | 31264 | \(fn REGEXP)" t nil) |
| 31229 | 31265 | ||
| 31230 | (autoload (quote psychoanalyze-pinhead) "yow" "\ | 31266 | (autoload 'psychoanalyze-pinhead "yow" "\ |
| 31231 | Zippy goes to the analyst. | 31267 | Zippy goes to the analyst. |
| 31232 | 31268 | ||
| 31233 | \(fn)" t nil) | 31269 | \(fn)" t nil) |
| 31234 | 31270 | ||
| 31235 | ;;;*** | 31271 | ;;;*** |
| 31236 | 31272 | ||
| 31237 | ;;;### (autoloads (zone) "zone" "play/zone.el" (18104 24762)) | 31273 | ;;;### (autoloads (zone) "zone" "play/zone.el" (18202 4002)) |
| 31238 | ;;; Generated autoloads from play/zone.el | 31274 | ;;; Generated autoloads from play/zone.el |
| 31239 | 31275 | ||
| 31240 | (autoload (quote zone) "zone" "\ | 31276 | (autoload 'zone "zone" "\ |
| 31241 | Zone out, completely. | 31277 | Zone out, completely. |
| 31242 | 31278 | ||
| 31243 | \(fn)" t nil) | 31279 | \(fn)" t nil) |
| @@ -31252,36 +31288,37 @@ Zone out, completely. | |||
| 31252 | ;;;;;; "calc/calc-help.el" "calc/calc-incom.el" "calc/calc-keypd.el" | 31288 | ;;;;;; "calc/calc-help.el" "calc/calc-incom.el" "calc/calc-keypd.el" |
| 31253 | ;;;;;; "calc/calc-lang.el" "calc/calc-macs.el" "calc/calc-map.el" | 31289 | ;;;;;; "calc/calc-lang.el" "calc/calc-macs.el" "calc/calc-map.el" |
| 31254 | ;;;;;; "calc/calc-math.el" "calc/calc-misc.el" "calc/calc-mode.el" | 31290 | ;;;;;; "calc/calc-math.el" "calc/calc-misc.el" "calc/calc-mode.el" |
| 31255 | ;;;;;; "calc/calc-mtx.el" "calc/calc-poly.el" "calc/calc-prog.el" | 31291 | ;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el" |
| 31256 | ;;;;;; "calc/calc-rewr.el" "calc/calc-rules.el" "calc/calc-sel.el" | 31292 | ;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el" |
| 31257 | ;;;;;; "calc/calc-stat.el" "calc/calc-store.el" "calc/calc-stuff.el" | 31293 | ;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el" |
| 31258 | ;;;;;; "calc/calc-trail.el" "calc/calc-undo.el" "calc/calc-units.el" | 31294 | ;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-undo.el" |
| 31259 | ;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el" | 31295 | ;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el" |
| 31260 | ;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el" | 31296 | ;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el" |
| 31261 | ;;;;;; "calendar/cal-bahai.el" "calendar/cal-china.el" "calendar/cal-coptic.el" | 31297 | ;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-china.el" |
| 31262 | ;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el" | 31298 | ;;;;;; "calendar/cal-coptic.el" "calendar/cal-french.el" "calendar/cal-html.el" |
| 31263 | ;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-mayan.el" | 31299 | ;;;;;; "calendar/cal-islam.el" "calendar/cal-iso.el" "calendar/cal-julian.el" |
| 31264 | ;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" | 31300 | ;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el" |
| 31265 | ;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "case-table.el" | 31301 | ;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el" |
| 31266 | ;;;;;; "cdl.el" "cus-dep.el" "cus-load.el" "cus-start.el" "custom.el" | 31302 | ;;;;;; "case-table.el" "cdl.el" "cus-dep.el" "cus-load.el" "cus-start.el" |
| 31267 | ;;;;;; "dframe.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" "ediff-diff.el" | 31303 | ;;;;;; "custom.el" "dframe.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" |
| 31268 | ;;;;;; "ediff-init.el" "ediff-merg.el" "ediff-ptch.el" "ediff-vers.el" | 31304 | ;;;;;; "ediff-diff.el" "ediff-init.el" "ediff-merg.el" "ediff-ptch.el" |
| 31269 | ;;;;;; "ediff-wind.el" "electric.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" | 31305 | ;;;;;; "ediff-vers.el" "ediff-wind.el" "electric.el" "emacs-lisp/assoc.el" |
| 31270 | ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el" | 31306 | ;;;;;; "emacs-lisp/authors.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" |
| 31271 | ;;;;;; "emacs-lisp/cl-compat.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" | 31307 | ;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el" "emacs-lisp/cl-compat.el" |
| 31272 | ;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" | 31308 | ;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" |
| 31273 | ;;;;;; "emacs-lisp/cust-print.el" "emacs-lisp/find-gc.el" "emacs-lisp/float-sup.el" | 31309 | ;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el" |
| 31274 | ;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el" | 31310 | ;;;;;; "emacs-lisp/find-gc.el" "emacs-lisp/float-sup.el" "emacs-lisp/gulp.el" |
| 31275 | ;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el" | 31311 | ;;;;;; "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/lisp-mode.el" |
| 31276 | ;;;;;; "emacs-lisp/lselect.el" "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el" | 31312 | ;;;;;; "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el" "emacs-lisp/lselect.el" |
| 31277 | ;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/syntax.el" | 31313 | ;;;;;; "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el" "emacs-lisp/regi.el" |
| 31278 | ;;;;;; "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" | 31314 | ;;;;;; "emacs-lisp/sregex.el" "emacs-lisp/syntax.el" "emacs-lisp/tcover-ses.el" |
| 31279 | ;;;;;; "emacs-lock.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el" | 31315 | ;;;;;; "emacs-lisp/tcover-unsafep.el" "emacs-lock.el" "emulation/cua-gmrk.el" |
| 31280 | ;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el" | 31316 | ;;;;;; "emulation/cua-rect.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" |
| 31281 | ;;;;;; "emulation/edt-vt100.el" "emulation/tpu-mapper.el" "emulation/viper-cmd.el" | 31317 | ;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/tpu-extras.el" |
| 31282 | ;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" | 31318 | ;;;;;; "emulation/tpu-mapper.el" "emulation/viper-cmd.el" "emulation/viper-ex.el" |
| 31283 | ;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" | 31319 | ;;;;;; "emulation/viper-init.el" "emulation/viper-keym.el" "emulation/viper-macs.el" |
| 31284 | ;;;;;; "env.el" "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" | 31320 | ;;;;;; "emulation/viper-mous.el" "emulation/viper-util.el" "env.el" |
| 31321 | ;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" | ||
| 31285 | ;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" | 31322 | ;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" |
| 31286 | ;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" | 31323 | ;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" |
| 31287 | ;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" | 31324 | ;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" |
| @@ -31297,27 +31334,30 @@ Zone out, completely. | |||
| 31297 | ;;;;;; "gnus/dig.el" "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" | 31334 | ;;;;;; "gnus/dig.el" "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" |
| 31298 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" | 31335 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" |
| 31299 | ;;;;;; "gnus/gnus-demon.el" "gnus/gnus-dup.el" "gnus/gnus-eform.el" | 31336 | ;;;;;; "gnus/gnus-demon.el" "gnus/gnus-dup.el" "gnus/gnus-eform.el" |
| 31300 | ;;;;;; "gnus/gnus-ems.el" "gnus/gnus-gl.el" "gnus/gnus-int.el" "gnus/gnus-logic.el" | 31337 | ;;;;;; "gnus/gnus-ems.el" "gnus/gnus-int.el" "gnus/gnus-logic.el" |
| 31301 | ;;;;;; "gnus/gnus-mh.el" "gnus/gnus-salt.el" "gnus/gnus-score.el" | 31338 | ;;;;;; "gnus/gnus-mh.el" "gnus/gnus-salt.el" "gnus/gnus-score.el" |
| 31302 | ;;;;;; "gnus/gnus-setup.el" "gnus/gnus-srvr.el" "gnus/gnus-sum.el" | 31339 | ;;;;;; "gnus/gnus-setup.el" "gnus/gnus-srvr.el" "gnus/gnus-sum.el" |
| 31303 | ;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el" | 31340 | ;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el" |
| 31304 | ;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/hex-util.el" "gnus/ietf-drums.el" | 31341 | ;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/hex-util.el" "gnus/hmac-def.el" |
| 31305 | ;;;;;; "gnus/imap.el" "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" | 31342 | ;;;;;; "gnus/hmac-md5.el" "gnus/ietf-drums.el" "gnus/imap.el" "gnus/legacy-gnus-agent.el" |
| 31306 | ;;;;;; "gnus/mail-prsvr.el" "gnus/mail-source.el" "gnus/mailcap.el" | 31343 | ;;;;;; "gnus/mail-parse.el" "gnus/mail-prsvr.el" "gnus/mail-source.el" |
| 31307 | ;;;;;; "gnus/messcompat.el" "gnus/mm-bodies.el" "gnus/mm-decode.el" | 31344 | ;;;;;; "gnus/mailcap.el" "gnus/md4.el" "gnus/messcompat.el" "gnus/mm-bodies.el" |
| 31308 | ;;;;;; "gnus/mm-encode.el" "gnus/mm-util.el" "gnus/mm-view.el" "gnus/mml-sec.el" | 31345 | ;;;;;; "gnus/mm-decode.el" "gnus/mm-encode.el" "gnus/mm-util.el" |
| 31309 | ;;;;;; "gnus/mml-smime.el" "gnus/mml.el" "gnus/nnagent.el" "gnus/nnbabyl.el" | 31346 | ;;;;;; "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" "gnus/mml.el" |
| 31310 | ;;;;;; "gnus/nndb.el" "gnus/nndir.el" "gnus/nndraft.el" "gnus/nneething.el" | 31347 | ;;;;;; "gnus/nnagent.el" "gnus/nnbabyl.el" "gnus/nndb.el" "gnus/nndir.el" |
| 31311 | ;;;;;; "gnus/nngateway.el" "gnus/nnheader.el" "gnus/nnimap.el" "gnus/nnlistserv.el" | 31348 | ;;;;;; "gnus/nndraft.el" "gnus/nneething.el" "gnus/nngateway.el" |
| 31349 | ;;;;;; "gnus/nnheader.el" "gnus/nnimap.el" "gnus/nnlistserv.el" | ||
| 31312 | ;;;;;; "gnus/nnmail.el" "gnus/nnmaildir.el" "gnus/nnmbox.el" "gnus/nnmh.el" | 31350 | ;;;;;; "gnus/nnmail.el" "gnus/nnmaildir.el" "gnus/nnmbox.el" "gnus/nnmh.el" |
| 31313 | ;;;;;; "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnrss.el" "gnus/nnslashdot.el" | 31351 | ;;;;;; "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnrss.el" "gnus/nnslashdot.el" |
| 31314 | ;;;;;; "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnultimate.el" "gnus/nnvirtual.el" | 31352 | ;;;;;; "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnultimate.el" "gnus/nnvirtual.el" |
| 31315 | ;;;;;; "gnus/nnwarchive.el" "gnus/nnweb.el" "gnus/nnwfm.el" "gnus/pop3.el" | 31353 | ;;;;;; "gnus/nnwarchive.el" "gnus/nnweb.el" "gnus/nnwfm.el" "gnus/ntlm.el" |
| 31316 | ;;;;;; "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2104.el" | 31354 | ;;;;;; "gnus/password.el" "gnus/pop3.el" "gnus/rfc1843.el" "gnus/rfc2045.el" |
| 31317 | ;;;;;; "gnus/rfc2231.el" "gnus/sieve-manage.el" "gnus/smime.el" | 31355 | ;;;;;; "gnus/rfc2047.el" "gnus/rfc2104.el" "gnus/rfc2231.el" "gnus/sasl-cram.el" |
| 31318 | ;;;;;; "gnus/spam-stat.el" "gnus/starttls.el" "gnus/utf7.el" "gnus/webmail.el" | 31356 | ;;;;;; "gnus/sasl-digest.el" "gnus/sasl-ntlm.el" "gnus/sasl.el" |
| 31319 | ;;;;;; "help.el" "indent.el" "international/characters.el" "international/fontset.el" | 31357 | ;;;;;; "gnus/sieve-manage.el" "gnus/smime-ldap.el" "gnus/smime.el" |
| 31320 | ;;;;;; "international/iso-ascii.el" "international/ja-dic-cnv.el" | 31358 | ;;;;;; "gnus/spam-stat.el" "gnus/spam-wash.el" "gnus/starttls.el" |
| 31359 | ;;;;;; "gnus/utf7.el" "gnus/webmail.el" "help.el" "indent.el" "international/characters.el" | ||
| 31360 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" | ||
| 31321 | ;;;;;; "international/ja-dic-utl.el" "international/latin-1.el" | 31361 | ;;;;;; "international/ja-dic-utl.el" "international/latin-1.el" |
| 31322 | ;;;;;; "international/latin-2.el" "international/latin-3.el" "international/latin-4.el" | 31362 | ;;;;;; "international/latin-2.el" "international/latin-3.el" "international/latin-4.el" |
| 31323 | ;;;;;; "international/latin-5.el" "international/latin-8.el" "international/latin-9.el" | 31363 | ;;;;;; "international/latin-5.el" "international/latin-8.el" "international/latin-9.el" |
| @@ -31341,17 +31381,18 @@ Zone out, completely. | |||
| 31341 | ;;;;;; "mh-e/mh-acros.el" "mh-e/mh-alias.el" "mh-e/mh-buffers.el" | 31381 | ;;;;;; "mh-e/mh-acros.el" "mh-e/mh-alias.el" "mh-e/mh-buffers.el" |
| 31342 | ;;;;;; "mh-e/mh-compat.el" "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" | 31382 | ;;;;;; "mh-e/mh-compat.el" "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" |
| 31343 | ;;;;;; "mh-e/mh-identity.el" "mh-e/mh-inc.el" "mh-e/mh-junk.el" | 31383 | ;;;;;; "mh-e/mh-identity.el" "mh-e/mh-inc.el" "mh-e/mh-junk.el" |
| 31344 | ;;;;;; "mh-e/mh-letter.el" "mh-e/mh-limit.el" "mh-e/mh-mime.el" | 31384 | ;;;;;; "mh-e/mh-letter.el" "mh-e/mh-limit.el" "mh-e/mh-loaddefs.el" |
| 31345 | ;;;;;; "mh-e/mh-print.el" "mh-e/mh-scan.el" "mh-e/mh-search.el" | 31385 | ;;;;;; "mh-e/mh-mime.el" "mh-e/mh-print.el" "mh-e/mh-scan.el" "mh-e/mh-search.el" |
| 31346 | ;;;;;; "mh-e/mh-seq.el" "mh-e/mh-show.el" "mh-e/mh-speed.el" "mh-e/mh-thread.el" | 31386 | ;;;;;; "mh-e/mh-seq.el" "mh-e/mh-show.el" "mh-e/mh-speed.el" "mh-e/mh-thread.el" |
| 31347 | ;;;;;; "mh-e/mh-tool-bar.el" "mh-e/mh-utils.el" "mh-e/mh-xface.el" | 31387 | ;;;;;; "mh-e/mh-tool-bar.el" "mh-e/mh-utils.el" "mh-e/mh-xface.el" |
| 31348 | ;;;;;; "misc.el" "mouse-copy.el" "mouse-drag.el" "mouse.el" "net/eudc-vars.el" | 31388 | ;;;;;; "misc.el" "mouse-copy.el" "mouse-drag.el" "mouse.el" "net/eudc-vars.el" |
| 31349 | ;;;;;; "net/eudcb-bbdb.el" "net/eudcb-ldap.el" "net/eudcb-mab.el" | 31389 | ;;;;;; "net/eudcb-bbdb.el" "net/eudcb-ldap.el" "net/eudcb-mab.el" |
| 31350 | ;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/socks.el" | 31390 | ;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/socks.el" |
| 31351 | ;;;;;; "net/tls.el" "net/tramp-cache.el" "net/tramp-fish.el" "net/tramp-gw.el" | 31391 | ;;;;;; "net/tls.el" "net/tramp-cache.el" "net/tramp-cmds.el" "net/tramp-compat.el" |
| 31352 | ;;;;;; "net/tramp-smb.el" "net/tramp-uu.el" "net/trampver.el" "patcomp.el" | 31392 | ;;;;;; "net/tramp-fish.el" "net/tramp-gw.el" "net/tramp-smb.el" |
| 31353 | ;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" | 31393 | ;;;;;; "net/tramp-uu.el" "net/trampver.el" "patcomp.el" "paths.el" |
| 31354 | ;;;;;; "pgg-def.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el" | 31394 | ;;;;;; "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" "pgg-def.el" |
| 31395 | ;;;;;; "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el" | ||
| 31355 | ;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" | 31396 | ;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" |
| 31356 | ;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" | 31397 | ;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" |
| 31357 | ;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-defs.el" "progmodes/cc-fonts.el" | 31398 | ;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-defs.el" "progmodes/cc-fonts.el" |
| @@ -31363,18 +31404,18 @@ Zone out, completely. | |||
| 31363 | ;;;;;; "ps-mule.el" "register.el" "replace.el" "rfn-eshadow.el" | 31404 | ;;;;;; "ps-mule.el" "register.el" "replace.el" "rfn-eshadow.el" |
| 31364 | ;;;;;; "s-region.el" "saveplace.el" "sb-image.el" "scroll-bar.el" | 31405 | ;;;;;; "s-region.el" "saveplace.el" "sb-image.el" "scroll-bar.el" |
| 31365 | ;;;;;; "select.el" "soundex.el" "startup.el" "subdirs.el" "tempo.el" | 31406 | ;;;;;; "select.el" "soundex.el" "startup.el" "subdirs.el" "tempo.el" |
| 31366 | ;;;;;; "termdev.el" "textmodes/bib-mode.el" "textmodes/makeinfo.el" | 31407 | ;;;;;; "textmodes/bib-mode.el" "textmodes/makeinfo.el" "textmodes/page-ext.el" |
| 31367 | ;;;;;; "textmodes/page-ext.el" "textmodes/page.el" "textmodes/refbib.el" | 31408 | ;;;;;; "textmodes/page.el" "textmodes/refbib.el" "textmodes/refer.el" |
| 31368 | ;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" | 31409 | ;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" |
| 31369 | ;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" | 31410 | ;;;;;; "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" |
| 31370 | ;;;;;; "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "timezone.el" | 31411 | ;;;;;; "textmodes/text-mode.el" "timezone.el" "tooltip.el" "tree-widget.el" |
| 31371 | ;;;;;; "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el" | 31412 | ;;;;;; "uniquify.el" "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" |
| 31372 | ;;;;;; "url/url-cookie.el" "url/url-dired.el" "url/url-expand.el" | 31413 | ;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el" |
| 31373 | ;;;;;; "url/url-ftp.el" "url/url-history.el" "url/url-imap.el" "url/url-methods.el" | 31414 | ;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" |
| 31374 | ;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "url/vc-dav.el" | 31415 | ;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" |
| 31375 | ;;;;;; "vc-hooks.el" "vcursor.el" "version.el" "vms-patch.el" "vmsproc.el" | 31416 | ;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" |
| 31376 | ;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" | 31417 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" |
| 31377 | ;;;;;; "widget.el" "window.el" "x-dnd.el") (18104 28510 272741)) | 31418 | ;;;;;; "x-dnd.el") (18214 7224 993409)) |
| 31378 | 31419 | ||
| 31379 | ;;;*** | 31420 | ;;;*** |
| 31380 | 31421 | ||
diff --git a/lisp/longlines.el b/lisp/longlines.el index c820150c27a..f043a48c737 100644 --- a/lisp/longlines.el +++ b/lisp/longlines.el | |||
| @@ -93,6 +93,8 @@ This is used when `longlines-show-hard-newlines' is on." | |||
| 93 | 93 | ||
| 94 | ;; Mode | 94 | ;; Mode |
| 95 | 95 | ||
| 96 | (defvar message-indent-citation-function) | ||
| 97 | |||
| 96 | ;;;###autoload | 98 | ;;;###autoload |
| 97 | (define-minor-mode longlines-mode | 99 | (define-minor-mode longlines-mode |
| 98 | "Toggle Long Lines mode. | 100 | "Toggle Long Lines mode. |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 69d8c814f46..73e8ec49045 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -296,6 +296,7 @@ property of the major mode name.") | |||
| 296 | ;;*--- mail mode -------------------------------------------------------*/ | 296 | ;;*--- mail mode -------------------------------------------------------*/ |
| 297 | (put 'mail-mode 'flyspell-mode-predicate 'mail-mode-flyspell-verify) | 297 | (put 'mail-mode 'flyspell-mode-predicate 'mail-mode-flyspell-verify) |
| 298 | (put 'message-mode 'flyspell-mode-predicate 'mail-mode-flyspell-verify) | 298 | (put 'message-mode 'flyspell-mode-predicate 'mail-mode-flyspell-verify) |
| 299 | (defvar message-signature-separator) | ||
| 299 | (defun mail-mode-flyspell-verify () | 300 | (defun mail-mode-flyspell-verify () |
| 300 | "Function used for `flyspell-generic-check-word-predicate' in Mail mode." | 301 | "Function used for `flyspell-generic-check-word-predicate' in Mail mode." |
| 301 | (let ((header-end (save-excursion | 302 | (let ((header-end (save-excursion |