aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/sql.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ca7e1f7a930..12f0f5e3218 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-09-09 Sam Steingold <sds@gnu.org>
2
3 * progmodes/sql.el (sql-default-directory): Fix type annotation.
4
12014-09-09 Stefan Monnier <monnier@iro.umontreal.ca> 52014-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use. 7 * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
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."
285(defcustom sql-default-directory nil 285(defcustom sql-default-directory nil
286 "Default directory for SQL processes." 286 "Default directory for SQL processes."
287 :version "24.5" 287 :version "24.5"
288 :type 'string 288 :type '(choice (const nil) string)
289 :group 'SQL 289 :group 'SQL
290 :safe 'stringp) 290 :safe 'stringp)
291 291