Restore accidental change to insert-register

This commit is contained in:
Leo Liu 2011-07-09 11:11:57 +08:00
parent 2a71c436d0
commit 2d43b8c971
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-07-09 Leo Liu <sdl.web@gmail.com>
* register.el (insert-register): Restore accidental change on
2011-06-26. (Bug#9028)
2011-07-09 Glenn Morris <rgm@gnu.org>
* subr.el (remq): Handle the empty list. (Bug#9024)

View file

@ -329,6 +329,8 @@ Interactively, second arg is non-nil if prefix arg is supplied."
"Don't know how to insert register %s"
(single-key-description register))
(funcall (registerv-insert-func val) (registerv-data val)))
((consp val)
(insert-rectangle val))
((stringp val)
(insert-for-yank val))
((numberp val)