diff options
| author | Paul Eggert | 2016-05-10 07:38:23 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-10 07:41:40 -0700 |
| commit | 433d366dc7b053048abf710d790ff62421dd1570 (patch) | |
| tree | f68895872dd0384664bb66a56371b64e5630db61 /etc | |
| parent | 8939ae68d430ef272194ac64144ceb58ae0dbd3f (diff) | |
| download | emacs-433d366dc7b053048abf710d790ff62421dd1570.tar.gz emacs-433d366dc7b053048abf710d790ff62421dd1570.zip | |
'text-quoting-style' now affects only ` and '
Change 'text-quoting-style' so that it no longer affects
formatting of curved quotes in format arguments to functions like
'message'. In particular, when this variable's value is 'grave',
all quotes in formats are output as-is.
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/strings.texi (Formatting Strings):
* doc/lispref/tips.texi (Documentation Tips):
* etc/NEWS:
* src/doc.c (syms_of_doc): Document this.
* lisp/help-fns.el (describe-function-1):
* src/doc.c (text_quoting_style, Fsubstitute_command_keys)
(syms_of_doc):
* src/editfns.c (styled_format): Omit now-unnecessary code.
* src/lisp.h (LEAVE_QUOTING_STYLE): Remove.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 10 |
1 files changed, 8 insertions, 2 deletions
| @@ -207,7 +207,7 @@ viewing HTML files and the like. | |||
| 207 | 207 | ||
| 208 | *** Ediff can be prevented from pausing 1 second after reaching a | 208 | *** Ediff can be prevented from pausing 1 second after reaching a |
| 209 | breakpoint (e.g. with "f" and "o") by customizing the new option | 209 | breakpoint (e.g. with "f" and "o") by customizing the new option |
| 210 | `edebug-sit-on-break'. | 210 | 'edebug-sit-on-break'. |
| 211 | 211 | ||
| 212 | ** eww | 212 | ** eww |
| 213 | 213 | ||
| @@ -364,13 +364,19 @@ mode bindings: 'C-c @ C-a', 'C-c @ C-t', 'C-c @ C-d', and 'C-c @ C-e.' | |||
| 364 | before running. This is controlled by the 'grep-save-buffers' | 364 | before running. This is controlled by the 'grep-save-buffers' |
| 365 | variable. | 365 | variable. |
| 366 | 366 | ||
| 367 | +++ | ||
| 368 | ** The variable 'text-quoting-style' no longer affects the treatment | ||
| 369 | of curved quotes in format arguments to functions like 'message' and | ||
| 370 | 'format-message'. In particular, when this variable's value is | ||
| 371 | 'grave', all quotes in formats are output as-is. | ||
| 372 | |||
| 367 | 373 | ||
| 368 | * Lisp Changes in Emacs 25.2 | 374 | * Lisp Changes in Emacs 25.2 |
| 369 | 375 | ||
| 370 | ** New var syntax-ppss-table to control the syntax-table used in syntax-ppss. | 376 | ** New var syntax-ppss-table to control the syntax-table used in syntax-ppss. |
| 371 | 377 | ||
| 372 | +++ | 378 | +++ |
| 373 | ** `define-derived-mode' can now specify an :after-hook form, which | 379 | ** 'define-derived-mode' can now specify an :after-hook form, which |
| 374 | gets evaluated after the new mode's hook has run. This can be used to | 380 | gets evaluated after the new mode's hook has run. This can be used to |
| 375 | incorporate configuration changes made in the mode hook into the | 381 | incorporate configuration changes made in the mode hook into the |
| 376 | mode's setup. | 382 | mode's setup. |