summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-07-18 09:06:38 +0000
committerPavel Janík <Pavel@Janik.cz>2001-07-18 09:06:38 +0000
commit381194d0843c4c9a2a8a899e3db14c383e0eeefa (patch)
tree30435b596cbcdc86decf32005f2428273729676a /lisp
parent01c7beb9bc29fcb5b0ab376e2c69dc76e02838b8 (diff)
downloademacs-381194d0843c4c9a2a8a899e3db14c383e0eeefa.tar.gz
emacs-381194d0843c4c9a2a8a899e3db14c383e0eeefa.tar.bz2
emacs-381194d0843c4c9a2a8a899e3db14c383e0eeefa.zip
Doc and coding conventions fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/international/iso-transl.el2
-rw-r--r--lisp/international/ja-dic-cnv.el7
-rw-r--r--lisp/textmodes/picture.el2
4 files changed, 15 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bf3f318f47d..244414109ca 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
+2001-07-17 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
+
+ * 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 <eliz@is.elta.co.il>
* toolbar/tool-bar.el (tool-bar-add-item-from-menu)
diff --git a/lisp/international/iso-transl.el b/lisp/international/iso-transl.el
index 8cc27b120f7..3cd650c8227 100644
--- a/lisp/international/iso-transl.el
+++ b/lisp/international/iso-transl.el
@@ -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 --git a/lisp/international/ja-dic-cnv.el b/lisp/international/ja-dic-cnv.el
index 81b9fdc498c..113d00f572a 100644
--- a/lisp/international/ja-dic-cnv.el
+++ b/lisp/international/ja-dic-cnv.el
@@ -358,13 +358,14 @@ The name of generated file is specified by the variable `ja-dic-filename'."
(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 @@ The name of generated file is specified by the variable `ja-dic-filename'."
(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 --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el
index 25e60eb4809..4f4a1650d99 100644
--- a/lisp/textmodes/picture.el
+++ b/lisp/textmodes/picture.el
@@ -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)