diff options
| author | Martin Rudalics | 2012-06-01 15:44:48 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2012-06-01 15:44:48 +0200 |
| commit | bd56924f27bc0d56a21664fdb8a954e97842a270 (patch) | |
| tree | 2dd5a18db881c0a2117aafd365d5178c08ef2515 | |
| parent | 046e38ce2b6f4ae94251f480184b1a36243dd62d (diff) | |
| download | emacs-bd56924f27bc0d56a21664fdb8a954e97842a270.tar.gz emacs-bd56924f27bc0d56a21664fdb8a954e97842a270.zip | |
Remove obsolete binding in choose-completion.
* simple.el (choose-completion): Remove now obsolete binding for
owindow.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb7aaf44ead..dafccbc8573 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-06-01 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * simple.el (choose-completion): Remove now obsolete binding for | ||
| 4 | owindow. | ||
| 5 | |||
| 1 | 2012-06-01 Michael Albinus <michael.albinus@gmx.de> | 6 | 2012-06-01 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/tramp.el (tramp-check-for-regexp): Search from buffer end, | 8 | * net/tramp.el (tramp-check-for-regexp): Search from buffer end, |
diff --git a/lisp/simple.el b/lisp/simple.el index 113bebc76ce..561d3656eb7 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -6198,8 +6198,7 @@ With prefix argument N, move N items (negative N means move backward)." | |||
| 6198 | (setq beg (previous-single-property-change beg 'mouse-face)) | 6198 | (setq beg (previous-single-property-change beg 'mouse-face)) |
| 6199 | (setq end (or (next-single-property-change end 'mouse-face) | 6199 | (setq end (or (next-single-property-change end 'mouse-face) |
| 6200 | (point-max))) | 6200 | (point-max))) |
| 6201 | (buffer-substring-no-properties beg end)))) | 6201 | (buffer-substring-no-properties beg end))))) |
| 6202 | (owindow (selected-window))) | ||
| 6203 | 6202 | ||
| 6204 | (unless (buffer-live-p buffer) | 6203 | (unless (buffer-live-p buffer) |
| 6205 | (error "Destination buffer is dead")) | 6204 | (error "Destination buffer is dead")) |