diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 21 | ||||
| -rw-r--r-- | lisp/comint.el | 10 | ||||
| -rw-r--r-- | lisp/isearch.el | 23 | ||||
| -rw-r--r-- | lisp/ldefs-boot.el | 361 | ||||
| -rw-r--r-- | lisp/progmodes/octave.el | 37 | ||||
| -rwxr-xr-x | make-dist | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/nsfns.m | 2 |
9 files changed, 230 insertions, 236 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-05-01 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * make-dist: Keep necessary restrictions on file access. | ||
| 4 | |||
| 1 | 2013-04-29 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2013-04-29 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | Merge from gnulib, incorporating: | 7 | Merge from gnulib, incorporating: |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index edc75c736ad..be8329a856c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,26 @@ | |||
| 1 | 2013-05-01 Leo Liu <sdl.web@gmail.com> | 1 | 2013-05-01 Leo Liu <sdl.web@gmail.com> |
| 2 | 2 | ||
| 3 | * progmodes/octave.el: Compatible with older emacs-24 releases. | ||
| 4 | (inferior-octave-has-built-in-variables): Remove. Buil-in | ||
| 5 | variables were removed from Octave in 2007. | ||
| 6 | (inferior-octave-startup): Fix uses. | ||
| 7 | (comint-line-beginning-position): Remove compatibility code for | ||
| 8 | emacs 21. | ||
| 9 | |||
| 10 | 2013-05-01 Juri Linkov <juri@jurta.org> | ||
| 11 | |||
| 12 | * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923) | ||
| 13 | |||
| 14 | 2013-05-01 Juri Linkov <juri@jurta.org> | ||
| 15 | |||
| 16 | * comint.el (comint-previous-matching-input): Don't print message | ||
| 17 | "History item: %d" when `isearch-mode' is active. | ||
| 18 | (comint-history-isearch-message): Print message "History item: %d" | ||
| 19 | when `comint-input-ring-index' is not empty and this function is | ||
| 20 | called from `isearch-update' with a nil `ellipsis'. (Bug#13223) | ||
| 21 | |||
| 22 | 2013-05-01 Leo Liu <sdl.web@gmail.com> | ||
| 23 | |||
| 3 | * progmodes/octave.el (octave-abbrev-table): Remove abbrev | 24 | * progmodes/octave.el (octave-abbrev-table): Remove abbrev |
| 4 | definitions. Use completion-at-point to insert keywords. | 25 | definitions. Use completion-at-point to insert keywords. |
| 5 | (octave-abbrev-start): Remove. | 26 | (octave-abbrev-start): Remove. |
diff --git a/lisp/comint.el b/lisp/comint.el index d5d95f8cbc0..d0c2e477d5a 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1191,7 +1191,8 @@ If N is negative, find the next or Nth next match." | |||
| 1191 | (setq comint-stored-incomplete-input | 1191 | (setq comint-stored-incomplete-input |
| 1192 | (funcall comint-get-old-input))) | 1192 | (funcall comint-get-old-input))) |
| 1193 | (setq comint-input-ring-index pos) | 1193 | (setq comint-input-ring-index pos) |
| 1194 | (message "History item: %d" (1+ pos)) | 1194 | (unless isearch-mode |
| 1195 | (message "History item: %d" (1+ pos))) | ||
| 1195 | (comint-delete-input) | 1196 | (comint-delete-input) |
| 1196 | (insert (ring-ref comint-input-ring pos))))) | 1197 | (insert (ring-ref comint-input-ring pos))))) |
| 1197 | 1198 | ||
| @@ -1540,8 +1541,11 @@ the function `isearch-message'." | |||
| 1540 | (overlay-put comint-history-isearch-message-overlay 'evaporate t)) | 1541 | (overlay-put comint-history-isearch-message-overlay 'evaporate t)) |
| 1541 | (overlay-put comint-history-isearch-message-overlay | 1542 | (overlay-put comint-history-isearch-message-overlay |
| 1542 | 'display (isearch-message-prefix c-q-hack ellipsis)) | 1543 | 'display (isearch-message-prefix c-q-hack ellipsis)) |
| 1543 | ;; And clear any previous isearch message. | 1544 | (if (and comint-input-ring-index (not ellipsis)) |
| 1544 | (message ""))) | 1545 | ;; Display the current history index. |
| 1546 | (message "History item: %d" (1+ comint-input-ring-index)) | ||
| 1547 | ;; Or clear a previous isearch message. | ||
| 1548 | (message "")))) | ||
| 1545 | 1549 | ||
| 1546 | (defun comint-history-isearch-wrap () | 1550 | (defun comint-history-isearch-wrap () |
| 1547 | "Wrap the input history search when search fails. | 1551 | "Wrap the input history search when search fails. |
diff --git a/lisp/isearch.el b/lisp/isearch.el index b38bfc885f7..72a125fcecb 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -735,8 +735,9 @@ Other control and meta characters terminate the search | |||
| 735 | and are then executed normally (depending on `search-exit-option'). | 735 | and are then executed normally (depending on `search-exit-option'). |
| 736 | Likewise for function keys and mouse button events. | 736 | Likewise for function keys and mouse button events. |
| 737 | 737 | ||
| 738 | If this function is called non-interactively, it does not return to | 738 | If this function is called non-interactively with a nil NO-RECURSIVE-EDIT, |
| 739 | the calling function until the search is done." | 739 | it does not return to the calling function until the search is done. |
| 740 | See the function `isearch-mode' for more information." | ||
| 740 | 741 | ||
| 741 | (interactive "P\np") | 742 | (interactive "P\np") |
| 742 | (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit))) | 743 | (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit))) |
| @@ -799,7 +800,23 @@ as a regexp. See the command `isearch-forward' for more information." | |||
| 799 | 800 | ||
| 800 | (defun isearch-mode (forward &optional regexp op-fun recursive-edit word) | 801 | (defun isearch-mode (forward &optional regexp op-fun recursive-edit word) |
| 801 | "Start Isearch minor mode. | 802 | "Start Isearch minor mode. |
| 802 | It is called by the function `isearch-forward' and other related functions." | 803 | It is called by the function `isearch-forward' and other related functions. |
| 804 | |||
| 805 | The non-nil arg FORWARD means searching in the forward direction. | ||
| 806 | |||
| 807 | The non-nil arg REGEXP does an incremental regular expression search. | ||
| 808 | |||
| 809 | The arg OP-FUN is a function to be called after each input character | ||
| 810 | is processed. (It is not called after characters that exit the search.) | ||
| 811 | |||
| 812 | When the arg RECURSIVE-EDIT is non-nil, this function behaves modally and | ||
| 813 | does not return to the calling function until the search is completed. | ||
| 814 | To behave this way it enters a recursive-edit and exits it when done | ||
| 815 | isearching. | ||
| 816 | |||
| 817 | The arg WORD, if t, does incremental search for a sequence of words, | ||
| 818 | ignoring punctuation. If the value is a function, it is called to | ||
| 819 | convert the search string to a regexp used by regexp search functions." | ||
| 803 | 820 | ||
| 804 | ;; Initialize global vars. | 821 | ;; Initialize global vars. |
| 805 | (setq isearch-forward forward | 822 | (setq isearch-forward forward |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 2e05d6b02fb..d2b97986581 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -895,7 +895,7 @@ outline hot-spot navigation (see `allout-mode'). | |||
| 895 | ;;;*** | 895 | ;;;*** |
| 896 | 896 | ||
| 897 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" | 897 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" |
| 898 | ;;;;;; "net/ange-ftp.el" (20763 30266 231060 0)) | 898 | ;;;;;; "net/ange-ftp.el" (20843 54187 671468 0)) |
| 899 | ;;; Generated autoloads from net/ange-ftp.el | 899 | ;;; Generated autoloads from net/ange-ftp.el |
| 900 | 900 | ||
| 901 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | 901 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
| @@ -1656,7 +1656,7 @@ should be non-nil). | |||
| 1656 | 1656 | ||
| 1657 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode | 1657 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode |
| 1658 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) | 1658 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) |
| 1659 | ;;;;;; "autorevert" "autorevert.el" (20767 27320 533690 0)) | 1659 | ;;;;;; "autorevert" "autorevert.el" (20831 63016 738579 0)) |
| 1660 | ;;; Generated autoloads from autorevert.el | 1660 | ;;; Generated autoloads from autorevert.el |
| 1661 | 1661 | ||
| 1662 | (autoload 'auto-revert-mode "autorevert" "\ | 1662 | (autoload 'auto-revert-mode "autorevert" "\ |
| @@ -1860,7 +1860,7 @@ For non-interactive use see also `benchmark-run' and | |||
| 1860 | ;;;*** | 1860 | ;;;*** |
| 1861 | 1861 | ||
| 1862 | ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) | 1862 | ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) |
| 1863 | ;;;;;; "bibtex" "textmodes/bibtex.el" (20709 26818 907104 0)) | 1863 | ;;;;;; "bibtex" "textmodes/bibtex.el" (20842 33318 816618 0)) |
| 1864 | ;;; Generated autoloads from textmodes/bibtex.el | 1864 | ;;; Generated autoloads from textmodes/bibtex.el |
| 1865 | 1865 | ||
| 1866 | (autoload 'bibtex-initialize "bibtex" "\ | 1866 | (autoload 'bibtex-initialize "bibtex" "\ |
| @@ -1868,11 +1868,14 @@ For non-interactive use see also `benchmark-run' and | |||
| 1868 | Visit the BibTeX files defined by `bibtex-files' and return a list | 1868 | Visit the BibTeX files defined by `bibtex-files' and return a list |
| 1869 | of corresponding buffers. | 1869 | of corresponding buffers. |
| 1870 | Initialize in these buffers `bibtex-reference-keys' if not yet set. | 1870 | Initialize in these buffers `bibtex-reference-keys' if not yet set. |
| 1871 | List of BibTeX buffers includes current buffer if CURRENT is non-nil. | 1871 | List of BibTeX buffers includes current buffer if CURRENT is non-nil |
| 1872 | and the current buffer visits a file using `bibtex-mode'. | ||
| 1872 | If FORCE is non-nil, (re)initialize `bibtex-reference-keys' even if | 1873 | If FORCE is non-nil, (re)initialize `bibtex-reference-keys' even if |
| 1873 | already set. If SELECT is non-nil interactively select a BibTeX buffer. | 1874 | already set. If SELECT is non-nil interactively select a BibTeX buffer. |
| 1874 | When called interactively, FORCE is t, CURRENT is t if current buffer uses | 1875 | |
| 1875 | `bibtex-mode', and SELECT is t if current buffer does not use `bibtex-mode', | 1876 | When called interactively, FORCE is t, CURRENT is t if current buffer |
| 1877 | visits a file using `bibtex-mode', and SELECT is t if current buffer | ||
| 1878 | does not use `bibtex-mode', | ||
| 1876 | 1879 | ||
| 1877 | \(fn &optional CURRENT FORCE SELECT)" t nil) | 1880 | \(fn &optional CURRENT FORCE SELECT)" t nil) |
| 1878 | 1881 | ||
| @@ -2109,7 +2112,7 @@ a reflection. | |||
| 2109 | ;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert | 2112 | ;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert |
| 2110 | ;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate | 2113 | ;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate |
| 2111 | ;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" | 2114 | ;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" |
| 2112 | ;;;;;; "bookmark.el" (20793 51383 764318 0)) | 2115 | ;;;;;; "bookmark.el" (20849 6570 598687 0)) |
| 2113 | ;;; Generated autoloads from bookmark.el | 2116 | ;;; Generated autoloads from bookmark.el |
| 2114 | (define-key ctl-x-r-map "b" 'bookmark-jump) | 2117 | (define-key ctl-x-r-map "b" 'bookmark-jump) |
| 2115 | (define-key ctl-x-r-map "m" 'bookmark-set) | 2118 | (define-key ctl-x-r-map "m" 'bookmark-set) |
| @@ -2713,7 +2716,7 @@ Like `bug-reference-mode', but only buttonize in comments and strings. | |||
| 2713 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile | 2716 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile |
| 2714 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory | 2717 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory |
| 2715 | ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) | 2718 | ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) |
| 2716 | ;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20780 39352 990623 0)) | 2719 | ;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20851 48294 960738 0)) |
| 2717 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 2720 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 2718 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) | 2721 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) |
| 2719 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) | 2722 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) |
| @@ -2872,8 +2875,8 @@ from the cursor position. | |||
| 2872 | 2875 | ||
| 2873 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle | 2876 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle |
| 2874 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc | 2877 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc |
| 2875 | ;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20759 | 2878 | ;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20863 |
| 2876 | ;;;;;; 33211 414988 0)) | 2879 | ;;;;;; 39461 835648 0)) |
| 2877 | ;;; Generated autoloads from calc/calc.el | 2880 | ;;; Generated autoloads from calc/calc.el |
| 2878 | (define-key ctl-x-map "*" 'calc-dispatch) | 2881 | (define-key ctl-x-map "*" 'calc-dispatch) |
| 2879 | 2882 | ||
| @@ -3090,7 +3093,7 @@ Obsoletes `c-forward-into-nomenclature'. | |||
| 3090 | ;;;*** | 3093 | ;;;*** |
| 3091 | 3094 | ||
| 3092 | ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" | 3095 | ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" |
| 3093 | ;;;;;; (20791 9657 561026 0)) | 3096 | ;;;;;; (20864 28934 62335 0)) |
| 3094 | ;;; Generated autoloads from progmodes/cc-engine.el | 3097 | ;;; Generated autoloads from progmodes/cc-engine.el |
| 3095 | 3098 | ||
| 3096 | (autoload 'c-guess-basic-syntax "cc-engine" "\ | 3099 | (autoload 'c-guess-basic-syntax "cc-engine" "\ |
| @@ -3203,7 +3206,7 @@ the absolute file name of the file if STYLE-NAME is nil. | |||
| 3203 | 3206 | ||
| 3204 | ;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode | 3207 | ;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode |
| 3205 | ;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" | 3208 | ;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" |
| 3206 | ;;;;;; (20709 26818 907104 0)) | 3209 | ;;;;;; (20845 9511 656701 0)) |
| 3207 | ;;; Generated autoloads from progmodes/cc-mode.el | 3210 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3208 | 3211 | ||
| 3209 | (autoload 'c-initialize-cc-mode "cc-mode" "\ | 3212 | (autoload 'c-initialize-cc-mode "cc-mode" "\ |
| @@ -4218,7 +4221,7 @@ If FRAME cannot display COLOR, return nil. | |||
| 4218 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list | 4221 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list |
| 4219 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command | 4222 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command |
| 4220 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" | 4223 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" |
| 4221 | ;;;;;; (20797 44848 327754 0)) | 4224 | ;;;;;; (20864 60326 774861 0)) |
| 4222 | ;;; Generated autoloads from comint.el | 4225 | ;;; Generated autoloads from comint.el |
| 4223 | 4226 | ||
| 4224 | (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ | 4227 | (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ |
| @@ -4355,8 +4358,8 @@ on third call it again advances points to the next difference and so on. | |||
| 4355 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start | 4358 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start |
| 4356 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path | 4359 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path |
| 4357 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook | 4360 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook |
| 4358 | ;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20808 | 4361 | ;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20856 |
| 4359 | ;;;;;; 15152 87827 0)) | 4362 | ;;;;;; 32301 830403 0)) |
| 4360 | ;;; Generated autoloads from progmodes/compile.el | 4363 | ;;; Generated autoloads from progmodes/compile.el |
| 4361 | 4364 | ||
| 4362 | (defvar compilation-mode-hook nil "\ | 4365 | (defvar compilation-mode-hook nil "\ |
| @@ -5142,7 +5145,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | |||
| 5142 | ;;;;;; customize-mode customize customize-push-and-save customize-save-variable | 5145 | ;;;;;; customize-mode customize customize-push-and-save customize-save-variable |
| 5143 | ;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically | 5146 | ;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically |
| 5144 | ;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) | 5147 | ;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) |
| 5145 | ;;;;;; "cus-edit" "cus-edit.el" (20762 9398 526093 0)) | 5148 | ;;;;;; "cus-edit" "cus-edit.el" (20841 12463 538770 0)) |
| 5146 | ;;; Generated autoloads from cus-edit.el | 5149 | ;;; Generated autoloads from cus-edit.el |
| 5147 | 5150 | ||
| 5148 | (defvar custom-browse-sort-alphabetically nil "\ | 5151 | (defvar custom-browse-sort-alphabetically nil "\ |
| @@ -5454,8 +5457,8 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5454 | ;;;*** | 5457 | ;;;*** |
| 5455 | 5458 | ||
| 5456 | ;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme | 5459 | ;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme |
| 5457 | ;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20709 | 5460 | ;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20841 |
| 5458 | ;;;;;; 26818 907104 0)) | 5461 | ;;;;;; 12463 538770 0)) |
| 5459 | ;;; Generated autoloads from cus-theme.el | 5462 | ;;; Generated autoloads from cus-theme.el |
| 5460 | 5463 | ||
| 5461 | (autoload 'customize-create-theme "cus-theme" "\ | 5464 | (autoload 'customize-create-theme "cus-theme" "\ |
| @@ -5545,7 +5548,7 @@ See `cwarn-mode' for more information on Cwarn mode. | |||
| 5545 | 5548 | ||
| 5546 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char | 5549 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char |
| 5547 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" | 5550 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" |
| 5548 | ;;;;;; (20709 26818 907104 0)) | 5551 | ;;;;;; (20826 45095 436233 0)) |
| 5549 | ;;; Generated autoloads from language/cyril-util.el | 5552 | ;;; Generated autoloads from language/cyril-util.el |
| 5550 | 5553 | ||
| 5551 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ | 5554 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ |
| @@ -6006,7 +6009,7 @@ relevant to POS. | |||
| 6006 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir | 6009 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir |
| 6007 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save | 6010 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save |
| 6008 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" | 6011 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" |
| 6009 | ;;;;;; "desktop.el" (20817 30120 173418 0)) | 6012 | ;;;;;; "desktop.el" (20860 63270 684173 0)) |
| 6010 | ;;; Generated autoloads from desktop.el | 6013 | ;;; Generated autoloads from desktop.el |
| 6011 | 6014 | ||
| 6012 | (defvar desktop-save-mode nil "\ | 6015 | (defvar desktop-save-mode nil "\ |
| @@ -6144,9 +6147,10 @@ Furthermore, it clears the variables listed in `desktop-globals-to-clear'. | |||
| 6144 | Save the desktop in a desktop file. | 6147 | Save the desktop in a desktop file. |
| 6145 | Parameter DIRNAME specifies where to save the desktop file. | 6148 | Parameter DIRNAME specifies where to save the desktop file. |
| 6146 | Optional parameter RELEASE says whether we're done with this desktop. | 6149 | Optional parameter RELEASE says whether we're done with this desktop. |
| 6147 | See also `desktop-base-file-name'. | 6150 | If AUTO-SAVE is non-nil, compare the saved contents to the one last saved, |
| 6151 | and don't save the buffer if they are the same. | ||
| 6148 | 6152 | ||
| 6149 | \(fn DIRNAME &optional RELEASE)" t nil) | 6153 | \(fn DIRNAME &optional RELEASE AUTO-SAVE)" t nil) |
| 6150 | 6154 | ||
| 6151 | (autoload 'desktop-remove "desktop" "\ | 6155 | (autoload 'desktop-remove "desktop" "\ |
| 6152 | Delete desktop file in `desktop-dirname'. | 6156 | Delete desktop file in `desktop-dirname'. |
| @@ -6726,8 +6730,8 @@ Locate SOA record and increment the serial field. | |||
| 6726 | ;;;*** | 6730 | ;;;*** |
| 6727 | 6731 | ||
| 6728 | ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe | 6732 | ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe |
| 6729 | ;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20806 | 6733 | ;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20845 |
| 6730 | ;;;;;; 59818 347907 0)) | 6734 | ;;;;;; 9511 656701 0)) |
| 6731 | ;;; Generated autoloads from doc-view.el | 6735 | ;;; Generated autoloads from doc-view.el |
| 6732 | 6736 | ||
| 6733 | (autoload 'doc-view-mode-p "doc-view" "\ | 6737 | (autoload 'doc-view-mode-p "doc-view" "\ |
| @@ -7607,7 +7611,7 @@ an EDE controlled project. | |||
| 7607 | 7611 | ||
| 7608 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form | 7612 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form |
| 7609 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" | 7613 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" |
| 7610 | ;;;;;; "emacs-lisp/edebug.el" (20825 24233 991089 0)) | 7614 | ;;;;;; "emacs-lisp/edebug.el" (20834 39208 838628 0)) |
| 7611 | ;;; Generated autoloads from emacs-lisp/edebug.el | 7615 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 7612 | 7616 | ||
| 7613 | (defvar edebug-all-defs nil "\ | 7617 | (defvar edebug-all-defs nil "\ |
| @@ -8166,7 +8170,7 @@ Emacs Lisp mode) that support ElDoc.") | |||
| 8166 | ;;;*** | 8170 | ;;;*** |
| 8167 | 8171 | ||
| 8168 | ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) | 8172 | ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) |
| 8169 | ;;;;;; "electric" "electric.el" (20709 26818 907104 0)) | 8173 | ;;;;;; "electric" "electric.el" (20829 21286 719109 0)) |
| 8170 | ;;; Generated autoloads from electric.el | 8174 | ;;; Generated autoloads from electric.el |
| 8171 | 8175 | ||
| 8172 | (defvar electric-indent-chars '(10) "\ | 8176 | (defvar electric-indent-chars '(10) "\ |
| @@ -8768,7 +8772,7 @@ if ARG is omitted or nil. | |||
| 8768 | 8772 | ||
| 8769 | ;;;*** | 8773 | ;;;*** |
| 8770 | 8774 | ||
| 8771 | ;;;### (autoloads (epg-make-context) "epg" "epg.el" (20712 3008 596088 | 8775 | ;;;### (autoloads (epg-make-context) "epg" "epg.el" (20853 3623 384273 |
| 8772 | ;;;;;; 0)) | 8776 | ;;;;;; 0)) |
| 8773 | ;;; Generated autoloads from epg.el | 8777 | ;;; Generated autoloads from epg.el |
| 8774 | 8778 | ||
| @@ -9316,7 +9320,7 @@ Add a file to `erc-xdcc-files'. | |||
| 9316 | 9320 | ||
| 9317 | ;;;### (autoloads (ert-describe-test ert-run-tests-interactively | 9321 | ;;;### (autoloads (ert-describe-test ert-run-tests-interactively |
| 9318 | ;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) | 9322 | ;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) |
| 9319 | ;;;;;; "ert" "emacs-lisp/ert.el" (20751 39094 700824 0)) | 9323 | ;;;;;; "ert" "emacs-lisp/ert.el" (20834 39208 838628 0)) |
| 9320 | ;;; Generated autoloads from emacs-lisp/ert.el | 9324 | ;;; Generated autoloads from emacs-lisp/ert.el |
| 9321 | 9325 | ||
| 9322 | (autoload 'ert-deftest "ert" "\ | 9326 | (autoload 'ert-deftest "ert" "\ |
| @@ -10246,8 +10250,8 @@ with no args, if that value is non-nil. | |||
| 10246 | ;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set | 10250 | ;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set |
| 10247 | ;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase | 10251 | ;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase |
| 10248 | ;;;;;; text-scale-set face-remap-set-base face-remap-reset-base | 10252 | ;;;;;; text-scale-set face-remap-set-base face-remap-reset-base |
| 10249 | ;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (20709 | 10253 | ;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (20841 |
| 10250 | ;;;;;; 26818 907104 0)) | 10254 | ;;;;;; 12463 538770 0)) |
| 10251 | ;;; Generated autoloads from face-remap.el | 10255 | ;;; Generated autoloads from face-remap.el |
| 10252 | 10256 | ||
| 10253 | (autoload 'face-remap-add-relative "face-remap" "\ | 10257 | (autoload 'face-remap-add-relative "face-remap" "\ |
| @@ -11100,7 +11104,7 @@ Turn flymake mode off. | |||
| 11100 | 11104 | ||
| 11101 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off | 11105 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off |
| 11102 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) | 11106 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) |
| 11103 | ;;;;;; "flyspell" "textmodes/flyspell.el" (20721 17977 14204 0)) | 11107 | ;;;;;; "flyspell" "textmodes/flyspell.el" (20847 51240 240216 0)) |
| 11104 | ;;; Generated autoloads from textmodes/flyspell.el | 11108 | ;;; Generated autoloads from textmodes/flyspell.el |
| 11105 | 11109 | ||
| 11106 | (autoload 'flyspell-prog-mode "flyspell" "\ | 11110 | (autoload 'flyspell-prog-mode "flyspell" "\ |
| @@ -11425,7 +11429,7 @@ and choose the directory as the fortune-file. | |||
| 11425 | ;;;*** | 11429 | ;;;*** |
| 11426 | 11430 | ||
| 11427 | ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" | 11431 | ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" |
| 11428 | ;;;;;; (20799 169 640767 0)) | 11432 | ;;;;;; (20851 48294 960738 0)) |
| 11429 | ;;; Generated autoloads from progmodes/gdb-mi.el | 11433 | ;;; Generated autoloads from progmodes/gdb-mi.el |
| 11430 | 11434 | ||
| 11431 | (defvar gdb-enable-debug nil "\ | 11435 | (defvar gdb-enable-debug nil "\ |
| @@ -11654,8 +11658,8 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. | |||
| 11654 | ;;;*** | 11658 | ;;;*** |
| 11655 | 11659 | ||
| 11656 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server | 11660 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server |
| 11657 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20709 26818 | 11661 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20860 63270 |
| 11658 | ;;;;;; 907104 0)) | 11662 | ;;;;;; 684173 0)) |
| 11659 | ;;; Generated autoloads from gnus/gnus.el | 11663 | ;;; Generated autoloads from gnus/gnus.el |
| 11660 | (when (fboundp 'custom-autoload) | 11664 | (when (fboundp 'custom-autoload) |
| 11661 | (custom-autoload 'gnus-select-method "gnus")) | 11665 | (custom-autoload 'gnus-select-method "gnus")) |
| @@ -12195,7 +12199,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 12195 | ;;;*** | 12199 | ;;;*** |
| 12196 | 12200 | ||
| 12197 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) | 12201 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) |
| 12198 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20820 6311 856169 0)) | 12202 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20858 21542 723007 0)) |
| 12199 | ;;; Generated autoloads from gnus/gnus-msg.el | 12203 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 12200 | 12204 | ||
| 12201 | (autoload 'gnus-msg-mail "gnus-msg" "\ | 12205 | (autoload 'gnus-msg-mail "gnus-msg" "\ |
| @@ -12403,7 +12407,7 @@ Declare back end NAME with ABILITIES as a Gnus back end. | |||
| 12403 | ;;;*** | 12407 | ;;;*** |
| 12404 | 12408 | ||
| 12405 | ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" | 12409 | ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" |
| 12406 | ;;;;;; (20791 9657 561026 0)) | 12410 | ;;;;;; (20856 32301 830403 0)) |
| 12407 | ;;; Generated autoloads from gnus/gnus-sum.el | 12411 | ;;; Generated autoloads from gnus/gnus-sum.el |
| 12408 | 12412 | ||
| 12409 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ | 12413 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ |
| @@ -12726,8 +12730,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 12726 | ;;;*** | 12730 | ;;;*** |
| 12727 | 12731 | ||
| 12728 | ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb | 12732 | ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb |
| 12729 | ;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20709 26818 | 12733 | ;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20851 48294 |
| 12730 | ;;;;;; 907104 0)) | 12734 | ;;;;;; 960738 0)) |
| 12731 | ;;; Generated autoloads from progmodes/gud.el | 12735 | ;;; Generated autoloads from progmodes/gud.el |
| 12732 | 12736 | ||
| 12733 | (autoload 'gud-gdb "gud" "\ | 12737 | (autoload 'gud-gdb "gud" "\ |
| @@ -14532,8 +14536,8 @@ The main features of this mode are | |||
| 14532 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file | 14536 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file |
| 14533 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer | 14537 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer |
| 14534 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window | 14538 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window |
| 14535 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20809 | 14539 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20831 |
| 14536 | ;;;;;; 36008 682209 0)) | 14540 | ;;;;;; 63016 738579 0)) |
| 14537 | ;;; Generated autoloads from ido.el | 14541 | ;;; Generated autoloads from ido.el |
| 14538 | 14542 | ||
| 14539 | (defvar ido-mode nil "\ | 14543 | (defvar ido-mode nil "\ |
| @@ -15413,7 +15417,7 @@ for more information. | |||
| 15413 | 15417 | ||
| 15414 | ;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion | 15418 | ;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion |
| 15415 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) | 15419 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) |
| 15416 | ;;;;;; "ind-util" "language/ind-util.el" (20709 26818 907104 0)) | 15420 | ;;;;;; "ind-util" "language/ind-util.el" (20826 45095 436233 0)) |
| 15417 | ;;; Generated autoloads from language/ind-util.el | 15421 | ;;; Generated autoloads from language/ind-util.el |
| 15418 | 15422 | ||
| 15419 | (autoload 'indian-compose-region "ind-util" "\ | 15423 | (autoload 'indian-compose-region "ind-util" "\ |
| @@ -15466,7 +15470,7 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 15466 | ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node | 15470 | ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node |
| 15467 | ;;;;;; Info-mode info-finder info-apropos Info-index Info-directory | 15471 | ;;;;;; Info-mode info-finder info-apropos Info-index Info-directory |
| 15468 | ;;;;;; Info-on-current-buffer info-standalone info-emacs-bug info-emacs-manual | 15472 | ;;;;;; Info-on-current-buffer info-standalone info-emacs-bug info-emacs-manual |
| 15469 | ;;;;;; info info-other-window) "info" "info.el" (20813 33065 721081 | 15473 | ;;;;;; info info-other-window) "info" "info.el" (20841 12463 538770 |
| 15470 | ;;;;;; 0)) | 15474 | ;;;;;; 0)) |
| 15471 | ;;; Generated autoloads from info.el | 15475 | ;;; Generated autoloads from info.el |
| 15472 | 15476 | ||
| @@ -15680,7 +15684,7 @@ Otherwise, visit the manual in a new Info buffer. | |||
| 15680 | 15684 | ||
| 15681 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file | 15685 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file |
| 15682 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" | 15686 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" |
| 15683 | ;;;;;; (20771 24374 643644 0)) | 15687 | ;;;;;; (20854 24486 190633 0)) |
| 15684 | ;;; Generated autoloads from info-look.el | 15688 | ;;; Generated autoloads from info-look.el |
| 15685 | 15689 | ||
| 15686 | (autoload 'info-lookup-reset "info-look" "\ | 15690 | (autoload 'info-lookup-reset "info-look" "\ |
| @@ -16011,7 +16015,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 16011 | ;;;;;; ispell-buffer ispell-comments-and-strings ispell-region ispell-change-dictionary | 16015 | ;;;;;; ispell-buffer ispell-comments-and-strings ispell-region ispell-change-dictionary |
| 16012 | ;;;;;; ispell-kill-ispell ispell-help ispell-pdict-save ispell-word | 16016 | ;;;;;; ispell-kill-ispell ispell-help ispell-pdict-save ispell-word |
| 16013 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" | 16017 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" |
| 16014 | ;;;;;; (20787 12616 976036 0)) | 16018 | ;;;;;; (20847 51240 240216 0)) |
| 16015 | ;;; Generated autoloads from textmodes/ispell.el | 16019 | ;;; Generated autoloads from textmodes/ispell.el |
| 16016 | 16020 | ||
| 16017 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) | 16021 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) |
| @@ -16492,7 +16496,7 @@ and the return value is the length of the conversion. | |||
| 16492 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro | 16496 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro |
| 16493 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter | 16497 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter |
| 16494 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) | 16498 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) |
| 16495 | ;;;;;; "kmacro" "kmacro.el" (20824 3367 300658 0)) | 16499 | ;;;;;; "kmacro" "kmacro.el" (20830 42150 757296 0)) |
| 16496 | ;;; Generated autoloads from kmacro.el | 16500 | ;;; Generated autoloads from kmacro.el |
| 16497 | (global-set-key "\C-x(" 'kmacro-start-macro) | 16501 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 16498 | (global-set-key "\C-x)" 'kmacro-end-macro) | 16502 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -16651,7 +16655,7 @@ Use \\[describe-mode] for more info. | |||
| 16651 | 16655 | ||
| 16652 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string | 16656 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string |
| 16653 | ;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) | 16657 | ;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) |
| 16654 | ;;;;;; "lao-util" "language/lao-util.el" (20709 26818 907104 0)) | 16658 | ;;;;;; "lao-util" "language/lao-util.el" (20826 45095 436233 0)) |
| 16655 | ;;; Generated autoloads from language/lao-util.el | 16659 | ;;; Generated autoloads from language/lao-util.el |
| 16656 | 16660 | ||
| 16657 | (autoload 'lao-compose-string "lao-util" "\ | 16661 | (autoload 'lao-compose-string "lao-util" "\ |
| @@ -16723,8 +16727,8 @@ coding system names is determined from `latex-inputenc-coding-alist'. | |||
| 16723 | ;;;*** | 16727 | ;;;*** |
| 16724 | 16728 | ||
| 16725 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) | 16729 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) |
| 16726 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (20709 26818 | 16730 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (20826 45095 |
| 16727 | ;;;;;; 907104 0)) | 16731 | ;;;;;; 436233 0)) |
| 16728 | ;;; Generated autoloads from international/latin1-disp.el | 16732 | ;;; Generated autoloads from international/latin1-disp.el |
| 16729 | 16733 | ||
| 16730 | (defvar latin1-display nil "\ | 16734 | (defvar latin1-display nil "\ |
| @@ -16944,8 +16948,8 @@ done. Otherwise, it uses the current buffer. | |||
| 16944 | 16948 | ||
| 16945 | ;;;*** | 16949 | ;;;*** |
| 16946 | 16950 | ||
| 16947 | ;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (20709 | 16951 | ;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (20860 |
| 16948 | ;;;;;; 26818 907104 0)) | 16952 | ;;;;;; 63270 684173 0)) |
| 16949 | ;;; Generated autoloads from vc/log-view.el | 16953 | ;;; Generated autoloads from vc/log-view.el |
| 16950 | 16954 | ||
| 16951 | (autoload 'log-view-mode "log-view" "\ | 16955 | (autoload 'log-view-mode "log-view" "\ |
| @@ -17053,7 +17057,7 @@ for further customization of the printer command. | |||
| 17053 | ;;;*** | 17057 | ;;;*** |
| 17054 | 17058 | ||
| 17055 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" | 17059 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" |
| 17056 | ;;;;;; (20709 26818 907104 0)) | 17060 | ;;;;;; (20860 63270 684173 0)) |
| 17057 | ;;; Generated autoloads from ls-lisp.el | 17061 | ;;; Generated autoloads from ls-lisp.el |
| 17058 | 17062 | ||
| 17059 | (defvar ls-lisp-support-shell-wildcards t "\ | 17063 | (defvar ls-lisp-support-shell-wildcards t "\ |
| @@ -17320,8 +17324,8 @@ matches may be returned from the message body. | |||
| 17320 | ;;;*** | 17324 | ;;;*** |
| 17321 | 17325 | ||
| 17322 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup | 17326 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup |
| 17323 | ;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (20709 | 17327 | ;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (20847 |
| 17324 | ;;;;;; 26818 907104 0)) | 17328 | ;;;;;; 51240 240216 0)) |
| 17325 | ;;; Generated autoloads from mail/mailabbrev.el | 17329 | ;;; Generated autoloads from mail/mailabbrev.el |
| 17326 | 17330 | ||
| 17327 | (defvar mail-abbrevs-mode nil "\ | 17331 | (defvar mail-abbrevs-mode nil "\ |
| @@ -17682,7 +17686,7 @@ recursion depth in the minibuffer prompt. This is only useful if | |||
| 17682 | ;;;;;; message-forward-make-body message-forward message-recover | 17686 | ;;;;;; message-forward-make-body message-forward message-recover |
| 17683 | ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply | 17687 | ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply |
| 17684 | ;;;;;; message-reply message-news message-mail message-mode) "message" | 17688 | ;;;;;; message-reply message-news message-mail message-mode) "message" |
| 17685 | ;;;;;; "gnus/message.el" (20808 15152 87827 0)) | 17689 | ;;;;;; "gnus/message.el" (20858 21542 723007 0)) |
| 17686 | ;;; Generated autoloads from gnus/message.el | 17690 | ;;; Generated autoloads from gnus/message.el |
| 17687 | 17691 | ||
| 17688 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) | 17692 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| @@ -18361,7 +18365,7 @@ Assume text has been decoded if DECODED is non-nil. | |||
| 18361 | ;;;*** | 18365 | ;;;*** |
| 18362 | 18366 | ||
| 18363 | ;;;### (autoloads (mml-attach-file mml-to-mime) "mml" "gnus/mml.el" | 18367 | ;;;### (autoloads (mml-attach-file mml-to-mime) "mml" "gnus/mml.el" |
| 18364 | ;;;;;; (20745 310 425822 0)) | 18368 | ;;;;;; (20829 21286 719109 0)) |
| 18365 | ;;; Generated autoloads from gnus/mml.el | 18369 | ;;; Generated autoloads from gnus/mml.el |
| 18366 | 18370 | ||
| 18367 | (autoload 'mml-to-mime "mml" "\ | 18371 | (autoload 'mml-to-mime "mml" "\ |
| @@ -18560,7 +18564,7 @@ To test this function, evaluate: | |||
| 18560 | 18564 | ||
| 18561 | ;;;*** | 18565 | ;;;*** |
| 18562 | 18566 | ||
| 18563 | ;;;### (autoloads (mpc) "mpc" "mpc.el" (20822 48073 524485 0)) | 18567 | ;;;### (autoloads (mpc) "mpc" "mpc.el" (20838 36262 626321 0)) |
| 18564 | ;;; Generated autoloads from mpc.el | 18568 | ;;; Generated autoloads from mpc.el |
| 18565 | 18569 | ||
| 18566 | (autoload 'mpc "mpc" "\ | 18570 | (autoload 'mpc "mpc" "\ |
| @@ -18748,7 +18752,7 @@ The default is 20. If LIMIT is negative, do not limit the listing. | |||
| 18748 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion | 18752 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion |
| 18749 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist | 18753 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist |
| 18750 | ;;;;;; truncate-string-to-width store-substring) "mule-util" "international/mule-util.el" | 18754 | ;;;;;; truncate-string-to-width store-substring) "mule-util" "international/mule-util.el" |
| 18751 | ;;;;;; (20709 26818 907104 0)) | 18755 | ;;;;;; (20826 45095 436233 0)) |
| 18752 | ;;; Generated autoloads from international/mule-util.el | 18756 | ;;; Generated autoloads from international/mule-util.el |
| 18753 | 18757 | ||
| 18754 | (defsubst string-to-list (string) "\ | 18758 | (defsubst string-to-list (string) "\ |
| @@ -18879,9 +18883,9 @@ per-character basis, this may not be accurate. | |||
| 18879 | 18883 | ||
| 18880 | ;;;*** | 18884 | ;;;*** |
| 18881 | 18885 | ||
| 18882 | ;;;### (autoloads (advice-member-p advice-remove advice-add advice--add-function | 18886 | ;;;### (autoloads (advice-member-p advice-remove advice-add remove-function |
| 18883 | ;;;;;; add-function advice--buffer-local advice--remove-function) | 18887 | ;;;;;; advice--add-function add-function advice--buffer-local advice--remove-function) |
| 18884 | ;;;;;; "nadvice" "emacs-lisp/nadvice.el" (20785 57270 519804 0)) | 18888 | ;;;;;; "nadvice" "emacs-lisp/nadvice.el" (20851 48294 960738 0)) |
| 18885 | ;;; Generated autoloads from emacs-lisp/nadvice.el | 18889 | ;;; Generated autoloads from emacs-lisp/nadvice.el |
| 18886 | 18890 | ||
| 18887 | (autoload 'advice--remove-function "nadvice" "\ | 18891 | (autoload 'advice--remove-function "nadvice" "\ |
| @@ -18903,18 +18907,20 @@ call OLDFUN here: | |||
| 18903 | `:before' (lambda (&rest r) (apply FUNCTION r) (apply OLDFUN r)) | 18907 | `:before' (lambda (&rest r) (apply FUNCTION r) (apply OLDFUN r)) |
| 18904 | `:after' (lambda (&rest r) (prog1 (apply OLDFUN r) (apply FUNCTION r))) | 18908 | `:after' (lambda (&rest r) (prog1 (apply OLDFUN r) (apply FUNCTION r))) |
| 18905 | `:around' (lambda (&rest r) (apply FUNCTION OLDFUN r)) | 18909 | `:around' (lambda (&rest r) (apply FUNCTION OLDFUN r)) |
| 18910 | `:override' (lambda (&rest r) (apply FUNCTION r)) | ||
| 18906 | `:before-while' (lambda (&rest r) (and (apply FUNCTION r) (apply OLDFUN r))) | 18911 | `:before-while' (lambda (&rest r) (and (apply FUNCTION r) (apply OLDFUN r))) |
| 18907 | `:before-until' (lambda (&rest r) (or (apply FUNCTION r) (apply OLDFUN r))) | 18912 | `:before-until' (lambda (&rest r) (or (apply FUNCTION r) (apply OLDFUN r))) |
| 18908 | `:after-while' (lambda (&rest r) (and (apply OLDFUN r) (apply FUNCTION r))) | 18913 | `:after-while' (lambda (&rest r) (and (apply OLDFUN r) (apply FUNCTION r))) |
| 18909 | `:after-until' (lambda (&rest r) (or (apply OLDFUN r) (apply FUNCTION r))) | 18914 | `:after-until' (lambda (&rest r) (or (apply OLDFUN r) (apply FUNCTION r))) |
| 18915 | `:filter-args' (lambda (&rest r) (apply OLDFUN (funcall FUNCTION r))) | ||
| 18916 | `:filter-return'(lambda (&rest r) (funcall FUNCTION (apply OLDFUN r))) | ||
| 18910 | If FUNCTION was already added, do nothing. | 18917 | If FUNCTION was already added, do nothing. |
| 18911 | PROPS is an alist of additional properties, among which the following have | 18918 | PROPS is an alist of additional properties, among which the following have |
| 18912 | a special meaning: | 18919 | a special meaning: |
| 18913 | - `name': a string or symbol. It can be used to refer to this piece of advice. | 18920 | - `name': a string or symbol. It can be used to refer to this piece of advice. |
| 18914 | 18921 | ||
| 18915 | PLACE cannot be a simple variable. Instead it should either be | 18922 | If PLACE is a simple variable, only its global value will be affected. |
| 18916 | \(default-value 'VAR) or (local 'VAR) depending on whether FUNCTION | 18923 | Use (local 'VAR) if you want to apply FUNCTION to VAR buffer-locally. |
| 18917 | should be applied to VAR buffer-locally or globally. | ||
| 18918 | 18924 | ||
| 18919 | If one of FUNCTION or OLDFUN is interactive, then the resulting function | 18925 | If one of FUNCTION or OLDFUN is interactive, then the resulting function |
| 18920 | is also interactive. There are 3 cases: | 18926 | is also interactive. There are 3 cases: |
| @@ -18931,6 +18937,14 @@ is also interactive. There are 3 cases: | |||
| 18931 | 18937 | ||
| 18932 | \(fn WHERE REF FUNCTION PROPS)" nil nil) | 18938 | \(fn WHERE REF FUNCTION PROPS)" nil nil) |
| 18933 | 18939 | ||
| 18940 | (autoload 'remove-function "nadvice" "\ | ||
| 18941 | Remove the FUNCTION piece of advice from PLACE. | ||
| 18942 | If FUNCTION was not added to PLACE, do nothing. | ||
| 18943 | Instead of FUNCTION being the actual function, it can also be the `name' | ||
| 18944 | of the piece of advice. | ||
| 18945 | |||
| 18946 | \(fn PLACE FUNCTION)" nil t) | ||
| 18947 | |||
| 18934 | (autoload 'advice-add "nadvice" "\ | 18948 | (autoload 'advice-add "nadvice" "\ |
| 18935 | Like `add-function' but for the function named SYMBOL. | 18949 | Like `add-function' but for the function named SYMBOL. |
| 18936 | Contrary to `add-function', this will properly handle the cases where SYMBOL | 18950 | Contrary to `add-function', this will properly handle the cases where SYMBOL |
| @@ -19420,11 +19434,21 @@ the variable `nxml-enabled-unicode-blocks'. | |||
| 19420 | 19434 | ||
| 19421 | ;;;*** | 19435 | ;;;*** |
| 19422 | 19436 | ||
| 19423 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" | 19437 | ;;;### (autoloads (inferior-octave octave-mode) "octave" "progmodes/octave.el" |
| 19424 | ;;;;;; (20709 26818 907104 0)) | 19438 | ;;;;;; (20864 60326 774861 0)) |
| 19425 | ;;; Generated autoloads from progmodes/octave-inf.el | 19439 | ;;; Generated autoloads from progmodes/octave.el |
| 19440 | |||
| 19441 | (autoload 'octave-mode "octave" "\ | ||
| 19442 | Major mode for editing Octave code. | ||
| 19426 | 19443 | ||
| 19427 | (autoload 'inferior-octave "octave-inf" "\ | 19444 | Octave is a high-level language, primarily intended for numerical |
| 19445 | computations. It provides a convenient command line interface | ||
| 19446 | for solving linear and nonlinear problems numerically. Function | ||
| 19447 | definitions can also be stored in files and used in batch mode. | ||
| 19448 | |||
| 19449 | \(fn)" t nil) | ||
| 19450 | |||
| 19451 | (autoload 'inferior-octave "octave" "\ | ||
| 19428 | Run an inferior Octave process, I/O via `inferior-octave-buffer'. | 19452 | Run an inferior Octave process, I/O via `inferior-octave-buffer'. |
| 19429 | This buffer is put in Inferior Octave mode. See `inferior-octave-mode'. | 19453 | This buffer is put in Inferior Octave mode. See `inferior-octave-mode'. |
| 19430 | 19454 | ||
| @@ -19443,91 +19467,8 @@ startup file, `~/.emacs-octave'. | |||
| 19443 | 19467 | ||
| 19444 | ;;;*** | 19468 | ;;;*** |
| 19445 | 19469 | ||
| 19446 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" | ||
| 19447 | ;;;;;; (20709 26818 907104 0)) | ||
| 19448 | ;;; Generated autoloads from progmodes/octave-mod.el | ||
| 19449 | |||
| 19450 | (autoload 'octave-mode "octave-mod" "\ | ||
| 19451 | Major mode for editing Octave code. | ||
| 19452 | |||
| 19453 | This mode makes it easier to write Octave code by helping with | ||
| 19454 | indentation, doing some of the typing for you (with Abbrev mode) and by | ||
| 19455 | showing keywords, comments, strings, etc. in different faces (with | ||
| 19456 | Font Lock mode on terminals that support it). | ||
| 19457 | |||
| 19458 | Octave itself is a high-level language, primarily intended for numerical | ||
| 19459 | computations. It provides a convenient command line interface for | ||
| 19460 | solving linear and nonlinear problems numerically. Function definitions | ||
| 19461 | can also be stored in files, and it can be used in a batch mode (which | ||
| 19462 | is why you need this mode!). | ||
| 19463 | |||
| 19464 | The latest released version of Octave is always available via anonymous | ||
| 19465 | ftp from ftp.octave.org in the directory `/pub/octave'. Complete | ||
| 19466 | source and binaries for several popular systems are available. | ||
| 19467 | |||
| 19468 | Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords. | ||
| 19469 | |||
| 19470 | Keybindings | ||
| 19471 | =========== | ||
| 19472 | |||
| 19473 | \\{octave-mode-map} | ||
| 19474 | |||
| 19475 | Variables you can use to customize Octave mode | ||
| 19476 | ============================================== | ||
| 19477 | |||
| 19478 | `octave-blink-matching-block' | ||
| 19479 | Non-nil means show matching begin of block when inserting a space, | ||
| 19480 | newline or semicolon after an else or end keyword. Default is t. | ||
| 19481 | |||
| 19482 | `octave-block-offset' | ||
| 19483 | Extra indentation applied to statements in block structures. | ||
| 19484 | Default is 2. | ||
| 19485 | |||
| 19486 | `octave-continuation-offset' | ||
| 19487 | Extra indentation applied to Octave continuation lines. | ||
| 19488 | Default is 4. | ||
| 19489 | |||
| 19490 | `octave-continuation-string' | ||
| 19491 | String used for Octave continuation lines. | ||
| 19492 | Default is a backslash. | ||
| 19493 | |||
| 19494 | `octave-send-echo-input' | ||
| 19495 | Non-nil means always display `inferior-octave-buffer' after sending a | ||
| 19496 | command to the inferior Octave process. | ||
| 19497 | |||
| 19498 | `octave-send-line-auto-forward' | ||
| 19499 | Non-nil means always go to the next unsent line of Octave code after | ||
| 19500 | sending a line to the inferior Octave process. | ||
| 19501 | |||
| 19502 | `octave-send-echo-input' | ||
| 19503 | Non-nil means echo input sent to the inferior Octave process. | ||
| 19504 | |||
| 19505 | Turning on Octave mode runs the hook `octave-mode-hook'. | ||
| 19506 | |||
| 19507 | To begin using this mode for all `.m' files that you edit, add the | ||
| 19508 | following lines to your init file: | ||
| 19509 | |||
| 19510 | (add-to-list 'auto-mode-alist '(\"\\\\.m\\\\'\" . octave-mode)) | ||
| 19511 | |||
| 19512 | To automatically turn on the abbrev and auto-fill features, | ||
| 19513 | add the following lines to your init file as well: | ||
| 19514 | |||
| 19515 | (add-hook 'octave-mode-hook | ||
| 19516 | (lambda () | ||
| 19517 | (abbrev-mode 1) | ||
| 19518 | (auto-fill-mode 1))) | ||
| 19519 | |||
| 19520 | To submit a problem report, enter \\[octave-submit-bug-report] from an Octave mode buffer. | ||
| 19521 | This automatically sets up a mail buffer with version information | ||
| 19522 | already added. You just need to add a description of the problem, | ||
| 19523 | including a reproducible test case and send the message. | ||
| 19524 | |||
| 19525 | \(fn)" t nil) | ||
| 19526 | |||
| 19527 | ;;;*** | ||
| 19528 | |||
| 19529 | ;;;### (autoloads (opascal-mode) "opascal" "progmodes/opascal.el" | 19470 | ;;;### (autoloads (opascal-mode) "opascal" "progmodes/opascal.el" |
| 19530 | ;;;;;; (20746 21181 635406 0)) | 19471 | ;;;;;; (20858 21542 723007 0)) |
| 19531 | ;;; Generated autoloads from progmodes/opascal.el | 19472 | ;;; Generated autoloads from progmodes/opascal.el |
| 19532 | 19473 | ||
| 19533 | (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") | 19474 | (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") |
| @@ -19558,14 +19499,8 @@ Customization: | |||
| 19558 | 19499 | ||
| 19559 | Coloring: | 19500 | Coloring: |
| 19560 | 19501 | ||
| 19561 | `opascal-comment-face' (default font-lock-comment-face) | ||
| 19562 | Face used to color OPascal comments. | ||
| 19563 | `opascal-string-face' (default font-lock-string-face) | ||
| 19564 | Face used to color OPascal strings. | ||
| 19565 | `opascal-keyword-face' (default font-lock-keyword-face) | 19502 | `opascal-keyword-face' (default font-lock-keyword-face) |
| 19566 | Face used to color OPascal keywords. | 19503 | Face used to color OPascal keywords. |
| 19567 | `opascal-other-face' (default nil) | ||
| 19568 | Face used to color everything else. | ||
| 19569 | 19504 | ||
| 19570 | Turning on OPascal mode calls the value of the variable `opascal-mode-hook' | 19505 | Turning on OPascal mode calls the value of the variable `opascal-mode-hook' |
| 19571 | with no args, if that value is non-nil. | 19506 | with no args, if that value is non-nil. |
| @@ -19806,7 +19741,7 @@ Call the customize function with org as argument. | |||
| 19806 | ;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views | 19741 | ;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views |
| 19807 | ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda | 19742 | ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda |
| 19808 | ;;;;;; org-agenda org-toggle-sticky-agenda) "org-agenda" "org/org-agenda.el" | 19743 | ;;;;;; org-agenda org-toggle-sticky-agenda) "org-agenda" "org/org-agenda.el" |
| 19809 | ;;;;;; (20783 15545 430927 0)) | 19744 | ;;;;;; (20847 51240 240216 0)) |
| 19810 | ;;; Generated autoloads from org/org-agenda.el | 19745 | ;;; Generated autoloads from org/org-agenda.el |
| 19811 | 19746 | ||
| 19812 | (autoload 'org-toggle-sticky-agenda "org-agenda" "\ | 19747 | (autoload 'org-toggle-sticky-agenda "org-agenda" "\ |
| @@ -20268,7 +20203,7 @@ See the command `outline-mode' for more information on this mode. | |||
| 20268 | ;;;### (autoloads (list-packages describe-package package-initialize | 20203 | ;;;### (autoloads (list-packages describe-package package-initialize |
| 20269 | ;;;;;; package-refresh-contents package-install-file package-install-from-buffer | 20204 | ;;;;;; package-refresh-contents package-install-file package-install-from-buffer |
| 20270 | ;;;;;; package-install package-enable-at-startup) "package" "emacs-lisp/package.el" | 20205 | ;;;;;; package-install package-enable-at-startup) "package" "emacs-lisp/package.el" |
| 20271 | ;;;;;; (20764 51137 83502 0)) | 20206 | ;;;;;; (20860 63270 684173 0)) |
| 20272 | ;;; Generated autoloads from emacs-lisp/package.el | 20207 | ;;; Generated autoloads from emacs-lisp/package.el |
| 20273 | 20208 | ||
| 20274 | (defvar package-enable-at-startup t "\ | 20209 | (defvar package-enable-at-startup t "\ |
| @@ -20646,6 +20581,26 @@ Includes files as well as host names followed by a colon. | |||
| 20646 | 20581 | ||
| 20647 | ;;;*** | 20582 | ;;;*** |
| 20648 | 20583 | ||
| 20584 | ;;;### (autoloads (pcomplete/ack pcomplete/tlmgr) "pcmpl-x" "pcmpl-x.el" | ||
| 20585 | ;;;;;; (20837 15398 184639 0)) | ||
| 20586 | ;;; Generated autoloads from pcmpl-x.el | ||
| 20587 | |||
| 20588 | (autoload 'pcomplete/tlmgr "pcmpl-x" "\ | ||
| 20589 | Completion for the `tlmgr' command. | ||
| 20590 | |||
| 20591 | \(fn)" nil nil) | ||
| 20592 | |||
| 20593 | (autoload 'pcomplete/ack "pcmpl-x" "\ | ||
| 20594 | Completion for the `ack' command. | ||
| 20595 | Start an argument with '-' to complete short options and '--' for | ||
| 20596 | long options. | ||
| 20597 | |||
| 20598 | \(fn)" nil nil) | ||
| 20599 | |||
| 20600 | (defalias 'pcomplete/ack-grep 'pcomplete/ack) | ||
| 20601 | |||
| 20602 | ;;;*** | ||
| 20603 | |||
| 20649 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list | 20604 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list |
| 20650 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete | 20605 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete |
| 20651 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20709 | 20606 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20709 |
| @@ -21699,7 +21654,7 @@ Open profile FILENAME. | |||
| 21699 | ;;;*** | 21654 | ;;;*** |
| 21700 | 21655 | ||
| 21701 | ;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" | 21656 | ;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" |
| 21702 | ;;;;;; "progmodes/prolog.el" (20791 9657 561026 0)) | 21657 | ;;;;;; "progmodes/prolog.el" (20851 48294 960738 0)) |
| 21703 | ;;; Generated autoloads from progmodes/prolog.el | 21658 | ;;; Generated autoloads from progmodes/prolog.el |
| 21704 | 21659 | ||
| 21705 | (autoload 'prolog-mode "prolog" "\ | 21660 | (autoload 'prolog-mode "prolog" "\ |
| @@ -21996,7 +21951,7 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 21996 | ;;;*** | 21951 | ;;;*** |
| 21997 | 21952 | ||
| 21998 | ;;;### (autoloads (python-mode run-python) "python" "progmodes/python.el" | 21953 | ;;;### (autoloads (python-mode run-python) "python" "progmodes/python.el" |
| 21999 | ;;;;;; (20824 3367 300658 0)) | 21954 | ;;;;;; (20850 27430 515630 0)) |
| 22000 | ;;; Generated autoloads from progmodes/python.el | 21955 | ;;; Generated autoloads from progmodes/python.el |
| 22001 | 21956 | ||
| 22002 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode)) | 21957 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode)) |
| @@ -22615,8 +22570,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. | |||
| 22615 | ;;;*** | 22570 | ;;;*** |
| 22616 | 22571 | ||
| 22617 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode | 22572 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode |
| 22618 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20777 63161 | 22573 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20843 54187 |
| 22619 | ;;;;;; 848428 0)) | 22574 | ;;;;;; 671468 0)) |
| 22620 | ;;; Generated autoloads from textmodes/reftex.el | 22575 | ;;; Generated autoloads from textmodes/reftex.el |
| 22621 | 22576 | ||
| 22622 | (autoload 'turn-on-reftex "reftex" "\ | 22577 | (autoload 'turn-on-reftex "reftex" "\ |
| @@ -22666,7 +22621,7 @@ This enforces rescanning the buffer on next use. | |||
| 22666 | ;;;*** | 22621 | ;;;*** |
| 22667 | 22622 | ||
| 22668 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" | 22623 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" |
| 22669 | ;;;;;; (20734 30007 218637 0)) | 22624 | ;;;;;; (20838 36262 626321 0)) |
| 22670 | ;;; Generated autoloads from textmodes/reftex-cite.el | 22625 | ;;; Generated autoloads from textmodes/reftex-cite.el |
| 22671 | 22626 | ||
| 22672 | (autoload 'reftex-citation "reftex-cite" "\ | 22627 | (autoload 'reftex-citation "reftex-cite" "\ |
| @@ -22746,7 +22701,7 @@ Here are all local bindings. | |||
| 22746 | ;;;*** | 22701 | ;;;*** |
| 22747 | 22702 | ||
| 22748 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" | 22703 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" |
| 22749 | ;;;;;; (20709 26818 907104 0)) | 22704 | ;;;;;; (20858 21542 723007 0)) |
| 22750 | ;;; Generated autoloads from textmodes/reftex-parse.el | 22705 | ;;; Generated autoloads from textmodes/reftex-parse.el |
| 22751 | 22706 | ||
| 22752 | (autoload 'reftex-all-document-files "reftex-parse" "\ | 22707 | (autoload 'reftex-all-document-files "reftex-parse" "\ |
| @@ -22758,8 +22713,8 @@ of master file. | |||
| 22758 | 22713 | ||
| 22759 | ;;;*** | 22714 | ;;;*** |
| 22760 | 22715 | ||
| 22761 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (20734 | 22716 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (20858 |
| 22762 | ;;;;;; 30007 218637 0)) | 22717 | ;;;;;; 21542 723007 0)) |
| 22763 | ;;; Generated autoloads from textmodes/reftex-vars.el | 22718 | ;;; Generated autoloads from textmodes/reftex-vars.el |
| 22764 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22719 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| 22765 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22720 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| @@ -22800,7 +22755,7 @@ This means the number of non-shy regexp grouping constructs | |||
| 22800 | 22755 | ||
| 22801 | ;;;### (autoloads (remember-diary-extract-entries remember-clipboard | 22756 | ;;;### (autoloads (remember-diary-extract-entries remember-clipboard |
| 22802 | ;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" | 22757 | ;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" |
| 22803 | ;;;;;; (20799 169 640767 0)) | 22758 | ;;;;;; (20859 42406 744769 0)) |
| 22804 | ;;; Generated autoloads from textmodes/remember.el | 22759 | ;;; Generated autoloads from textmodes/remember.el |
| 22805 | 22760 | ||
| 22806 | (autoload 'remember "remember" "\ | 22761 | (autoload 'remember "remember" "\ |
| @@ -23466,7 +23421,7 @@ for modes derived from Text mode, like Mail mode. | |||
| 23466 | ;;;*** | 23421 | ;;;*** |
| 23467 | 23422 | ||
| 23468 | ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" | 23423 | ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" |
| 23469 | ;;;;;; (20792 30519 8548 0)) | 23424 | ;;;;;; (20845 9511 656701 0)) |
| 23470 | ;;; Generated autoloads from progmodes/ruby-mode.el | 23425 | ;;; Generated autoloads from progmodes/ruby-mode.el |
| 23471 | 23426 | ||
| 23472 | (autoload 'ruby-mode "ruby-mode" "\ | 23427 | (autoload 'ruby-mode "ruby-mode" "\ |
| @@ -24482,7 +24437,7 @@ To work around that, do: | |||
| 24482 | ;;;*** | 24437 | ;;;*** |
| 24483 | 24438 | ||
| 24484 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" | 24439 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" |
| 24485 | ;;;;;; (20791 9657 561026 0)) | 24440 | ;;;;;; (20850 27430 515630 0)) |
| 24486 | ;;; Generated autoloads from progmodes/sh-script.el | 24441 | ;;; Generated autoloads from progmodes/sh-script.el |
| 24487 | (put 'sh-shell 'safe-local-variable 'symbolp) | 24442 | (put 'sh-shell 'safe-local-variable 'symbolp) |
| 24488 | 24443 | ||
| @@ -24546,7 +24501,7 @@ with your script for an edit-interpret-debug cycle. | |||
| 24546 | ;;;*** | 24501 | ;;;*** |
| 24547 | 24502 | ||
| 24548 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" | 24503 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" |
| 24549 | ;;;;;; (20709 26818 907104 0)) | 24504 | ;;;;;; (20858 21542 723007 0)) |
| 24550 | ;;; Generated autoloads from emacs-lisp/shadow.el | 24505 | ;;; Generated autoloads from emacs-lisp/shadow.el |
| 24551 | 24506 | ||
| 24552 | (autoload 'list-load-path-shadows "shadow" "\ | 24507 | (autoload 'list-load-path-shadows "shadow" "\ |
| @@ -24564,7 +24519,7 @@ the earlier. | |||
| 24564 | 24519 | ||
| 24565 | For example, suppose `load-path' is set to | 24520 | For example, suppose `load-path' is set to |
| 24566 | 24521 | ||
| 24567 | \(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\") | 24522 | \(\"/usr/share/emacs/site-lisp\" \"/usr/share/emacs/24.3/lisp\") |
| 24568 | 24523 | ||
| 24569 | and that each of these directories contains a file called XXX.el. Then | 24524 | and that each of these directories contains a file called XXX.el. Then |
| 24570 | XXX.el in the site-lisp directory is referred to by all of: | 24525 | XXX.el in the site-lisp directory is referred to by all of: |
| @@ -24576,9 +24531,9 @@ the second is loaded explicitly via `load-file'). | |||
| 24576 | When not intended, such shadowings can be the source of subtle | 24531 | When not intended, such shadowings can be the source of subtle |
| 24577 | problems. For example, the above situation may have arisen because the | 24532 | problems. For example, the above situation may have arisen because the |
| 24578 | XXX package was not distributed with versions of Emacs prior to | 24533 | XXX package was not distributed with versions of Emacs prior to |
| 24579 | 19.30. An Emacs maintainer downloaded XXX from elsewhere and installed | 24534 | 24.3. A system administrator downloaded XXX from elsewhere and installed |
| 24580 | it. Later, XXX was updated and included in the Emacs distribution. | 24535 | it. Later, XXX was updated and included in the Emacs distribution. |
| 24581 | Unless the Emacs maintainer checks for this, the new version of XXX | 24536 | Unless the system administrator checks for this, the new version of XXX |
| 24582 | will be hidden behind the old (which may no longer work with the new | 24537 | will be hidden behind the old (which may no longer work with the new |
| 24583 | Emacs version). | 24538 | Emacs version). |
| 24584 | 24539 | ||
| @@ -24684,8 +24639,8 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 24684 | 24639 | ||
| 24685 | ;;;*** | 24640 | ;;;*** |
| 24686 | 24641 | ||
| 24687 | ;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20791 | 24642 | ;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20845 |
| 24688 | ;;;;;; 9657 561026 0)) | 24643 | ;;;;;; 9511 656701 0)) |
| 24689 | ;;; Generated autoloads from gnus/shr.el | 24644 | ;;; Generated autoloads from gnus/shr.el |
| 24690 | 24645 | ||
| 24691 | (autoload 'shr-insert-document "shr" "\ | 24646 | (autoload 'shr-insert-document "shr" "\ |
| @@ -27574,8 +27529,8 @@ In dired, call the setroot program on the image at point. | |||
| 27574 | ;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer | 27529 | ;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer |
| 27575 | ;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region | 27530 | ;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region |
| 27576 | ;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription | 27531 | ;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription |
| 27577 | ;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (20709 | 27532 | ;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (20826 |
| 27578 | ;;;;;; 26818 907104 0)) | 27533 | ;;;;;; 45095 436233 0)) |
| 27579 | ;;; Generated autoloads from language/tibet-util.el | 27534 | ;;; Generated autoloads from language/tibet-util.el |
| 27580 | 27535 | ||
| 27581 | (autoload 'tibetan-char-p "tibet-util" "\ | 27536 | (autoload 'tibetan-char-p "tibet-util" "\ |
| @@ -28269,8 +28224,8 @@ to a tcp server on another machine. | |||
| 28269 | ;;;*** | 28224 | ;;;*** |
| 28270 | 28225 | ||
| 28271 | ;;;### (autoloads (trace-function-background trace-function-foreground | 28226 | ;;;### (autoloads (trace-function-background trace-function-foreground |
| 28272 | ;;;;;; trace-buffer) "trace" "emacs-lisp/trace.el" (20727 56759 | 28227 | ;;;;;; trace-values trace-buffer) "trace" "emacs-lisp/trace.el" |
| 28273 | ;;;;;; 628211 0)) | 28228 | ;;;;;; (20842 33318 816618 0)) |
| 28274 | ;;; Generated autoloads from emacs-lisp/trace.el | 28229 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 28275 | 28230 | ||
| 28276 | (defvar trace-buffer "*trace-output*" "\ | 28231 | (defvar trace-buffer "*trace-output*" "\ |
| @@ -28278,6 +28233,12 @@ Trace output will by default go to that buffer.") | |||
| 28278 | 28233 | ||
| 28279 | (custom-autoload 'trace-buffer "trace" t) | 28234 | (custom-autoload 'trace-buffer "trace" t) |
| 28280 | 28235 | ||
| 28236 | (autoload 'trace-values "trace" "\ | ||
| 28237 | Helper function to get internal values. | ||
| 28238 | You can call this function to add internal values in the trace buffer. | ||
| 28239 | |||
| 28240 | \(fn &rest VALUES)" nil nil) | ||
| 28241 | |||
| 28281 | (autoload 'trace-function-foreground "trace" "\ | 28242 | (autoload 'trace-function-foreground "trace" "\ |
| 28282 | Traces FUNCTION with trace output going to BUFFER. | 28243 | Traces FUNCTION with trace output going to BUFFER. |
| 28283 | For every call of FUNCTION Lisp-style trace messages that display argument | 28244 | For every call of FUNCTION Lisp-style trace messages that display argument |
| @@ -28305,7 +28266,7 @@ changing the window configuration. | |||
| 28305 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion | 28266 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion |
| 28306 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers | 28267 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers |
| 28307 | ;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" | 28268 | ;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" |
| 28308 | ;;;;;; "net/tramp.el" (20824 3367 300658 0)) | 28269 | ;;;;;; "net/tramp.el" (20854 24486 190633 0)) |
| 28309 | ;;; Generated autoloads from net/tramp.el | 28270 | ;;; Generated autoloads from net/tramp.el |
| 28310 | 28271 | ||
| 28311 | (defvar tramp-mode t "\ | 28272 | (defvar tramp-mode t "\ |
| @@ -29551,8 +29512,8 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 29551 | ;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers | 29512 | ;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers |
| 29552 | ;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff | 29513 | ;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff |
| 29553 | ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook | 29514 | ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook |
| 29554 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20752 | 29515 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20855 |
| 29555 | ;;;;;; 26669 524456 0)) | 29516 | ;;;;;; 45357 683214 0)) |
| 29556 | ;;; Generated autoloads from vc/vc.el | 29517 | ;;; Generated autoloads from vc/vc.el |
| 29557 | 29518 | ||
| 29558 | (defvar vc-checkout-hook nil "\ | 29519 | (defvar vc-checkout-hook nil "\ |
| @@ -29882,8 +29843,8 @@ mode-specific menu. `vc-annotate-color-map' and | |||
| 29882 | 29843 | ||
| 29883 | ;;;*** | 29844 | ;;;*** |
| 29884 | 29845 | ||
| 29885 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20820 6311 856169 | 29846 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20856 32310 242920 |
| 29886 | ;;;;;; 0)) | 29847 | ;;;;;; 705000)) |
| 29887 | ;;; Generated autoloads from vc/vc-bzr.el | 29848 | ;;; Generated autoloads from vc/vc-bzr.el |
| 29888 | 29849 | ||
| 29889 | (defconst vc-bzr-admin-dirname ".bzr" "\ | 29850 | (defconst vc-bzr-admin-dirname ".bzr" "\ |
| @@ -29899,7 +29860,7 @@ Name of the format file in a .bzr directory.") | |||
| 29899 | 29860 | ||
| 29900 | ;;;*** | 29861 | ;;;*** |
| 29901 | 29862 | ||
| 29902 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20748 62911 684442 | 29863 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20855 45357 683214 |
| 29903 | ;;;;;; 0)) | 29864 | ;;;;;; 0)) |
| 29904 | ;;; Generated autoloads from vc/vc-cvs.el | 29865 | ;;; Generated autoloads from vc/vc-cvs.el |
| 29905 | (defun vc-cvs-registered (f) | 29866 | (defun vc-cvs-registered (f) |
| @@ -29976,7 +29937,7 @@ These are the commands available for use in the file status buffer: | |||
| 29976 | ;;;*** | 29937 | ;;;*** |
| 29977 | 29938 | ||
| 29978 | ;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" | 29939 | ;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" |
| 29979 | ;;;;;; (20709 26818 907104 0)) | 29940 | ;;;;;; (20851 48294 960738 0)) |
| 29980 | ;;; Generated autoloads from vc/vc-dispatcher.el | 29941 | ;;; Generated autoloads from vc/vc-dispatcher.el |
| 29981 | 29942 | ||
| 29982 | (autoload 'vc-do-command "vc-dispatcher" "\ | 29943 | (autoload 'vc-do-command "vc-dispatcher" "\ |
| @@ -29999,7 +29960,7 @@ case, and the process object in the asynchronous case. | |||
| 29999 | 29960 | ||
| 30000 | ;;;*** | 29961 | ;;;*** |
| 30001 | 29962 | ||
| 30002 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20748 62911 684442 | 29963 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20855 45357 683214 |
| 30003 | ;;;;;; 0)) | 29964 | ;;;;;; 0)) |
| 30004 | ;;; Generated autoloads from vc/vc-git.el | 29965 | ;;; Generated autoloads from vc/vc-git.el |
| 30005 | (defun vc-git-registered (file) | 29966 | (defun vc-git-registered (file) |
| @@ -30011,7 +29972,7 @@ case, and the process object in the asynchronous case. | |||
| 30011 | 29972 | ||
| 30012 | ;;;*** | 29973 | ;;;*** |
| 30013 | 29974 | ||
| 30014 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20748 62911 684442 0)) | 29975 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20855 45357 683214 0)) |
| 30015 | ;;; Generated autoloads from vc/vc-hg.el | 29976 | ;;; Generated autoloads from vc/vc-hg.el |
| 30016 | (defun vc-hg-registered (file) | 29977 | (defun vc-hg-registered (file) |
| 30017 | "Return non-nil if FILE is registered with hg." | 29978 | "Return non-nil if FILE is registered with hg." |
| @@ -30022,7 +29983,7 @@ case, and the process object in the asynchronous case. | |||
| 30022 | 29983 | ||
| 30023 | ;;;*** | 29984 | ;;;*** |
| 30024 | 29985 | ||
| 30025 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20748 62911 684442 | 29986 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20855 45357 683214 |
| 30026 | ;;;;;; 0)) | 29987 | ;;;;;; 0)) |
| 30027 | ;;; Generated autoloads from vc/vc-mtn.el | 29988 | ;;; Generated autoloads from vc/vc-mtn.el |
| 30028 | 29989 | ||
| @@ -30040,7 +30001,7 @@ Name of the monotone directory's format file.") | |||
| 30040 | ;;;*** | 30001 | ;;;*** |
| 30041 | 30002 | ||
| 30042 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" | 30003 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" |
| 30043 | ;;;;;; (20709 26818 907104 0)) | 30004 | ;;;;;; (20855 45357 683214 0)) |
| 30044 | ;;; Generated autoloads from vc/vc-rcs.el | 30005 | ;;; Generated autoloads from vc/vc-rcs.el |
| 30045 | 30006 | ||
| 30046 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 30007 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -30054,7 +30015,7 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 30054 | ;;;*** | 30015 | ;;;*** |
| 30055 | 30016 | ||
| 30056 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" | 30017 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" |
| 30057 | ;;;;;; (20709 26818 907104 0)) | 30018 | ;;;;;; (20855 45357 683214 0)) |
| 30058 | ;;; Generated autoloads from vc/vc-sccs.el | 30019 | ;;; Generated autoloads from vc/vc-sccs.el |
| 30059 | 30020 | ||
| 30060 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 30021 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -30072,7 +30033,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 30072 | 30033 | ||
| 30073 | ;;;*** | 30034 | ;;;*** |
| 30074 | 30035 | ||
| 30075 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20760 54070 584283 | 30036 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20855 45357 683214 |
| 30076 | ;;;;;; 0)) | 30037 | ;;;;;; 0)) |
| 30077 | ;;; Generated autoloads from vc/vc-svn.el | 30038 | ;;; Generated autoloads from vc/vc-svn.el |
| 30078 | (defun vc-svn-registered (f) | 30039 | (defun vc-svn-registered (f) |
| @@ -30894,7 +30855,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. | |||
| 30894 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion | 30855 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion |
| 30895 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer | 30856 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer |
| 30896 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" | 30857 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" |
| 30897 | ;;;;;; "language/viet-util.el" (20709 26818 907104 0)) | 30858 | ;;;;;; "language/viet-util.el" (20826 45095 436233 0)) |
| 30898 | ;;; Generated autoloads from language/viet-util.el | 30859 | ;;; Generated autoloads from language/viet-util.el |
| 30899 | 30860 | ||
| 30900 | (autoload 'viet-encode-viscii-char "viet-util" "\ | 30861 | (autoload 'viet-encode-viscii-char "viet-util" "\ |
| @@ -31390,8 +31351,8 @@ in certain major modes. | |||
| 31390 | ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region | 31351 | ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region |
| 31391 | ;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options | 31352 | ;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options |
| 31392 | ;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode | 31353 | ;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode |
| 31393 | ;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20809 36008 | 31354 | ;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20831 63016 |
| 31394 | ;;;;;; 682209 0)) | 31355 | ;;;;;; 738579 0)) |
| 31395 | ;;; Generated autoloads from whitespace.el | 31356 | ;;; Generated autoloads from whitespace.el |
| 31396 | 31357 | ||
| 31397 | (autoload 'whitespace-mode "whitespace" "\ | 31358 | (autoload 'whitespace-mode "whitespace" "\ |
| @@ -31917,8 +31878,8 @@ Default MODIFIER is 'shift. | |||
| 31917 | 31878 | ||
| 31918 | ;;;*** | 31879 | ;;;*** |
| 31919 | 31880 | ||
| 31920 | ;;;### (autoloads (winner-mode) "winner" "winner.el" (20709 26818 | 31881 | ;;;### (autoloads (winner-mode) "winner" "winner.el" (20849 6570 |
| 31921 | ;;;;;; 907104 0)) | 31882 | ;;;;;; 598687 0)) |
| 31922 | ;;; Generated autoloads from winner.el | 31883 | ;;; Generated autoloads from winner.el |
| 31923 | 31884 | ||
| 31924 | (defvar winner-mode nil "\ | 31885 | (defvar winner-mode nil "\ |
| @@ -32466,8 +32427,8 @@ Zone out, completely. | |||
| 32466 | ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" | 32427 | ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" |
| 32467 | ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" | 32428 | ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" |
| 32468 | ;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-common-fns.el" | 32429 | ;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-common-fns.el" |
| 32469 | ;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (20825 24458 310780 | 32430 | ;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (20864 60345 274595 |
| 32470 | ;;;;;; 797000)) | 32431 | ;;;;;; 113000)) |
| 32471 | 32432 | ||
| 32472 | ;;;*** | 32433 | ;;;*** |
| 32473 | 32434 | ||
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 9e4de4c207f..4b02645e463 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el | |||
| @@ -34,6 +34,14 @@ | |||
| 34 | ;;; Code: | 34 | ;;; Code: |
| 35 | (require 'comint) | 35 | (require 'comint) |
| 36 | 36 | ||
| 37 | ;;; For emacs < 24.3. | ||
| 38 | (require 'newcomment) | ||
| 39 | (eval-when-compile | ||
| 40 | (unless (fboundp 'setq-local) | ||
| 41 | (defmacro setq-local (var val) | ||
| 42 | "Set variable VAR to value VAL in current buffer." | ||
| 43 | (list 'set (list 'make-local-variable (list 'quote var)) val)))) | ||
| 44 | |||
| 37 | (defgroup octave nil | 45 | (defgroup octave nil |
| 38 | "Editing Octave code." | 46 | "Editing Octave code." |
| 39 | :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) | 47 | :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
| @@ -589,17 +597,6 @@ mode, set this to (\"-q\" \"--traditional\")." | |||
| 589 | ;; Could certainly do more font locking in inferior Octave ... | 597 | ;; Could certainly do more font locking in inferior Octave ... |
| 590 | "Additional expressions to highlight in Inferior Octave mode.") | 598 | "Additional expressions to highlight in Inferior Octave mode.") |
| 591 | 599 | ||
| 592 | |||
| 593 | ;;; Compatibility functions | ||
| 594 | (if (not (fboundp 'comint-line-beginning-position)) | ||
| 595 | ;; comint-line-beginning-position is defined in Emacs 21 | ||
| 596 | (defun comint-line-beginning-position () | ||
| 597 | "Returns the buffer position of the beginning of the line, after any prompt. | ||
| 598 | The prompt is assumed to be any text at the beginning of the line matching | ||
| 599 | the regular expression `comint-prompt-regexp', a buffer local variable." | ||
| 600 | (save-excursion (comint-bol nil) (point)))) | ||
| 601 | |||
| 602 | |||
| 603 | (defvar inferior-octave-output-list nil) | 600 | (defvar inferior-octave-output-list nil) |
| 604 | (defvar inferior-octave-output-string nil) | 601 | (defvar inferior-octave-output-string nil) |
| 605 | (defvar inferior-octave-receive-in-progress nil) | 602 | (defvar inferior-octave-receive-in-progress nil) |
| @@ -607,9 +604,6 @@ the regular expression `comint-prompt-regexp', a buffer local variable." | |||
| 607 | (define-obsolete-variable-alias 'inferior-octave-startup-hook | 604 | (define-obsolete-variable-alias 'inferior-octave-startup-hook |
| 608 | 'inferior-octave-mode-hook "24.4") | 605 | 'inferior-octave-mode-hook "24.4") |
| 609 | 606 | ||
| 610 | (defvar inferior-octave-has-built-in-variables nil | ||
| 611 | "Non-nil means that Octave has built-in variables.") | ||
| 612 | |||
| 613 | (defvar inferior-octave-dynamic-complete-functions | 607 | (defvar inferior-octave-dynamic-complete-functions |
| 614 | '(inferior-octave-completion-at-point comint-filename-completion) | 608 | '(inferior-octave-completion-at-point comint-filename-completion) |
| 615 | "List of functions called to perform completion for inferior Octave. | 609 | "List of functions called to perform completion for inferior Octave. |
| @@ -701,20 +695,11 @@ startup file, `~/.emacs-octave'." | |||
| 701 | 'identity inferior-octave-output-list "\n") | 695 | 'identity inferior-octave-output-list "\n") |
| 702 | "\n")))) | 696 | "\n")))) |
| 703 | 697 | ||
| 704 | ;; Find out whether Octave has built-in variables. | ||
| 705 | (inferior-octave-send-list-and-digest | ||
| 706 | (list "exist \"LOADPATH\"\n")) | ||
| 707 | (setq inferior-octave-has-built-in-variables | ||
| 708 | (string-match "101$" (car inferior-octave-output-list))) | ||
| 709 | |||
| 710 | ;; An empty secondary prompt, as e.g. obtained by '--braindead', | 698 | ;; An empty secondary prompt, as e.g. obtained by '--braindead', |
| 711 | ;; means trouble. | 699 | ;; means trouble. |
| 712 | (inferior-octave-send-list-and-digest (list "PS2\n")) | 700 | (inferior-octave-send-list-and-digest (list "PS2\n")) |
| 713 | (if (string-match "\\(PS2\\|ans\\) = *$" (car inferior-octave-output-list)) | 701 | (if (string-match "\\(PS2\\|ans\\) = *$" (car inferior-octave-output-list)) |
| 714 | (inferior-octave-send-list-and-digest | 702 | (inferior-octave-send-list-and-digest (list "PS2 (\"> \");\n"))) |
| 715 | (list (if inferior-octave-has-built-in-variables | ||
| 716 | "PS2 = \"> \"\n" | ||
| 717 | "PS2 (\"> \");\n")))) | ||
| 718 | 703 | ||
| 719 | ;; O.k., now we are ready for the Inferior Octave startup commands. | 704 | ;; O.k., now we are ready for the Inferior Octave startup commands. |
| 720 | (let* (commands | 705 | (let* (commands |
| @@ -725,9 +710,7 @@ startup file, `~/.emacs-octave'." | |||
| 725 | (list "more off;\n" | 710 | (list "more off;\n" |
| 726 | (if (not (string-equal | 711 | (if (not (string-equal |
| 727 | inferior-octave-output-string ">> ")) | 712 | inferior-octave-output-string ">> ")) |
| 728 | (if inferior-octave-has-built-in-variables | 713 | "PS1 (\"\\\\s> \");\n") |
| 729 | "PS1=\"\\\\s> \";\n" | ||
| 730 | "PS1 (\"\\\\s> \");\n")) | ||
| 731 | (if (file-exists-p file) | 714 | (if (file-exists-p file) |
| 732 | (format "source (\"%s\");\n" file)))) | 715 | (format "source (\"%s\");\n" file)))) |
| 733 | (inferior-octave-send-list-and-digest commands)) | 716 | (inferior-octave-send-list-and-digest commands)) |
| @@ -42,8 +42,8 @@ LC_MESSAGES= | |||
| 42 | LANG= | 42 | LANG= |
| 43 | export LANGUAGE LC_ALL LC_MESSAGES LANG | 43 | export LANGUAGE LC_ALL LC_MESSAGES LANG |
| 44 | 44 | ||
| 45 | ## Don't restrict access to any files. | 45 | ## Remove unnecessary restrictions on file access. |
| 46 | umask 0 | 46 | umask 022 |
| 47 | 47 | ||
| 48 | update=yes | 48 | update=yes |
| 49 | check=yes | 49 | check=yes |
diff --git a/src/ChangeLog b/src/ChangeLog index 2e9e19fd547..4245a1f0256 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-05-01 David Reitter <david.reitter@gmail.com> | ||
| 2 | |||
| 3 | * nsfns.m (ns_tooltip): Initialize. | ||
| 4 | |||
| 1 | 2013-04-28 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-04-28 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * coding.c (decode_coding_gap): Don't remove the character before | 7 | * coding.c (decode_coding_gap): Don't remove the character before |
diff --git a/src/nsfns.m b/src/nsfns.m index 0d6d0e72835..0d9ebe0ef50 100644 --- a/src/nsfns.m +++ b/src/nsfns.m | |||
| @@ -88,7 +88,7 @@ Lisp_Object Qfontsize; | |||
| 88 | /* hack for OS X file panels */ | 88 | /* hack for OS X file panels */ |
| 89 | char panelOK = 0; | 89 | char panelOK = 0; |
| 90 | 90 | ||
| 91 | EmacsTooltip *ns_tooltip; | 91 | EmacsTooltip *ns_tooltip = nil; |
| 92 | 92 | ||
| 93 | /* Need forward declaration here to preserve organizational integrity of file */ | 93 | /* Need forward declaration here to preserve organizational integrity of file */ |
| 94 | Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object); | 94 | Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object); |