]> git.eshelyaron.com Git - emacs.git/commitdiff
(sql-default-directory): Fix type annotation.
authorSam Steingold <sds@gnu.org>
Tue, 9 Sep 2014 20:39:31 +0000 (16:39 -0400)
committerSam Steingold <sds@gnu.org>
Tue, 9 Sep 2014 20:39:31 +0000 (16:39 -0400)
lisp/ChangeLog
lisp/progmodes/sql.el

index ca7e1f7a930ddc6770424f0c84a4bd53809cd49e..12f0f5e321821291e6af345f0ae4c0268a8cf69f 100644 (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.
index c4baef82e2785e11aa02bf5702ef76d010030780..4029b2e8d3b1caff940dba6d5025b140a87f3b7a 100644 (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)