diff options
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/allout.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9dcc5fb9ca5..e1bce10b980 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2011-03-16 Ken Manheimer <ken.manheimer@gmail.com> + + * allout.el (allout-yank-processing): Adjust for new rebulleting + regime so bullet being yanked is used without prompting the user + for a choice. + 2011-03-16 Juanma Barranquero <lekktu@gmail.com> * startup.el (command-line): Warn the user that _emacs is deprecated. diff --git a/lisp/allout.el b/lisp/allout.el index 2df606e45c6..3fb8ed7ccd5 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -4599,7 +4599,7 @@ however, are left exactly like normal, non-allout-specific yanks." (if (looking-at " ") (delete-char 1)))) ;; Assert new topic's bullet - minimal effort if unchanged: - (allout-rebullet-heading prefix-bullet)) + (allout-rebullet-heading (string-to-char prefix-bullet))) (exchange-point-and-mark)))) (if rectify-numbering (progn |