emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/simple.el


From: Chong Yidong
Subject: [Emacs-diffs] Changes to emacs/lisp/simple.el
Date: Tue, 29 Nov 2005 18:54:49 -0500

Index: emacs/lisp/simple.el
diff -c emacs/lisp/simple.el:1.774 emacs/lisp/simple.el:1.775
*** emacs/lisp/simple.el:1.774  Mon Nov 28 19:59:34 2005
--- emacs/lisp/simple.el        Tue Nov 29 23:54:47 2005
***************
*** 3326,3332 ****
          ;; When adding a newline, don't expand an abbrev.
          (let ((abbrev-mode nil))
            (end-of-line)
!           (insert hard-newline))
        (line-move arg nil nil try-vscroll))
      (if (interactive-p)
        (condition-case nil
--- 3326,3332 ----
          ;; When adding a newline, don't expand an abbrev.
          (let ((abbrev-mode nil))
            (end-of-line)
!           (insert (if use-hard-newlines hard-newline "\n")))
        (line-move arg nil nil try-vscroll))
      (if (interactive-p)
        (condition-case nil
***************
*** 4515,4521 ****
        (unless (member-ignore-case (car (car other-headers))
                                    '("in-reply-to" "cc" "body"))
            (insert (car (car other-headers)) ": "
!                   (cdr (car other-headers)) hard-newline))
        (setq other-headers (cdr other-headers)))
        (when body
        (forward-line 1)
--- 4515,4522 ----
        (unless (member-ignore-case (car (car other-headers))
                                    '("in-reply-to" "cc" "body"))
            (insert (car (car other-headers)) ": "
!                   (cdr (car other-headers))
!                   (if use-hard-newlines hard-newline "\n")))
        (setq other-headers (cdr other-headers)))
        (when body
        (forward-line 1)




reply via email to

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