aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-02-15 20:55:31 -0500
committerGlenn Morris2013-02-15 20:55:31 -0500
commitef5ae980aad7c1b67b4171f7a2c106d1f69aa94f (patch)
tree3ceb578edfe108703a2adfcf531614cb15c76a07
parent6c8f113e705fe7f58695fdeda04aaa6a9c9b8a93 (diff)
downloademacs-ef5ae980aad7c1b67b4171f7a2c106d1f69aa94f.tar.gz
emacs-ef5ae980aad7c1b67b4171f7a2c106d1f69aa94f.zip
* lisp/font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/font-lock.el2
2 files changed, 6 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 064ad686fca..09645ec4741 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-02-16 Glenn Morris <rgm@gnu.org>
2
3 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
4
12013-02-15 Stefan Monnier <monnier@iro.umontreal.ca> 52013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * simple.el (eval-expression): Let `exp' set the mark (bug#13724). 7 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
@@ -15,15 +19,13 @@
15 19
16 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to 20 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
17 `iswitchb-next-match' and `iswitchb-prev-match' resply. 21 `iswitchb-next-match' and `iswitchb-prev-match' resply.
18
19 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to 22 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
20 `ido-next-match' and `ido-prev-match' resply. 23 `ido-next-match' and `ido-prev-match' resply.
21
22 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'. 24 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
23 Bind `C-.' and `C-,' to `icomplete-forward-completions' and 25 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
24 `icomplete-backward-completions' (Bug#13708). 26 `icomplete-backward-completions' (Bug#13708).
25 27
262013-02-15 Michael Albinus <michael.albinus@gmx.de> 282013-02-15 Glenn Morris <rgm@gnu.org>
27 29
28 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. 30 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
29 31
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index f714eaab233..6e3476ac9a5 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -2256,7 +2256,7 @@ in which C preprocessor directives are used. e.g. `asm-mode' and
2256 "method-combination\\|setf-expander\\|skeleton\\|widget\\|" 2256 "method-combination\\|setf-expander\\|skeleton\\|widget\\|"
2257 "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|" 2257 "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|"
2258 ;; Variable declarations. 2258 ;; Variable declarations.
2259 "\\(const\\(ant\\)?\\|custom\\|varalias\\|face\\|parameter\\|var\\)\\|" 2259 "\\(const\\(ant\\)?\\|custom\\|varalias\\|face\\|parameter\\|var\\(?:-local\\)?\\)\\|"
2260 ;; Structure declarations. 2260 ;; Structure declarations.
2261 "\\(class\\|group\\|theme\\|package\\|struct\\|type\\)" 2261 "\\(class\\|group\\|theme\\|package\\|struct\\|type\\)"
2262 "\\)\\)\\>" 2262 "\\)\\)\\>"