diff options
author | Sam Steingold <sds@gnu.org> | 2014-09-09 16:39:31 -0400 |
---|---|---|
committer | Sam Steingold <sds@gnu.org> | 2014-09-09 16:39:31 -0400 |
commit | c98d0ea46197545b899b463c1ba9ff2fea8e8c6e (patch) | |
tree | ca5e68e7483a993eaa3e37273e3afec2619746e4 /lisp/progmodes/sql.el | |
parent | 8fe73251b167274c4316e3726b4034dba77a5e88 (diff) | |
download | emacs-c98d0ea46197545b899b463c1ba9ff2fea8e8c6e.tar.gz |
(sql-default-directory): Fix type annotation.
Diffstat (limited to 'lisp/progmodes/sql.el')
-rw-r--r-- | lisp/progmodes/sql.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index c4baef82e27..4029b2e8d3b 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -285,7 +285,7 @@ file. Since that is a plaintext file, this could be dangerous." (defcustom sql-default-directory nil "Default directory for SQL processes." :version "24.5" - :type 'string + :type '(choice (const nil) string) :group 'SQL :safe 'stringp) |