diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/rect.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 450eac3f48d..c0b50604897 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with | ||
| 4 | different calling convention to rectangle--unhighlight-for-redisplay. | ||
| 5 | |||
| 1 | 2014-07-03 Michael Albinus <michael.albinus@gmx.de> | 6 | 2014-07-03 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/tramp.el (tramp-call-process): Handle error strings. | 8 | * net/tramp.el (tramp-call-process): Handle error strings. |
diff --git a/lisp/rect.el b/lisp/rect.el index ac861a0824b..a2f8e4f6371 100644 --- a/lisp/rect.el +++ b/lisp/rect.el | |||
| @@ -719,7 +719,7 @@ Ignores `line-move-visual'." | |||
| 719 | ((not rectangle-mark-mode) | 719 | ((not rectangle-mark-mode) |
| 720 | (funcall orig start end window rol)) | 720 | (funcall orig start end window rol)) |
| 721 | (rectangle--inhibit-region-highlight | 721 | (rectangle--inhibit-region-highlight |
| 722 | (rectangle--unhighlight-for-redisplay orig rol) | 722 | (funcall redisplay-unhighlight-region-function rol) |
| 723 | nil) | 723 | nil) |
| 724 | ((and (eq 'rectangle (car-safe rol)) | 724 | ((and (eq 'rectangle (car-safe rol)) |
| 725 | (eq (nth 1 rol) (buffer-chars-modified-tick)) | 725 | (eq (nth 1 rol) (buffer-chars-modified-tick)) |