diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/replace.el | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4ed8a4c18dc..790867a36b5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-01-12 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * replace.el (perform-replace): Don't clear NODENT when computing | ||
| 4 | the replacement string. | ||
| 5 | |||
| 1 | 2007-01-11 Michael Albinus <michael.albinus@gmx.de> | 6 | 2007-01-11 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/tramp.el (tramp-handle-file-local-copy): Set | 8 | * net/tramp.el (tramp-handle-file-local-copy): Set |
diff --git a/lisp/replace.el b/lisp/replace.el index c51985c3e4a..0e1435824e1 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -1406,6 +1406,8 @@ make, or the user didn't cancel the call." | |||
| 1406 | (search-string from-string) | 1406 | (search-string from-string) |
| 1407 | (real-match-data nil) ; the match data for the current match | 1407 | (real-match-data nil) ; the match data for the current match |
| 1408 | (next-replacement nil) | 1408 | (next-replacement nil) |
| 1409 | ;; This is non-nil if we know there is nothing for the user | ||
| 1410 | ;; to edit in the replacement. | ||
| 1409 | (noedit nil) | 1411 | (noedit nil) |
| 1410 | (keep-going t) | 1412 | (keep-going t) |
| 1411 | (stack nil) | 1413 | (stack nil) |
| @@ -1517,8 +1519,7 @@ make, or the user didn't cancel the call." | |||
| 1517 | (set-match-data real-match-data) | 1519 | (set-match-data real-match-data) |
| 1518 | (setq next-replacement | 1520 | (setq next-replacement |
| 1519 | (funcall (car replacements) (cdr replacements) | 1521 | (funcall (car replacements) (cdr replacements) |
| 1520 | replace-count) | 1522 | replace-count) nil)) |
| 1521 | noedit nil)) | ||
| 1522 | (if (not query-flag) | 1523 | (if (not query-flag) |
| 1523 | (let ((inhibit-read-only | 1524 | (let ((inhibit-read-only |
| 1524 | query-replace-skip-read-only)) | 1525 | query-replace-skip-read-only)) |