diff options
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2a2d58f51f4..7e003dfb970 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,8 +1,13 @@ | |||
| 1 | 2007-03-30 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * simple.el (blink-matching-open): When in minibuffer, don't | ||
| 4 | search for a match inside the prompt. | ||
| 5 | |||
| 1 | 2007-03-30 Nick Roberts <nickrob@snap.net.nz> | 6 | 2007-03-30 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 7 | ||
| 3 | * tmm.el (tmm-menubar): Select the right menu item with the mouse. | 8 | * tmm.el (tmm-menubar): Select the right menu item with the mouse. |
| 4 | (tmm-prompt): Don't make the mouse user select the first menu item | 9 | (tmm-prompt): Don't make the mouse user select the first menu |
| 5 | twice. | 10 | item twice. |
| 6 | 11 | ||
| 7 | 2007-03-30 Chong Yidong <cyd@stupidchicken.com> | 12 | 2007-03-30 Chong Yidong <cyd@stupidchicken.com> |
| 8 | 13 | ||
diff --git a/lisp/simple.el b/lisp/simple.el index 5dbc6d1a10b..bec0d9ed5f3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4478,7 +4478,7 @@ it skips the contents of comments that end before point." | |||
| 4478 | (save-excursion | 4478 | (save-excursion |
| 4479 | (save-restriction | 4479 | (save-restriction |
| 4480 | (if blink-matching-paren-distance | 4480 | (if blink-matching-paren-distance |
| 4481 | (narrow-to-region (max (point-min) | 4481 | (narrow-to-region (max (minibuffer-prompt-end) |
| 4482 | (- (point) blink-matching-paren-distance)) | 4482 | (- (point) blink-matching-paren-distance)) |
| 4483 | oldpos)) | 4483 | oldpos)) |
| 4484 | (condition-case () | 4484 | (condition-case () |