aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-05-21 05:33:57 +0300
committerEli Zaretskii2018-05-21 05:33:57 +0300
commitb239a096f1a4f8a05db859019a048190ea2f94a0 (patch)
tree98bc8e9a6d4d5b4f0d30bc876377563dfab0f415
parent0d8bae5c5543e67aebc773a114aedb2f215aba73 (diff)
downloademacs-b239a096f1a4f8a05db859019a048190ea2f94a0.tar.gz
emacs-b239a096f1a4f8a05db859019a048190ea2f94a0.zip
Fix a typo in last change in sql.el
* lisp/progmodes/sql.el (sql-product-interactive): Use 'null', not 'zerop'. (Bug#31446)
-rw-r--r--lisp/progmodes/sql.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index d783f6542e6..1b2cdaf5f60 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -4264,7 +4264,7 @@ the call to \\[sql-product-interactive] with
4264 product 4264 product
4265 (sql-get-product-feature product :sqli-options) 4265 (sql-get-product-feature product :sqli-options)
4266 (cond 4266 (cond
4267 ((zerop new-name) 4267 ((null new-name)
4268 "*SQL*") 4268 "*SQL*")
4269 ((stringp new-name) 4269 ((stringp new-name)
4270 (if (string-prefix-p "*SQL: " new-name t) 4270 (if (string-prefix-p "*SQL: " new-name t)