aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2004-05-12 20:22:41 +0000
committerJuanma Barranquero2004-05-12 20:22:41 +0000
commit71507e475241836c109f93954c3a362cefd01992 (patch)
tree6b7d78f63c403043812ff734168fa58381c565de
parent0e52264f1c7c859e35123120d92876d01ad1d350 (diff)
downloademacs-71507e475241836c109f93954c3a362cefd01992.tar.gz
emacs-71507e475241836c109f93954c3a362cefd01992.zip
(define-generic-mode): Remove redundant arglist info.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/generic.el5
2 files changed, 3 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bdb1b8417b0..9c9b2baa5b5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -11,6 +11,8 @@
11 11
122004-05-12 Juanma Barranquero <lektu@terra.es> 122004-05-12 Juanma Barranquero <lektu@terra.es>
13 13
14 * generic.el (define-generic-mode): Remove redundant arglist info.
15
14 * help-fns.el (help-split-fundoc, help-add-fundoc-usage): 16 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
15 Make arguments match their use in docstring. 17 Make arguments match their use in docstring.
16 (help-arg-highlighting-function): New variable. 18 (help-arg-highlighting-function): New variable.
diff --git a/lisp/generic.el b/lisp/generic.el
index bd6fa0608aa..ca4b47ff4b1 100644
--- a/lisp/generic.el
+++ b/lisp/generic.el
@@ -1,6 +1,6 @@
1;;; generic.el --- defining simple major modes with comment and font-lock 1;;; generic.el --- defining simple major modes with comment and font-lock
2;; 2;;
3;; Copyright (C) 1997, 1999 Free Software Foundation, Inc. 3;; Copyright (C) 1997, 1999, 2004 Free Software Foundation, Inc.
4;; 4;;
5;; Author: Peter Breton <pbreton@cs.umb.edu> 5;; Author: Peter Breton <pbreton@cs.umb.edu>
6;; Created: Fri Sep 27 1996 6;; Created: Fri Sep 27 1996
@@ -188,9 +188,6 @@ regexp in `generic-find-file-regexp'. If the value is nil,
188 &optional description) 188 &optional description)
189 "Create a new generic mode with NAME. 189 "Create a new generic mode with NAME.
190 190
191Args: (NAME COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST AUTO-MODE-LIST
192 FUNCTION-LIST &optional DESCRIPTION)
193
194NAME should be a symbol; its string representation is used as the function 191NAME should be a symbol; its string representation is used as the function
195name. If DESCRIPTION is provided, it is used as the docstring for the new 192name. If DESCRIPTION is provided, it is used as the docstring for the new
196function. 193function.