diff options
| author | Paul Eggert | 2015-09-17 16:08:20 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-17 16:09:39 -0700 |
| commit | 284c470ef752967fcd8bae6a450dc138462b1e49 (patch) | |
| tree | 83e8bcfe4c756e741ee9d4ecdf80f6b8d0e73c91 /lisp/textmodes/reftex.el | |
| parent | d149ff5233805c0a09b6067e0cf27549291cc83a (diff) | |
| download | emacs-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/textmodes/reftex.el')
| -rw-r--r-- | lisp/textmodes/reftex.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 7dc91844583..0ff1d72451e 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el | |||
| @@ -2354,7 +2354,7 @@ what in fact did happen. | |||
| 2354 | Check if the bug is reproducible with an up-to-date version of | 2354 | Check if the bug is reproducible with an up-to-date version of |
| 2355 | RefTeX available from http://www.gnu.org/software/auctex/. | 2355 | RefTeX available from http://www.gnu.org/software/auctex/. |
| 2356 | 2356 | ||
| 2357 | If the bug is triggered by a specific \(La\)TeX file, you should try | 2357 | If the bug is triggered by a specific \(La)TeX file, you should try |
| 2358 | to produce a minimal sample file showing the problem and include it | 2358 | to produce a minimal sample file showing the problem and include it |
| 2359 | in your report. | 2359 | in your report. |
| 2360 | 2360 | ||
| @@ -2446,7 +2446,7 @@ of ENTRY-LIST is a list of cons cells (\"MACRONAME\" . LEVEL). See | |||
| 2446 | 2446 | ||
| 2447 | ;;;*** | 2447 | ;;;*** |
| 2448 | 2448 | ||
| 2449 | ;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "83811ccf3471820f0ad0dc005ffc88d5") | 2449 | ;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "43a3f05c024aee5b7708420f74266933") |
| 2450 | ;;; Generated autoloads from reftex-cite.el | 2450 | ;;; Generated autoloads from reftex-cite.el |
| 2451 | 2451 | ||
| 2452 | (autoload 'reftex-default-bibliography "reftex-cite" "\ | 2452 | (autoload 'reftex-default-bibliography "reftex-cite" "\ |
| @@ -2774,7 +2774,7 @@ Here are all local bindings. | |||
| 2774 | 2774 | ||
| 2775 | ;;;*** | 2775 | ;;;*** |
| 2776 | 2776 | ||
| 2777 | ;;;### (autoloads nil "reftex-parse" "reftex-parse.el" "c327a848a6d168412b1a9be9f2e3dce8") | 2777 | ;;;### (autoloads nil "reftex-parse" "reftex-parse.el" "7bfdcb2f040dbe9a08d2c38c005c8f21") |
| 2778 | ;;; Generated autoloads from reftex-parse.el | 2778 | ;;; Generated autoloads from reftex-parse.el |
| 2779 | 2779 | ||
| 2780 | (autoload 'reftex-parse-one "reftex-parse" "\ | 2780 | (autoload 'reftex-parse-one "reftex-parse" "\ |