aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2008-11-02 11:04:54 +0000
committerMartin Rudalics2008-11-02 11:04:54 +0000
commitcbd0f686ad13815aae121ab14fe96660f482161b (patch)
tree1560322f73f0073c91dccc4fcc8cae01aab97813
parent22371c2a5cc93c022016027aa7eff5e245422364 (diff)
downloademacs-cbd0f686ad13815aae121ab14fe96660f482161b.tar.gz
emacs-cbd0f686ad13815aae121ab14fe96660f482161b.zip
(lisp-font-lock-keywords-2): Add save-selected-window-norecord.
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/font-lock.el6
2 files changed, 20 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 787ad8b9545..7794e110c76 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12008-11-02 Martin Rudalics <rudalics@gmx.at>
2
3 * window.el (save-selected-window-norecord): New macro
4 (walk-windows): Use save-selected-window-norecord and call
5 select-window with NORECORD set. (Bug#1237)
6 (set-window-text-height, fit-window-to-buffer): Use
7 save-selected-window-norecord and call select-window with
8 NORECORD set.
9 * subr.el (with-selected-window): Call set-frame-selected-window
10 with new argument NORECORD set. Update doc-string.
11 (with-selected-frame): Call select-frame with new argument
12 NORECORD set. Update doc-string.
13 * emacs-lisp/lisp-mode.el (save-selected-window-norecord): Put
14 indent-function for save-selected-window-norecord.
15 * font-lock.el (lisp-font-lock-keywords-2): Add
16 save-selected-window-norecord.
17
12008-11-01 Juanma Barranquero <lekktu@gmail.com> 182008-11-01 Juanma Barranquero <lekktu@gmail.com>
2 19
3 * cus-edit.el (customize-apropos-options, custom-comment) 20 * cus-edit.el (customize-apropos-options, custom-comment)
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index dc1af6c61d7..8ad51b19206 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -2257,9 +2257,9 @@ in which C preprocessor directives are used. e.g. `asm-mode' and
2257 '("cond" "if" "while" "while-no-input" "let" "let*" 2257 '("cond" "if" "while" "while-no-input" "let" "let*"
2258 "prog" "progn" "progv" "prog1" "prog2" "prog*" 2258 "prog" "progn" "progv" "prog1" "prog2" "prog*"
2259 "inline" "lambda" "save-restriction" "save-excursion" 2259 "inline" "lambda" "save-restriction" "save-excursion"
2260 "save-window-excursion" "save-selected-window" 2260 "save-selected-window" "save-selected-window-norecord"
2261 "save-match-data" "save-current-buffer" "unwind-protect" 2261 "save-window-excursion" "save-match-data" "save-current-buffer"
2262 "condition-case" "track-mouse" 2262 "unwind-protect" "condition-case" "track-mouse"
2263 "eval-after-load" "eval-and-compile" "eval-when-compile" 2263 "eval-after-load" "eval-and-compile" "eval-when-compile"
2264 "eval-when" "eval-at-startup" "eval-next-after-load" 2264 "eval-when" "eval-at-startup" "eval-next-after-load"
2265 "with-case-table" "with-category-table" 2265 "with-case-table" "with-category-table"