emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117850: (sql-default-directory): Fix type annotatio


From: Sam Steingold
Subject: [Emacs-diffs] trunk r117850: (sql-default-directory): Fix type annotation.
Date: Tue, 09 Sep 2014 20:39:37 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117850
revision-id: address@hidden
parent: address@hidden
committer: Sam Steingold <address@hidden>
branch nick: trunk
timestamp: Tue 2014-09-09 16:39:31 -0400
message:
  (sql-default-directory): Fix type annotation.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/sql.el          sql.el-20091113204419-o5vbwnq5f7feedwu-1303
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-09-09 15:08:08 +0000
+++ b/lisp/ChangeLog    2014-09-09 20:39:31 +0000
@@ -1,3 +1,7 @@
+2014-09-09  Sam Steingold  <address@hidden>
+
+       * progmodes/sql.el (sql-default-directory): Fix type annotation.
+
 2014-09-09  Stefan Monnier  <address@hidden>
 
        * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.

=== modified file 'lisp/progmodes/sql.el'
--- a/lisp/progmodes/sql.el     2014-09-08 13:57:19 +0000
+++ b/lisp/progmodes/sql.el     2014-09-09 20:39:31 +0000
@@ -285,7 +285,7 @@
 (defcustom sql-default-directory nil
   "Default directory for SQL processes."
   :version "24.5"
-  :type 'string
+  :type '(choice (const nil) string)
   :group 'SQL
   :safe 'stringp)
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]