diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-03-29 17:41:11 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-03-29 17:43:08 -0700 |
commit | 20b858ef13f8f71fae6cbce5cdac31c4dd130600 (patch) | |
tree | 861786941f43a58fa282a5a019d3948904b10a9c /lisp/textmodes/texinfmt.el | |
parent | 00c1f771f2a51ffa675ec5a07ea330f2605cd302 (diff) | |
download | emacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.tar.gz |
Prefer \... to control chars in .el literals
Diffstat (limited to 'lisp/textmodes/texinfmt.el')
-rw-r--r-- | lisp/textmodes/texinfmt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index d6f451a1ab5..e89da6527cb 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -2447,7 +2447,7 @@ Use only the FILENAME arg; for Info, ignore the other arguments to @image." (defun texinfo-format-option () "Insert \\=` ... \\=' around arg unless inside a table; in that case, no quotes." ;; `looking-at-backward' not available in v. 18.57, 20.2 - (if (not (search-backward "" ; searched-for character is a control-H + (if (not (search-backward "\^H" (line-beginning-position) t)) (insert "`" (texinfo-parse-arg-discard) "'") |