aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/format.el
diff options
context:
space:
mode:
authorPaul Eggert2015-09-17 16:08:20 -0700
committerPaul Eggert2015-09-17 16:09:39 -0700
commit284c470ef752967fcd8bae6a450dc138462b1e49 (patch)
tree83e8bcfe4c756e741ee9d4ecdf80f6b8d0e73c91 /lisp/format.el
parentd149ff5233805c0a09b6067e0cf27549291cc83a (diff)
downloademacs-284c470ef752967fcd8bae6a450dc138462b1e49.tar.gz
emacs-284c470ef752967fcd8bae6a450dc138462b1e49.zip
Backslash cleanup in Elisp source files
This patch should not change behavior. It typically omits backslashes where they are redundant (e.g., in the string literal "^\$"). In a few places, insert backslashes where they make regular expressions clearer: e.g., replace "^\*" (equivalent to "^*") with "^\\*", which has the same effect as a regular expression. Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs, and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion with RCS IDs, as that makes it clearer that the backslash is intended.
Diffstat (limited to 'lisp/format.el')
-rw-r--r--lisp/format.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/format.el b/lisp/format.el
index 96591a70a17..8a756e3396c 100644
--- a/lisp/format.el
+++ b/lisp/format.el
@@ -619,7 +619,7 @@ the rest of the arguments are any PARAMETERs found in that region.
619Any annotations that are found by NEXT-FN but not defined by TRANSLATIONS 619Any annotations that are found by NEXT-FN but not defined by TRANSLATIONS
620are saved as values of the `unknown' text-property \(which is list-valued). 620are saved as values of the `unknown' text-property \(which is list-valued).
621The TRANSLATIONS list should usually contain an entry of the form 621The TRANSLATIONS list should usually contain an entry of the form
622 \(unknown \(nil format-annotate-value)) 622 (unknown (nil format-annotate-value))
623to write these unknown annotations back into the file." 623to write these unknown annotations back into the file."
624 (save-excursion 624 (save-excursion
625 (save-restriction 625 (save-restriction
@@ -839,7 +839,7 @@ the first character in the buffer)."
839 (setq l (cdr l))))) 839 (setq l (cdr l)))))
840 840
841(defun format-annotate-value (old new) 841(defun format-annotate-value (old new)
842 "Return OLD and NEW as a \(CLOSE . OPEN) annotation pair. 842 "Return OLD and NEW as a (CLOSE . OPEN) annotation pair.
843Useful as a default function for TRANSLATIONS alist when the value of the text 843Useful as a default function for TRANSLATIONS alist when the value of the text
844property is the name of the annotation that you want to use, as it is for the 844property is the name of the annotation that you want to use, as it is for the
845`unknown' text property." 845`unknown' text property."