(sql-default-directory): Fix type annotation.

This commit is contained in:
Sam Steingold 2014-09-09 16:39:31 -04:00
parent 8fe73251b1
commit c98d0ea461
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2014-09-09 Sam Steingold <sds@gnu.org>
* progmodes/sql.el (sql-default-directory): Fix type annotation.
2014-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.

View file

@ -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)