diff options
| author | Glenn Morris | 2011-06-08 00:17:26 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-06-08 00:17:26 -0700 |
| commit | 2c5871045a2b87432ad62ebf13672abe81fae0ba (patch) | |
| tree | 8b663006c3bc062a409b59bf2e1612290aefe465 | |
| parent | 0de12c52c344cd8fe139e1028908a807c38e9450 (diff) | |
| download | emacs-2c5871045a2b87432ad62ebf13672abe81fae0ba.tar.gz emacs-2c5871045a2b87432ad62ebf13672abe81fae0ba.zip | |
Merge from emacs-23; up to 2010-06-13T18:15:45Z!eliz@gnu.org.
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/loadhist.el | 20 | ||||
| -rw-r--r-- | lisp/progmodes/flymake.el | 2 | ||||
| -rw-r--r-- | lisp/repeat.el | 4 |
4 files changed, 28 insertions, 12 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 614db7cf66c..00dd3ea11e5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2011-06-08 Reuben Thomas <rrt@sc3d.org> | ||
| 2 | |||
| 3 | * progmodes/flymake.el (flymake-compilation-prevents-syntax-check): | ||
| 4 | Doc fix (Bug#8713). | ||
| 5 | |||
| 6 | 2011-06-08 Chong Yidong <cyd@stupidchicken.com> | ||
| 7 | |||
| 8 | * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696). | ||
| 9 | |||
| 10 | 2011-06-08 Juanma Barranquero <lekktu@gmail.com> | ||
| 11 | |||
| 12 | * loadhist.el (unload-feature-special-hooks): | ||
| 13 | Add `comint-output-filter-functions'. | ||
| 14 | |||
| 1 | 2011-06-08 Ivan Kanis <gnu@kanis.fr> | 15 | 2011-06-08 Ivan Kanis <gnu@kanis.fr> |
| 2 | 16 | ||
| 3 | * calendar/appt.el (appt-check): Move some initializations into the let. | 17 | * calendar/appt.el (appt-check): Move some initializations into the let. |
diff --git a/lisp/loadhist.el b/lisp/loadhist.el index 3395c41d2ff..8e00c33cd81 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el | |||
| @@ -117,16 +117,16 @@ from a file." | |||
| 117 | '(after-change-functions after-insert-file-functions | 117 | '(after-change-functions after-insert-file-functions |
| 118 | after-make-frame-functions auto-fill-function before-change-functions | 118 | after-make-frame-functions auto-fill-function before-change-functions |
| 119 | blink-paren-function buffer-access-fontify-functions | 119 | blink-paren-function buffer-access-fontify-functions |
| 120 | choose-completion-string-functions command-line-functions | 120 | choose-completion-string-functions comint-output-filter-functions |
| 121 | comment-indent-function compilation-finish-functions delete-frame-functions | 121 | command-line-functions comment-indent-function compilation-finish-functions |
| 122 | disabled-command-function find-file-not-found-functions | 122 | delete-frame-functions disabled-command-function |
| 123 | font-lock-beginning-of-syntax-function font-lock-fontify-buffer-function | 123 | find-file-not-found-functions font-lock-beginning-of-syntax-function |
| 124 | font-lock-fontify-region-function font-lock-mark-block-function | 124 | font-lock-fontify-buffer-function font-lock-fontify-region-function |
| 125 | font-lock-syntactic-face-function font-lock-unfontify-buffer-function | 125 | font-lock-mark-block-function font-lock-syntactic-face-function |
| 126 | font-lock-unfontify-region-function kill-buffer-query-functions | 126 | font-lock-unfontify-buffer-function font-lock-unfontify-region-function |
| 127 | kill-emacs-query-functions lisp-indent-function mouse-position-function | 127 | kill-buffer-query-functions kill-emacs-query-functions lisp-indent-function |
| 128 | redisplay-end-trigger-functions suspend-tty-functions | 128 | mouse-position-function redisplaylay-end-trigger-functions |
| 129 | temp-buffer-show-function window-scroll-functions | 129 | suspend-tty-functions temp-buffer-show-function window-scroll-functions |
| 130 | window-size-change-functions write-contents-functions write-file-functions | 130 | window-size-change-functions write-contents-functions write-file-functions |
| 131 | write-region-annotate-functions) | 131 | write-region-annotate-functions) |
| 132 | "A list of special hooks from Info node `(elisp)Standard Hooks'. | 132 | "A list of special hooks from Info node `(elisp)Standard Hooks'. |
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 6200591fbbb..c01086c970e 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el | |||
| @@ -1118,7 +1118,7 @@ For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'." | |||
| 1118 | (flymake-log 1 "Failed to delete dir %s, error ignored" dir-name)))) | 1118 | (flymake-log 1 "Failed to delete dir %s, error ignored" dir-name)))) |
| 1119 | 1119 | ||
| 1120 | (defcustom flymake-compilation-prevents-syntax-check t | 1120 | (defcustom flymake-compilation-prevents-syntax-check t |
| 1121 | "If non-nil, syntax check won't be started in case compilation is running." | 1121 | "If non-nil, don't start syntax check if compilation is running." |
| 1122 | :group 'flymake | 1122 | :group 'flymake |
| 1123 | :type 'boolean) | 1123 | :type 'boolean) |
| 1124 | 1124 | ||
diff --git a/lisp/repeat.el b/lisp/repeat.el index b33039b609b..8bab8691b4f 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el | |||
| @@ -123,7 +123,9 @@ if `repeat' is bound to C-x z, typing C-x z z z repeats the previous command | |||
| 123 | only occurs if the final character by which `repeat' was invoked is a | 123 | only occurs if the final character by which `repeat' was invoked is a |
| 124 | member of that sequence. If this variable is nil, no re-execution occurs." | 124 | member of that sequence. If this variable is nil, no re-execution occurs." |
| 125 | :group 'convenience | 125 | :group 'convenience |
| 126 | :type 'boolean) | 126 | :type '(choice (const :tag "Repeat for all keys" t) |
| 127 | (const :tag "Don't repeat" nil) | ||
| 128 | (sexp :tag "Repeat for specific keys"))) | ||
| 127 | 129 | ||
| 128 | ;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;; | 130 | ;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;; |
| 129 | 131 | ||