diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-10-24 20:41:46 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-10-24 20:41:46 +0000 |
commit | 0a9ad6144d26a364d22d96256c5801ad42df3cf9 (patch) | |
tree | d8311f6360538908b4f80c2c63f3fc84c51ceab1 /lisp/emacs-lisp | |
parent | fe50b6abd8fbd7651bbfdc60f9ad8e4b8c6de7f3 (diff) | |
download | emacs-0a9ad6144d26a364d22d96256c5801ad42df3cf9.tar.gz emacs-0a9ad6144d26a364d22d96256c5801ad42df3cf9.tar.bz2 emacs-0a9ad6144d26a364d22d96256c5801ad42df3cf9.zip |
(authors-aliases): Add some more aliases.
(authors): Set file coding system to iso-2022-7bit. Add
file-local variables to output buffer.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/authors.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index 2530e9e4c19..42f56fe1a30 100644 --- a/lisp/emacs-lisp/authors.el +++ b/lisp/emacs-lisp/authors.el @@ -79,6 +79,8 @@ file individually.") ("Reingold Edward M" . "Edward M. Reingold") ("Roland B Roberts" . "Roland B. Roberts") ("Sam Shteingold" . "Sam Steingold") + ("W{\L}Odek Bzyl" . "Wlodzimierz Bzyl") + ("Kenneth Manheimer" . "Ken Manheimer") ("Kenichi HANDA" . "Kenichi Handa")) "Alist of author aliases. @@ -284,8 +286,10 @@ buffer *Authors* containing authorship information." (authors-scan-el file table))) (set-buffer (get-buffer-create buffer-name)) (erase-buffer) + (set-buffer-file-coding-system 'iso-2022-7bit) (maphash #'authors-print table) (sort-lines nil (point-min) (point-max)) + (insert "\nLocal" " Variables:\ncoding: iso-2022-7bit\nEnd:\n") (pop-to-buffer buffer-name))) |