diff options
| author | Artur Malabarba | 2015-10-07 09:40:00 +0100 |
|---|---|---|
| committer | Artur Malabarba | 2015-10-07 09:40:25 +0100 |
| commit | 4d04cee0602bc2238b739da10fd56eae5c23f74b (patch) | |
| tree | a020d3163344295b010a19defbbb189f03183cd2 | |
| parent | 96973dea40b4214fe645258be81ac19102fb246e (diff) | |
| download | emacs-4d04cee0602bc2238b739da10fd56eae5c23f74b.tar.gz emacs-4d04cee0602bc2238b739da10fd56eae5c23f74b.zip | |
* lisp/progmodes/prog-mode.el (prettify-symbols-alist):
Document more possible values.
| -rw-r--r-- | lisp/progmodes/prog-mode.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/progmodes/prog-mode.el b/lisp/progmodes/prog-mode.el index 6696356a2dc..b459cbfd286 100644 --- a/lisp/progmodes/prog-mode.el +++ b/lisp/progmodes/prog-mode.el | |||
| @@ -132,7 +132,11 @@ narrowing is in effect." | |||
| 132 | "Alist of symbol prettifications. | 132 | "Alist of symbol prettifications. |
| 133 | Each element looks like (SYMBOL . CHARACTER), where the symbol | 133 | Each element looks like (SYMBOL . CHARACTER), where the symbol |
| 134 | matching SYMBOL (a string, not a regexp) will be shown as | 134 | matching SYMBOL (a string, not a regexp) will be shown as |
| 135 | CHARACTER instead.") | 135 | CHARACTER instead. |
| 136 | |||
| 137 | CHARACTER can be a character or it can be a list or vector, in | ||
| 138 | which case it will be used to compose the new symbol as per the | ||
| 139 | third argument of `compose-region'.") | ||
| 136 | 140 | ||
| 137 | (defun prettify-symbols-default-compose-p (start end _match) | 141 | (defun prettify-symbols-default-compose-p (start end _match) |
| 138 | "Return true iff the symbol MATCH should be composed. | 142 | "Return true iff the symbol MATCH should be composed. |