diff options
| author | Paul Eggert | 2015-09-17 12:28:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-17 12:39:54 -0700 |
| commit | 753fbfbef484272bcde5214f75fb0846ee3f33df (patch) | |
| tree | c525c0d926a4a3f66d323079218ffebfa3a867df /lisp/calendar | |
| parent | dc9e7022d5f259642a42535a4db87d2a1d05ae19 (diff) | |
| download | emacs-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/calendar')
| -rw-r--r-- | lisp/calendar/todo-mode.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el index a04bf8237d9..2949e3b79b0 100644 --- a/lisp/calendar/todo-mode.el +++ b/lisp/calendar/todo-mode.el | |||
| @@ -74,7 +74,7 @@ truenames (those with the extension \".toda\")." | |||
| 74 | (let ((files (if (file-exists-p todo-directory) | 74 | (let ((files (if (file-exists-p todo-directory) |
| 75 | (mapcar 'file-truename | 75 | (mapcar 'file-truename |
| 76 | (directory-files todo-directory t | 76 | (directory-files todo-directory t |
| 77 | (if archives "\.toda$" "\.todo$") t))))) | 77 | (if archives "\\.toda$" "\\.todo$") t))))) |
| 78 | (sort files (lambda (s1 s2) (let ((cis1 (upcase s1)) | 78 | (sort files (lambda (s1 s2) (let ((cis1 (upcase s1)) |
| 79 | (cis2 (upcase s2))) | 79 | (cis2 (upcase s2))) |
| 80 | (string< cis1 cis2)))))) | 80 | (string< cis1 cis2)))))) |
| @@ -1112,7 +1112,7 @@ these files, also rename them accordingly." | |||
| 1112 | (snname (todo-short-file-name nname)) | 1112 | (snname (todo-short-file-name nname)) |
| 1113 | (files (directory-files todo-directory t | 1113 | (files (directory-files todo-directory t |
| 1114 | (concat ".*" (regexp-quote soname) | 1114 | (concat ".*" (regexp-quote soname) |
| 1115 | ".*\.tod[aorty]$") t))) | 1115 | ".*\\.tod[aorty]$") t))) |
| 1116 | (dolist (f files) | 1116 | (dolist (f files) |
| 1117 | (let* ((sfname (todo-short-file-name f)) | 1117 | (let* ((sfname (todo-short-file-name f)) |
| 1118 | (fext (file-name-extension f t)) | 1118 | (fext (file-name-extension f t)) |
| @@ -3963,7 +3963,7 @@ regexp items." | |||
| 3963 | (defun todo-find-filtered-items-file () | 3963 | (defun todo-find-filtered-items-file () |
| 3964 | "Choose a filtered items file and visit it." | 3964 | "Choose a filtered items file and visit it." |
| 3965 | (interactive) | 3965 | (interactive) |
| 3966 | (let ((files (directory-files todo-directory t "\.tod[rty]$" t)) | 3966 | (let ((files (directory-files todo-directory t "\\.tod[rty]$" t)) |
| 3967 | falist file) | 3967 | falist file) |
| 3968 | (dolist (f files) | 3968 | (dolist (f files) |
| 3969 | (let ((type (cond ((equal (file-name-extension f) "todr") "regexp") | 3969 | (let ((type (cond ((equal (file-name-extension f) "todr") "regexp") |
| @@ -6022,7 +6022,7 @@ the empty string (i.e., no time string)." | |||
| 6022 | "The :set function for user option `todo-nondiary-marker'." | 6022 | "The :set function for user option `todo-nondiary-marker'." |
| 6023 | (let* ((oldvalue (symbol-value symbol)) | 6023 | (let* ((oldvalue (symbol-value symbol)) |
| 6024 | (files (append todo-files todo-archives | 6024 | (files (append todo-files todo-archives |
| 6025 | (directory-files todo-directory t "\.tod[rty]$" t)))) | 6025 | (directory-files todo-directory t "\\.tod[rty]$" t)))) |
| 6026 | (custom-set-default symbol value) | 6026 | (custom-set-default symbol value) |
| 6027 | ;; Need to reset these to get font-locking right. | 6027 | ;; Need to reset these to get font-locking right. |
| 6028 | (setq todo-nondiary-start (nth 0 todo-nondiary-marker) | 6028 | (setq todo-nondiary-start (nth 0 todo-nondiary-marker) |
| @@ -6075,7 +6075,7 @@ the empty string (i.e., no time string)." | |||
| 6075 | "The :set function for user option `todo-done-string'." | 6075 | "The :set function for user option `todo-done-string'." |
| 6076 | (let ((oldvalue (symbol-value symbol)) | 6076 | (let ((oldvalue (symbol-value symbol)) |
| 6077 | (files (append todo-files todo-archives | 6077 | (files (append todo-files todo-archives |
| 6078 | (directory-files todo-directory t "\.todr$" t)))) | 6078 | (directory-files todo-directory t "\\.todr$" t)))) |
| 6079 | (custom-set-default symbol value) | 6079 | (custom-set-default symbol value) |
| 6080 | ;; Need to reset this to get font-locking right. | 6080 | ;; Need to reset this to get font-locking right. |
| 6081 | (setq todo-done-string-start | 6081 | (setq todo-done-string-start |
| @@ -6104,7 +6104,7 @@ the empty string (i.e., no time string)." | |||
| 6104 | "The :set function for user option `todo-comment-string'." | 6104 | "The :set function for user option `todo-comment-string'." |
| 6105 | (let ((oldvalue (symbol-value symbol)) | 6105 | (let ((oldvalue (symbol-value symbol)) |
| 6106 | (files (append todo-files todo-archives | 6106 | (files (append todo-files todo-archives |
| 6107 | (directory-files todo-directory t "\.todr$" t)))) | 6107 | (directory-files todo-directory t "\\.todr$" t)))) |
| 6108 | (custom-set-default symbol value) | 6108 | (custom-set-default symbol value) |
| 6109 | (when (not (equal value oldvalue)) | 6109 | (when (not (equal value oldvalue)) |
| 6110 | (dolist (f files) | 6110 | (dolist (f files) |
| @@ -6130,7 +6130,7 @@ the empty string (i.e., no time string)." | |||
| 6130 | "The :set function for user option `todo-highlight-item'." | 6130 | "The :set function for user option `todo-highlight-item'." |
| 6131 | (let ((oldvalue (symbol-value symbol)) | 6131 | (let ((oldvalue (symbol-value symbol)) |
| 6132 | (files (append todo-files todo-archives | 6132 | (files (append todo-files todo-archives |
| 6133 | (directory-files todo-directory t "\.tod[rty]$" t)))) | 6133 | (directory-files todo-directory t "\\.tod[rty]$" t)))) |
| 6134 | (custom-set-default symbol value) | 6134 | (custom-set-default symbol value) |
| 6135 | (when (not (equal value oldvalue)) | 6135 | (when (not (equal value oldvalue)) |
| 6136 | (dolist (f files) | 6136 | (dolist (f files) |