diff options
author | Andreas Schwab <schwab@suse.de> | 1998-09-18 09:18:40 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-09-18 09:18:40 +0000 |
commit | d2ef1f623995abc1ca1e04513f136e4f29e51bd7 (patch) | |
tree | 01a329703bb69f35469b38f25a6c8ee14069d42e | |
parent | 0b44343bfba21da7d93c2615d5156a7d326296da (diff) | |
download | emacs-d2ef1f623995abc1ca1e04513f136e4f29e51bd7.tar.gz emacs-d2ef1f623995abc1ca1e04513f136e4f29e51bd7.tar.bz2 emacs-d2ef1f623995abc1ca1e04513f136e4f29e51bd7.zip |
(vhdl-header-file): Fix customize type.
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 200f5700a00..337694e52b2 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -250,7 +250,7 @@ Example: -- Created : <date> -- Description : <cursor> -----------------------------------------" - :type 'string + :type '(choice (const nil) string) :group 'vhdl-electric) (defcustom vhdl-modify-date-prefix-string "-- Last modified : " |