diff options
author | Bill Wohler <wohler@newt.com> | 2005-12-02 04:55:39 +0000 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2005-12-02 04:55:39 +0000 |
commit | 1a18223ec4b5a7f8fc8cbaa88bf2aa9457bf6d9f (patch) | |
tree | 90c13d96df4b6dce9fc193202d6226250e61b2d7 /lisp | |
parent | f09e2a44951645af111d173feddc45553ff570b4 (diff) | |
download | emacs-1a18223ec4b5a7f8fc8cbaa88bf2aa9457bf6d9f.tar.gz emacs-1a18223ec4b5a7f8fc8cbaa88bf2aa9457bf6d9f.tar.bz2 emacs-1a18223ec4b5a7f8fc8cbaa88bf2aa9457bf6d9f.zip |
(mh-defface-compat): Checkdoc fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mh-e/mh-init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mh-e/mh-init.el b/lisp/mh-e/mh-init.el index 5575086fe78..3ef478fd55f 100644 --- a/lisp/mh-e/mh-init.el +++ b/lisp/mh-e/mh-init.el @@ -1,6 +1,6 @@ ;;; mh-init.el --- MH-E initialization. -;; Copyright (C) 2003, 2004 Free Software Foundation, Inc. +;; Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. ;; Author: Peter S. Galbraith <psg@debian.org> ;; Maintainer: Bill Wohler <wohler@newt.com> @@ -336,7 +336,7 @@ directory is added to the `load-path' if it isn't already there." "Non-nil means defface supports min-colors display requirement.") (defun mh-defface-compat (spec) - "Converts SPEC for defface if necessary to run on older platforms. + "Convert SPEC for defface if necessary to run on older platforms. See `defface' for the spec definition. When `mh-min-colors-defined-flag' is nil, this function finds a display with a @@ -354,7 +354,7 @@ single \"class\" requirement with a \"color\" item, renames the requirement to (when (not (eq (car entry) t)) (if (assoc 'min-colors (car entry)) (delq (assoc 'min-colors (car entry)) (car entry))))))) - + (provide 'mh-init) ;;; Local Variables: |