diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-09 16:21:05 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-09 16:23:06 -0700 |
commit | 6a45e72052498e082f7f67345daaff5596cbd812 (patch) | |
tree | a3a9c0adfb27c3616cbaa44642996b5181d0b5ed /src/syntax.c | |
parent | e8b9b8c063df241707143623f4a0e2d37cb2d18b (diff) | |
download | emacs-6a45e72052498e082f7f67345daaff5596cbd812.tar.gz emacs-6a45e72052498e082f7f67345daaff5596cbd812.tar.bz2 emacs-6a45e72052498e082f7f67345daaff5596cbd812.zip |
Fix some minor quoting issues with grave accent
* src/dispnew.c (add_window_display_history) [GLYPH_DEBUG]:
Remove redundant quotes.
* src/doc.c (uLSQM, uRSQM): New macros.
* src/doc.c (Fsubstitute_command_keys):
* src/syntax.c (Finternal_describe_syntax_value): Follow the user
preference for quotes rather than hardcoding the ‘grave’ style.
* src/regex.c (PUSH_FAILURE_POINT, POP_FAILURE_POINT)
(re_match_2_internal) [DEBUG]: In debugging output, quote C
strings with "...", not `...'.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 0d8b08c01b6..d45936b2b28 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1333,7 +1333,9 @@ DEFUN ("internal-describe-syntax-value", Finternal_describe_syntax_value, insert_string (" (nestable)"); if (prefix) - insert_string (",\n\t is a prefix character for `backward-prefix-chars'"); + insert1 (Fsubstitute_command_keys + (build_string + (",\n\t is a prefix character for `backward-prefix-chars'"))); return syntax; } |