aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/format.el
diff options
context:
space:
mode:
authorPaul Eggert2015-09-17 12:28:45 -0700
committerPaul Eggert2015-09-17 12:39:54 -0700
commit753fbfbef484272bcde5214f75fb0846ee3f33df (patch)
treec525c0d926a4a3f66d323079218ffebfa3a867df /lisp/format.el
parentdc9e7022d5f259642a42535a4db87d2a1d05ae19 (diff)
downloademacs-753fbfbef484272bcde5214f75fb0846ee3f33df.tar.gz
emacs-753fbfbef484272bcde5214f75fb0846ee3f33df.zip
Fix several backslash typos in Elisp strings
* lisp/calendar/todo-mode.el (todo-files, todo-rename-file) (todo-find-filtered-items-file, todo-reset-nondiary-marker) (todo-reset-done-string, todo-reset-comment-string) (todo-reset-highlight-item): * lisp/erc/erc-networks.el (erc-networks-alist): * lisp/gnus/gnus-art.el (gnus-button-handle-library): * lisp/gnus/gnus-group.el (gnus-read-ephemeral-gmane-group-url): * lisp/gnus/nntp.el (nntp-via-shell-prompt) (nntp-telnet-shell-prompt): * lisp/gnus/spam-report.el (spam-report-gmane-regex): * lisp/image-dired.el (image-dired-rotate-original): (image-dired-get-exif-file-name): * lisp/international/latin1-disp.el (latin1-display-ucs-per-lynx): * lisp/mail/undigest.el (rmail-digest-parse-rfc1153strict): * lisp/mh-e/mh-letter.el (mh-file-is-vcard-p): * lisp/mh-e/mh-mime.el (mh-file-mime-type-substitutions): * lisp/net/shr-color.el (shr-color->hexadecimal): * lisp/org/org-bibtex.el (org-bibtex-fields): * lisp/org/org-docview.el (org-docview-export): * lisp/org/org-entities.el (org-entities): * lisp/org/ox-icalendar.el (org-icalendar-cleanup-string): * lisp/progmodes/cperl-mode.el (cperl-indent-exp): * lisp/progmodes/ebnf2ps.el (ebnf-file-suffix-regexp) (ebnf-style-database): * lisp/progmodes/idlw-help.el (idlwave-do-context-help1): * lisp/progmodes/ruby-mode.el (ruby-imenu-create-index-in-block): * lisp/progmodes/sql.el (sql-product-alist): * lisp/progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist) (verilog-error-font-lock-keywords) (verilog-assignment-operator-re): * lisp/progmodes/vhdl-mode.el (vhdl-compiler-alist): * lisp/textmodes/reftex-parse.el (reftex-parse-from-file): * lisp/vc/add-log.el (change-log-version-number-regexp-list): Fix typo by replacing ‘\’ with ‘\\’ in a string literal. For example, to get the regular expression ‘\.’ use the string literal "\\.", not "\." (which is equivalent to "."). * lisp/emulation/viper-util.el (viper-glob-unix-files): Remove stray ‘\j’ from string. * lisp/gnus/nntp.el (nntp-via-shell-prompt) (nntp-telnet-shell-prompt): Treat > like $ when matching a shell prompt. * lisp/progmodes/make-mode.el (makefile-browse): Properly quote a diagnostic.
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 dbc814e5b01..96591a70a17 100644
--- a/lisp/format.el
+++ b/lisp/format.el
@@ -513,7 +513,7 @@ Optional args BEG and END specify a region of the buffer on which to operate."
513(defun format-delq-cons (cons list) 513(defun format-delq-cons (cons list)
514 "Remove the given CONS from LIST by side effect and return the new LIST. 514 "Remove the given CONS from LIST by side effect and return the new LIST.
515Since CONS could be the first element of LIST, write 515Since CONS could be the first element of LIST, write
516`\(setq foo \(format-delq-cons element foo))' to be sure of changing 516\(setq foo \(format-delq-cons element foo)) to be sure of changing
517the value of `foo'." 517the value of `foo'."
518 (if (eq cons list) 518 (if (eq cons list)
519 (cdr list) 519 (cdr list)
@@ -827,7 +827,7 @@ in the region, it is treated as though it were DEFAULT."
827Insert each element of the given LIST of buffer annotations at its 827Insert each element of the given LIST of buffer annotations at its
828appropriate place. Use second arg OFFSET if the annotations' locations are 828appropriate place. Use second arg OFFSET if the annotations' locations are
829not relative to the beginning of the buffer: annotations will be inserted 829not relative to the beginning of the buffer: annotations will be inserted
830at their location-OFFSET+1 \(ie, the offset is treated as the position of 830at their location-OFFSET+1 \(i.e., the offset is treated as the position of
831the first character in the buffer)." 831the first character in the buffer)."
832 (if (not offset) 832 (if (not offset)
833 (setq offset 0) 833 (setq offset 0)