diff options
| author | Eli Zaretskii | 2015-09-21 19:51:20 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-09-21 19:51:20 +0300 |
| commit | db828f62f6f17414fbbc3206dac123dc73dd6055 (patch) | |
| tree | a9030ce4484b15e9cf292677ae0280dd6b4a2e5d | |
| parent | 818fc6e128491de6bc5d630f6c9c8adf969e3ea8 (diff) | |
| download | emacs-db828f62f6f17414fbbc3206dac123dc73dd6055.tar.gz emacs-db828f62f6f17414fbbc3206dac123dc73dd6055.zip | |
Don't rely on defaults in decoding UTF-8 encoded Lisp files
* lisp/replace.el:
* lisp/textmodes/rst.el:
* lisp/whitespace.el: Add an explicit UTF-8 encoding tag.
| -rw-r--r-- | lisp/replace.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/reftex.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/rst.el | 4 | ||||
| -rw-r--r-- | lisp/whitespace.el | 3 |
4 files changed, 9 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 3a908ac4d8d..d84f3a24f61 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; replace.el --- replace commands for Emacs | 1 | ;;; replace.el --- replace commands for Emacs -*- coding: utf-8 -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2015 Free | 3 | ;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2015 Free |
| 4 | ;; Software Foundation, Inc. | 4 | ;; Software Foundation, Inc. |
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 0ff1d72451e..fb96c6c551b 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el | |||
| @@ -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" "43a3f05c024aee5b7708420f74266933") | 2449 | ;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "751df6ee674ea533b755e8cda4ad1cf8") |
| 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" "\ |
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el index 581e16e7cd8..4c234c9a31f 100644 --- a/lisp/textmodes/rst.el +++ b/lisp/textmodes/rst.el | |||
| @@ -4235,4 +4235,8 @@ column is used (fill-column vs. end of previous/next line)." | |||
| 4235 | 4235 | ||
| 4236 | (provide 'rst) | 4236 | (provide 'rst) |
| 4237 | 4237 | ||
| 4238 | ;; Local Variables: | ||
| 4239 | ;; coding: utf-8 | ||
| 4240 | ;; End: | ||
| 4241 | |||
| 4238 | ;;; rst.el ends here | 4242 | ;;; rst.el ends here |
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index d45a1dcc47f..839ca8c3ac5 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el | |||
| @@ -2581,5 +2581,8 @@ It should be added buffer-locally to `write-file-functions'." | |||
| 2581 | 2581 | ||
| 2582 | (run-hooks 'whitespace-load-hook) | 2582 | (run-hooks 'whitespace-load-hook) |
| 2583 | 2583 | ||
| 2584 | ;; Local Variables: | ||
| 2585 | ;; coding: utf-8 | ||
| 2586 | ;; End: | ||
| 2584 | 2587 | ||
| 2585 | ;;; whitespace.el ends here | 2588 | ;;; whitespace.el ends here |