* lisp/simple.el (open-line): `newline' may strip trailing space.
This commit is contained in:
parent
f3bb9e16c9
commit
c156a63bb3
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* simple.el (open-line): `newline' may strip trailing space.
|
||||
|
||||
2010-11-12 Kevin Ryde <user42@zip.com.au>
|
||||
|
||||
* international/mule-cmds.el (princ-list): Use mapc.
|
||||
|
|
|
@ -512,7 +512,7 @@ With arg N, insert N newlines."
|
|||
(interactive "*p")
|
||||
(let* ((do-fill-prefix (and fill-prefix (bolp)))
|
||||
(do-left-margin (and (bolp) (> (current-left-margin) 0)))
|
||||
(loc (point))
|
||||
(loc (point-marker))
|
||||
;; Don't expand an abbrev before point.
|
||||
(abbrev-mode nil))
|
||||
(newline n)
|
||||
|
|
Loading…
Add table
Reference in a new issue