1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

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.
This commit is contained in:
Eli Zaretskii 2015-09-21 19:51:20 +03:00
parent 818fc6e128
commit db828f62f6
4 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,4 @@
;;; replace.el --- replace commands for Emacs
;;; replace.el --- replace commands for Emacs -*- coding: utf-8 -*-
;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2015 Free
;; Software Foundation, Inc.

View file

@ -2446,7 +2446,7 @@ of ENTRY-LIST is a list of cons cells (\"MACRONAME\" . LEVEL). See
;;;***
;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "43a3f05c024aee5b7708420f74266933")
;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "751df6ee674ea533b755e8cda4ad1cf8")
;;; Generated autoloads from reftex-cite.el
(autoload 'reftex-default-bibliography "reftex-cite" "\

View file

@ -4235,4 +4235,8 @@ column is used (fill-column vs. end of previous/next line)."
(provide 'rst)
;; Local Variables:
;; coding: utf-8
;; End:
;;; rst.el ends here

View file

@ -2581,5 +2581,8 @@ It should be added buffer-locally to `write-file-functions'."
(run-hooks 'whitespace-load-hook)
;; Local Variables:
;; coding: utf-8
;; End:
;;; whitespace.el ends here