aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorPaul Eggert2016-05-10 07:38:23 -0700
committerPaul Eggert2016-05-10 07:41:40 -0700
commit433d366dc7b053048abf710d790ff62421dd1570 (patch)
treef68895872dd0384664bb66a56371b64e5630db61 /etc
parent8939ae68d430ef272194ac64144ceb58ae0dbd3f (diff)
downloademacs-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/NEWS10
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index b4407a661ad..ed0bc5f7626 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
209breakpoint (e.g. with "f" and "o") by customizing the new option 209breakpoint (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.'
364before running. This is controlled by the 'grep-save-buffers' 364before running. This is controlled by the 'grep-save-buffers'
365variable. 365variable.
366 366
367+++
368** The variable 'text-quoting-style' no longer affects the treatment
369of 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
374gets evaluated after the new mode's hook has run. This can be used to 380gets evaluated after the new mode's hook has run. This can be used to
375incorporate configuration changes made in the mode hook into the 381incorporate configuration changes made in the mode hook into the
376mode's setup. 382mode's setup.