diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2015-09-29 01:39:14 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-09-29 01:39:46 +0300 |
commit | 166a6556d0ec9926035aa2bce3dc0b0827b447ef (patch) | |
tree | f9c77f7f41fdfaa55212e60fe71d5d595fe3a298 /lisp/textmodes | |
parent | 2d712286ac67c3bb4d8da3a6d62d71eca1726aad (diff) | |
download | emacs-166a6556d0ec9926035aa2bce3dc0b0827b447ef.tar.gz emacs-166a6556d0ec9926035aa2bce3dc0b0827b447ef.tar.bz2 emacs-166a6556d0ec9926035aa2bce3dc0b0827b447ef.zip |
; Remove extraneous "coding: utf-8" specifications in Elisp files
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/conf-mode.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/fill.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/paragraphs.el | 4 | ||||
-rw-r--r-- | lisp/textmodes/po.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/tex-mode.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/texinfo.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/tildify.el | 5 |
7 files changed, 5 insertions, 14 deletions
diff --git a/lisp/textmodes/conf-mode.el b/lisp/textmodes/conf-mode.el index 770571a264e..7d81bbca7d5 100644 --- a/lisp/textmodes/conf-mode.el +++ b/lisp/textmodes/conf-mode.el @@ -1,4 +1,4 @@ -;;; conf-mode.el --- Simple major mode for editing conf/ini/properties files -*- coding: utf-8 -*- +;;; conf-mode.el --- Simple major mode for editing conf/ini/properties files ;; Copyright (C) 2004-2015 Free Software Foundation, Inc. diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 5f2fbcda04c..a97facf5427 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -1,4 +1,4 @@ -;;; fill.el --- fill commands for Emacs -*- coding: utf-8 -*- +;;; fill.el --- fill commands for Emacs ;; Copyright (C) 1985-1986, 1992, 1994-1997, 1999, 2001-2015 Free ;; Software Foundation, Inc. diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 8bcc71ed531..58c65678802 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -536,8 +536,4 @@ the current sentence with the one containing the mark." (interactive "*p") (transpose-subr 'forward-sentence arg)) -;; Local Variables: -;; coding: utf-8 -;; End: - ;;; paragraphs.el ends here diff --git a/lisp/textmodes/po.el b/lisp/textmodes/po.el index 99ec2916067..a5f39461498 100644 --- a/lisp/textmodes/po.el +++ b/lisp/textmodes/po.el @@ -1,4 +1,4 @@ -;;; po.el --- basic support of PO translation files -*- coding: utf-8; -*- +;;; po.el --- basic support of PO translation files ;; Copyright (C) 1995-1998, 2000-2015 Free Software Foundation, Inc. diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index bf15b2628f9..cbeded2c61b 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -1,4 +1,4 @@ -;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands -*- coding: utf-8 -*- +;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands ;; Copyright (C) 1985-1986, 1989, 1992, 1994-1999, 2001-2015 Free ;; Software Foundation, Inc. diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 57218177d7b..2b606ed002e 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -1,4 +1,4 @@ -;;; texinfo.el --- major mode for editing Texinfo files -*- coding: utf-8 -*- +;;; texinfo.el --- major mode for editing Texinfo files ;; Copyright (C) 1985, 1988-1993, 1996-1997, 2000-2015 Free Software ;; Foundation, Inc. diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el index 0e645fcdd38..f1a42f2b688 100644 --- a/lisp/textmodes/tildify.el +++ b/lisp/textmodes/tildify.el @@ -508,9 +508,4 @@ variable will be set to the representation." (provide 'tildify) - -;; Local variables: -;; coding: utf-8 -;; End: - ;;; tildify.el ends here |