diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-25 15:42:35 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-25 15:42:35 +0200 |
commit | 6c7fad4ac48c1f3093438be7037496f8a9357bcd (patch) | |
tree | cd0f9e611971f5d6013976f7f49854d2618dfa27 /lisp | |
parent | c27096296f97c86a05b0ffb099172cefe92b89f7 (diff) | |
download | emacs-6c7fad4ac48c1f3093438be7037496f8a9357bcd.tar.gz emacs-6c7fad4ac48c1f3093438be7037496f8a9357bcd.tar.bz2 emacs-6c7fad4ac48c1f3093438be7037496f8a9357bcd.zip |
Fix defcustom type in sql.el for sql-postgres-login-params
* lisp/progmodes/sql.el (sql-login-params): Fix defcustom type to
match sql-postgres-login-params value.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/sql.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 814a1ad8a3a..c31c5ddd87e 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -342,8 +342,7 @@ file. Since that is a plaintext file, this could be dangerous." (const :format "" :completion) (sexp :tag ":completion") (const :format "" :must-match) - (restricted-sexp - :match-alternatives (listp stringp)))) + (symbol :tag ":must-match"))) (const port))) ;; SQL Product support |