# HG changeset patch # User Pavel Jank # Date 995447198 0 # Node ID 758a6e658e72a0b66f4f216e96900be0fd10824d # Parent a5cae8675fe936d97c036c6faa652a157238d12e Doc and coding conventions fixes. diff -r a5cae8675fe9 -r 758a6e658e72 lisp/ChangeLog --- a/lisp/ChangeLog Wed Jul 18 07:07:08 2001 +0000 +++ b/lisp/ChangeLog Wed Jul 18 09:06:38 2001 +0000 @@ -1,3 +1,12 @@ +2001-07-17 Pavel Jan,Bm(Bk + + * international/iso-transl.el: Fix typo in the header of the file. + + * textmodes/picture.el (picture): Doc fix. + + * international/ja-dic-cnv.el (skkdic-convert): Some fixes to + follow coding conventions in generated files. + 2001-07-17 Eli Zaretskii * toolbar/tool-bar.el (tool-bar-add-item-from-menu) diff -r a5cae8675fe9 -r 758a6e658e72 lisp/international/iso-transl.el --- a/lisp/international/iso-transl.el Wed Jul 18 07:07:08 2001 +0000 +++ b/lisp/international/iso-transl.el Wed Jul 18 09:06:38 2001 +0000 @@ -1,4 +1,4 @@ -;;; iso-transl.el --- keyboard input definitions for ISO 8859/1 +;;; iso-transl.el --- keyboard input definitions for ISO 8859-1 ;; Copyright (C) 1987, 1993, 1994, 1995 Free Software Foundation, Inc. diff -r a5cae8675fe9 -r 758a6e658e72 lisp/international/ja-dic-cnv.el --- a/lisp/international/ja-dic-cnv.el Wed Jul 18 07:07:08 2001 +0000 +++ b/lisp/international/ja-dic-cnv.el Wed Jul 18 09:06:38 2001 +0000 @@ -358,13 +358,14 @@ (set-buffer buf) (erase-buffer) (buffer-disable-undo) - (insert ";; ja-dic.el -- dictionary for Japanese input method\n" + (insert ";;; ja-dic.el --- dictionary for Japanese input method\n" ";;\tGenerated by the command `skkdic-convert'\n" ";;\tDate: " (current-time-string) "\n" ";;\tOriginal SKK dictionary file: " (file-name-nondirectory filename) "\n\n" - ";;; Comment:\n\n" + ";; This file is part of GNU Emacs.\n\n" + ";;; Commentary:\n\n" ";; Do byte-compile this file again after any modification.\n\n" ";;; Start of the header of the original SKK dictionary.\n\n") (set-buffer skkbuf) @@ -415,7 +416,7 @@ (save-excursion (set-buffer buf) (goto-char (point-max)) - (insert ";;\n(provide 'ja-dic)\n\n;; ja-dic.el ends here\n"))) + (insert ";;\n(provide 'ja-dic)\n\n;;; ja-dic.el ends here\n"))) ;; Save the working buffer. (set-buffer buf) diff -r a5cae8675fe9 -r 758a6e658e72 lisp/textmodes/picture.el --- a/lisp/textmodes/picture.el Wed Jul 18 07:07:08 2001 +0000 +++ b/lisp/textmodes/picture.el Wed Jul 18 09:06:38 2001 +0000 @@ -33,7 +33,7 @@ ;;; Code: (defgroup picture nil - "Picture mode --- editing using quarter-plane screen model." + "Picture mode --- editing using quarter-plane screen model." :prefix "picture-" :group 'editing)