diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/image.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d29bc3e95d6..07a0dfa7c2a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * image.el (put-image): Return the overlay created instead of the | ||
| 4 | optional input string (bug#7834). Note that this may break code | ||
| 5 | that is (for some reason or other) depending on `put-image' | ||
| 6 | returning the string. | ||
| 7 | |||
| 3 | * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174). | 8 | * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174). |
| 4 | 9 | ||
| 5 | * simple.el (zap-to-char): Allow zapping using input methods | 10 | * simple.el (zap-to-char): Allow zapping using input methods |
diff --git a/lisp/image.el b/lisp/image.el index be1b1ef8f48..b094f2464ec 100644 --- a/lisp/image.el +++ b/lisp/image.el | |||
| @@ -412,7 +412,8 @@ means display it in the right marginal area." | |||
| 412 | (prop (if (null area) image (list (list 'margin area) image)))) | 412 | (prop (if (null area) image (list (list 'margin area) image)))) |
| 413 | (put-text-property 0 (length string) 'display prop string) | 413 | (put-text-property 0 (length string) 'display prop string) |
| 414 | (overlay-put overlay 'put-image t) | 414 | (overlay-put overlay 'put-image t) |
| 415 | (overlay-put overlay 'before-string string)))) | 415 | (overlay-put overlay 'before-string string) |
| 416 | overlay))) | ||
| 416 | 417 | ||
| 417 | 418 | ||
| 418 | ;;;###autoload | 419 | ;;;###autoload |