emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/textmodes/conf-mode.el


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/conf-mode.el
Date: Wed, 31 Aug 2005 06:25:00 -0400

Index: emacs/lisp/textmodes/conf-mode.el
diff -c emacs/lisp/textmodes/conf-mode.el:1.10 
emacs/lisp/textmodes/conf-mode.el:1.11
*** emacs/lisp/textmodes/conf-mode.el:1.10      Mon Aug 15 01:48:45 2005
--- emacs/lisp/textmodes/conf-mode.el   Wed Aug 31 10:25:00 2005
***************
*** 33,38 ****
--- 33,40 ----
  
  (require 'newcomment)
  
+ (defvar outline-heading-end-regexp)
+ 
  ;; Variables:
  
  (defgroup conf nil
***************
*** 229,243 ****
            (if (>= arg 0)
                (progn
                  (indent-to-column arg)
!                 (or (not conf-assignment-space) (memq (char-before (point)) 
'(?  ?\t)) (insert ? ))
!                 (insert conf-assignment-sign (if (and conf-assignment-space 
(not (eolp))) ?\  "")))
!             (insert (if conf-assignment-space ?\  "") conf-assignment-sign)
              (unless (eolp)
                (indent-to-column (- arg))
!               (or (not conf-assignment-space) (memq (char-before (point)) '(? 
 ?\t)) (insert ? ))))
          (unless (eolp)
            (if (>= (current-column) (abs arg))
!               (insert ? )
              (indent-to-column (abs arg))))))
        (forward-line))))
  
--- 231,245 ----
            (if (>= arg 0)
                (progn
                  (indent-to-column arg)
!                 (or (not conf-assignment-space) (memq (char-before (point)) 
'(?\s ?\t)) (insert ?\s))
!                 (insert conf-assignment-sign (if (and conf-assignment-space 
(not (eolp))) ?\s "")))
!             (insert (if conf-assignment-space ?\s "") conf-assignment-sign)
              (unless (eolp)
                (indent-to-column (- arg))
!               (or (not conf-assignment-space) (memq (char-before (point)) 
'(?\s ?\t)) (insert ?\s))))
          (unless (eolp)
            (if (>= (current-column) (abs arg))
!               (insert ?\s)
              (indent-to-column (abs arg))))))
        (forward-line))))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]