aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorJuanma Barranquero2013-06-19 00:13:25 +0200
committerJuanma Barranquero2013-06-19 00:13:25 +0200
commit14dd22d2cedad0e1babcce0fea868a0c01294fa2 (patch)
tree49f91c1cf89ab6ea0dcc92234bb6988d62d404d5 /lisp/ChangeLog
parentec9295aeaa0ca3616507b66bd6e2f81dce05e820 (diff)
downloademacs-14dd22d2cedad0e1babcce0fea868a0c01294fa2.tar.gz
emacs-14dd22d2cedad0e1babcce0fea868a0c01294fa2.zip
Convert symbol prettification into minor mode and global minor mode.
* etc/NEWS: Document new Prettify Symbols mode. * lisp/progmodes/prog-mode.el (prettify-symbols-alist): Rename from `prog-prettify-symbols', and make a local defvar instead of defcustom. (prettify-symbols--keywords): Rename from `prog-prettify-symbols-alist' and make a local defvar. (prettify-symbols--compose-symbol): Rename from `prog--prettify-font-lock-compose-symbol'. (prettify-symbols--make-keywords): Rename from `prog-prettify-font-lock-symbols-keywords' and simplify. (prog-prettify-install): Remove. (prettify-symbols-mode): New minor mode, based on `prog-prettify-install'. (turn-on-prettify-symbols-mode): New function. (global-prettify-symbols-mode): New globalized minor mode. * lisp/emacs-lisp/lisp-mode.el (lisp-mode-variables): * lisp/progmodes/cfengine.el (cfengine3-mode): * lisp/progmodes/perl-mode.el (perl-mode): Don't call `prog-prettify-install'; set `prettify-symbols-alist' instead.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog23
1 files changed, 23 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index abd9e9da3ae..44d8a2a82bd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,26 @@
12013-06-18 Juanma Barranquero <lekktu@gmail.com>
2
3 Convert symbol prettification into minor mode and global minor mode.
4
5 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
6 `prog-prettify-symbols', and make a local defvar instead of defcustom.
7 (prettify-symbols--keywords): Rename from
8 `prog-prettify-symbols-alist' and make a local defvar.
9 (prettify-symbols--compose-symbol): Rename from
10 `prog--prettify-font-lock-compose-symbol'.
11 (prettify-symbols--make-keywords): Rename from
12 `prog-prettify-font-lock-symbols-keywords' and simplify.
13 (prog-prettify-install): Remove.
14 (prettify-symbols-mode): New minor mode, based on
15 `prog-prettify-install'.
16 (turn-on-prettify-symbols-mode): New function.
17 (global-prettify-symbols-mode): New globalized minor mode.
18
19 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20 * progmodes/cfengine.el (cfengine3-mode):
21 * progmodes/perl-mode.el (perl-mode): Don't call
22 `prog-prettify-install'; set `prettify-symbols-alist' instead.
23
12013-06-18 Juri Linkov <juri@jurta.org> 242013-06-18 Juri Linkov <juri@jurta.org>
2 25
3 * files-x.el (modify-file-local-variable-message): New function. 26 * files-x.el (modify-file-local-variable-message): New function.