Index: emacs/lisp/progmodes/sql.el
diff -c emacs/lisp/progmodes/sql.el:1.44 emacs/lisp/progmodes/sql.el:1.45
*** emacs/lisp/progmodes/sql.el:1.44    Tue Jun 14 12:03:52 2005
--- emacs/lisp/progmodes/sql.el Mon Jul  4 03:25:26 2005
***************
*** 221,227 ****
  ;;; Allow customization
  
  (defgroup SQL nil
!   "Running a SQL interpreter from within Emacs buffers"
    :version "20.4"
    :group 'processes)
  
--- 221,227 ----
  ;;; Allow customization
  
  (defgroup SQL nil
!   "Running a SQL interpreter from within Emacs buffers."
    :version "20.4"
    :group 'processes)
  
***************
*** 2077,2083 ****
          (insert ", "))
         ;; else insert a space
         (t
!         (if (eq (preceding-char) ? )
              nil
            (insert " ")))))
        ;; in any case, insert the column
--- 2077,2083 ----
          (insert ", "))
         ;; else insert a space
         (t
!         (if (eq (preceding-char) ?\s)
              nil
            (insert " ")))))
        ;; in any case, insert the column


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to