diff options
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | lisp/emulation/cua-base.el | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 21df22350de..f45cc865e3a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2007-10-06 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * textmodes/fill.el (fill-paragraph-or-region): New function. | ||
| 4 | |||
| 5 | * bindings.el (esc-map): Bind M-q to fill-paragraph-or-region | ||
| 6 | instead of fill-paragraph. | ||
| 7 | |||
| 8 | * tutorial.el (tutorial--default-keys): Replace fill-paragraph | ||
| 9 | with fill-paragraph-or-region. Suspend command is now the same | ||
| 10 | `suspend-frame' on window systems and on tty. | ||
| 11 | |||
| 12 | * image.el (image-type): Check if image-types is bound to not fail | ||
| 13 | on tty. | ||
| 14 | |||
| 15 | * delsel.el (delete-selection-pre-hook): | ||
| 16 | * emulation/cua-base.el (cua-paste): Check if mouse-region-match | ||
| 17 | is fbound to not fail on mouseless tty. | ||
| 18 | |||
| 1 | 2007-10-06 Michael Albinus <michael.albinus@gmx.de> | 19 | 2007-10-06 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 20 | ||
| 3 | * net/tramp.el (top): Move loading of tramp-util.el and | 21 | * net/tramp.el (top): Move loading of tramp-util.el and |
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 5e18953752a..fbb39ee66d3 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el | |||
| @@ -911,6 +911,7 @@ If global mark is active, copy from register or one character." | |||
| 911 | ;; That would make yank a no-op. | 911 | ;; That would make yank a no-op. |
| 912 | (if (and (string= (filter-buffer-substring (point) (mark)) | 912 | (if (and (string= (filter-buffer-substring (point) (mark)) |
| 913 | (car kill-ring)) | 913 | (car kill-ring)) |
| 914 | (fboundp 'mouse-region-match) | ||
| 914 | (mouse-region-match)) | 915 | (mouse-region-match)) |
| 915 | (current-kill 1)) | 916 | (current-kill 1)) |
| 916 | (cua-delete-region))) | 917 | (cua-delete-region))) |