aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/generic.el1
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b199bf9e3bf..82510bb6d27 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12005-03-23 Lute Kamstra <lute@gnu.org> 12005-03-23 Lute Kamstra <lute@gnu.org>
2 2
3 * generic.el (generic-make-keywords-list): Add autoload cookie.
4
3 * calendar/time-date.el: Add comment on time value formats. Don't 5 * calendar/time-date.el: Add comment on time value formats. Don't
4 require parse-time. 6 require parse-time.
5 (with-decoded-time-value): New macro. 7 (with-decoded-time-value): New macro.
diff --git a/lisp/generic.el b/lisp/generic.el
index e257f7bac59..4db830eafb6 100644
--- a/lisp/generic.el
+++ b/lisp/generic.el
@@ -407,6 +407,7 @@ INI file. This hook is NOT installed by default."
407(and generic-use-find-file-hook 407(and generic-use-find-file-hook
408 (add-hook 'find-file-hooks 'generic-mode-find-file-hook)) 408 (add-hook 'find-file-hooks 'generic-mode-find-file-hook))
409 409
410;;;###autoload
410(defun generic-make-keywords-list (keywords-list face &optional prefix suffix) 411(defun generic-make-keywords-list (keywords-list face &optional prefix suffix)
411 "Return a regular expression matching the specified KEYWORDS-LIST. 412 "Return a regular expression matching the specified KEYWORDS-LIST.
412The regexp is highlighted with FACE." 413The regexp is highlighted with FACE."