aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorPaul Eggert2018-03-29 17:41:11 -0700
committerPaul Eggert2018-03-29 17:43:08 -0700
commit20b858ef13f8f71fae6cbce5cdac31c4dd130600 (patch)
tree861786941f43a58fa282a5a019d3948904b10a9c /lisp/textmodes
parent00c1f771f2a51ffa675ec5a07ea330f2605cd302 (diff)
downloademacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.tar.gz
emacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.zip
Prefer \... to control chars in .el literals
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/texinfmt.el2
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."
2447(defun texinfo-format-option () 2447(defun texinfo-format-option ()
2448 "Insert \\=` ... \\=' around arg unless inside a table; in that case, no quotes." 2448 "Insert \\=` ... \\=' around arg unless inside a table; in that case, no quotes."
2449 ;; `looking-at-backward' not available in v. 18.57, 20.2 2449 ;; `looking-at-backward' not available in v. 18.57, 20.2
2450 (if (not (search-backward "" ; searched-for character is a control-H 2450 (if (not (search-backward "\^H"
2451 (line-beginning-position) 2451 (line-beginning-position)
2452 t)) 2452 t))
2453 (insert "`" (texinfo-parse-arg-discard) "'") 2453 (insert "`" (texinfo-parse-arg-discard) "'")