Mercurial > emacs
diff lisp/progmodes/sql.el @ 64052:68f51d595f7f
(SQL): Finish `defgroup' description with period.
(sql-copy-column): "?\ " -> "?\s".
| author | Juanma Barranquero <lekktu@gmail.com> |
|---|---|
| date | Mon, 04 Jul 2005 03:25:26 +0000 |
| parents | 37dd5dc2f5ae |
| children | 18a818a2ee7c |
line wrap: on
line diff
--- a/lisp/progmodes/sql.el Mon Jul 04 03:24:03 2005 +0000 +++ b/lisp/progmodes/sql.el Mon Jul 04 03:25:26 2005 +0000 @@ -221,7 +221,7 @@ ;;; Allow customization (defgroup SQL nil - "Running a SQL interpreter from within Emacs buffers" + "Running a SQL interpreter from within Emacs buffers." :version "20.4" :group 'processes) @@ -2077,7 +2077,7 @@ (insert ", ")) ;; else insert a space (t - (if (eq (preceding-char) ? ) + (if (eq (preceding-char) ?\s) nil (insert " "))))) ;; in any case, insert the column
