aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2015-06-30 15:06:31 -0700
committerPaul Eggert2015-06-30 15:08:02 -0700
commit3213d7707026573ca425ba1c865b7fa1a8b46639 (patch)
tree594558b482ebdb376605c8f304532e6746df78d5 /src
parent5f9e4b2e11adce9933af2267425b80dc536c4239 (diff)
downloademacs-3213d7707026573ca425ba1c865b7fa1a8b46639.tar.gz
emacs-3213d7707026573ca425ba1c865b7fa1a8b46639.zip
In strings, prefer plain ` and ' to \` and \'
* lisp/allout.el (allout-insert-listified): * lisp/emacs-lisp/easy-mmode.el (define-globalized-minor-mode): * lisp/ls-lisp.el (ls-lisp-UCA-like-collation) (ls-lisp-string-lessp): * lisp/menu-bar.el (menu-bar-open): * lisp/obsolete/otodo-mode.el (todo-top-priorities): * lisp/progmodes/compile.el (compile): * lisp/progmodes/etags.el (tags-loop-scan): * lisp/progmodes/make-mode.el (makefile-browser-insert-continuation): * lisp/subr.el (posn-actual-col-row): * lisp/term/pc-win.el (x-list-fonts): * lisp/textmodes/texinfmt.el (texinfmt-version): * lisp/textmodes/texnfo-upd.el (texinfo-master-menu): * lisp/time.el (display-time-world-list): * lisp/tmm.el (tmm-menubar): * src/buffer.c (syms_of_buffer): * src/fileio.c (syms_of_fileio): Omit unnecessary and confusing backslash before quote. * lisp/erc/erc.el (erc-cmd-LASTLOG): * lisp/progmodes/flymake.el (flymake-fix-file-name): * lisp/progmodes/vhdl-mode.el (vhdl-in-extended-identifier-p): Fix string that was intended to escape a backslash and not a quote.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c2
-rw-r--r--src/fileio.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index e151e9451d1..bd7c82c062f 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5730,7 +5730,7 @@ The values of `right-to-left' and `left-to-right' override that.
5730Any other value is treated as nil. 5730Any other value is treated as nil.
5731 5731
5732This variable has no effect unless the buffer's value of 5732This variable has no effect unless the buffer's value of
5733\`bidi-display-reordering' is non-nil. */); 5733`bidi-display-reordering' is non-nil. */);
5734 5734
5735 DEFVAR_PER_BUFFER ("truncate-lines", &BVAR (current_buffer, truncate_lines), Qnil, 5735 DEFVAR_PER_BUFFER ("truncate-lines", &BVAR (current_buffer, truncate_lines), Qnil,
5736 doc: /* Non-nil means do not display continuation lines. 5736 doc: /* Non-nil means do not display continuation lines.
diff --git a/src/fileio.c b/src/fileio.c
index aad0270a1d2..905778e9277 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -5866,7 +5866,7 @@ syms_of_fileio (void)
5866If it is nil, `default-file-name-coding-system' (which see) is used. 5866If it is nil, `default-file-name-coding-system' (which see) is used.
5867 5867
5868On MS-Windows, the value of this variable is largely ignored if 5868On MS-Windows, the value of this variable is largely ignored if
5869\`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows 5869`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows
5870behaves as if file names were encoded in `utf-8'. */); 5870behaves as if file names were encoded in `utf-8'. */);
5871 Vfile_name_coding_system = Qnil; 5871 Vfile_name_coding_system = Qnil;
5872 5872
@@ -5881,7 +5881,7 @@ instead use `file-name-coding-system' to get a constant encoding
5881of file names regardless of the current language environment. 5881of file names regardless of the current language environment.
5882 5882
5883On MS-Windows, the value of this variable is largely ignored if 5883On MS-Windows, the value of this variable is largely ignored if
5884\`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows 5884`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows
5885behaves as if file names were encoded in `utf-8'. */); 5885behaves as if file names were encoded in `utf-8'. */);
5886 Vdefault_file_name_coding_system = Qnil; 5886 Vdefault_file_name_coding_system = Qnil;
5887 5887