aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1998-12-16 15:20:39 +0000
committerDavid Aspinall1998-12-16 15:20:39 +0000
commitb5aa4038d919755dda68b5a20323e8b20b04924f (patch)
tree021edb40082daa9a0082b24393203e736a3c2359
parent7edf61a08bf8e300c1c15bd3c66897cee7b2f959 (diff)
Added GPL license (I wrote this at home).
Corrected name of Texinfo and other comments.
-rw-r--r--generic/texi-docstring-magic.el13
1 files changed, 9 insertions, 4 deletions
diff --git a/generic/texi-docstring-magic.el b/generic/texi-docstring-magic.el
index 3e69ccd5..1eba92d7 100644
--- a/generic/texi-docstring-magic.el
+++ b/generic/texi-docstring-magic.el
@@ -7,10 +7,15 @@
;;
;; $Id$
;;
+;; This package is distributed under the terms of the
+;; GNU General Public License, Version 2.
+;; You should have a copy of the GPL with your version of
+;; GNU Emacs or the Texinfo distribution.
+;;
;;
-;; This package generates TexInfo source fragments from Emacs
+;; This package generates Texinfo source fragments from Emacs
;; docstrings. This avoids documenting functions and variables
-;; in more than one place, and automatically adds TexInfo markup
+;; in more than one place, and automatically adds Texinfo markup
;; to docstrings.
;;
;; It relies heavily on you following the Elisp documentation
@@ -54,7 +59,7 @@
;;
;; -----
;;
-;; Useful key binding when writing TeXInfo:
+;; Useful key binding when writing Texinfo:
;;
;; (define-key TeXinfo-mode-map "C-cC-d" 'texi-docstring-magic-insert-magic)
;;
@@ -231,7 +236,7 @@ Markup as @code{stuff} or @lisp stuff @end lisp."
(texi-docstring-magic-texi "fn" "Face" name docstring nil)))
((fboundp symbol)
;; Functions.
- ;; Don't handle macros, aliases, compiled fns properly.
+ ;; We don't handle macros, aliases, or compiled fns properly.
(let*
((function symbol)
(name (symbol-name function))