Fix a typo in last change in sql.el

* lisp/progmodes/sql.el (sql-product-interactive): Use 'null',
not 'zerop'.  (Bug#31446)
This commit is contained in:
Eli Zaretskii 2018-05-21 05:33:57 +03:00
parent 0d8bae5c55
commit b239a096f1

View file

@ -4264,7 +4264,7 @@ the call to \\[sql-product-interactive] with
product
(sql-get-product-feature product :sqli-options)
(cond
((zerop new-name)
((null new-name)
"*SQL*")
((stringp new-name)
(if (string-prefix-p "*SQL: " new-name t)