diff options
| author | Sam Steingold | 2014-09-09 16:39:31 -0400 |
|---|---|---|
| committer | Sam Steingold | 2014-09-09 16:39:31 -0400 |
| commit | c98d0ea46197545b899b463c1ba9ff2fea8e8c6e (patch) | |
| tree | ca5e68e7483a993eaa3e37273e3afec2619746e4 /lisp/progmodes/sql.el | |
| parent | 8fe73251b167274c4316e3726b4034dba77a5e88 (diff) | |
| download | emacs-c98d0ea46197545b899b463c1ba9ff2fea8e8c6e.tar.gz emacs-c98d0ea46197545b899b463c1ba9ff2fea8e8c6e.zip | |
(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." | |||
| 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 | ||