Mercurial > hg > xemacs-beta
comparison lisp/isearch-mode.el @ 377:d883f39b8495 r21-2b4
Import from CVS: tag r21-2b4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:05:42 +0200 |
parents | a300bb07d72d |
children | bbff43aa5eb7 |
comparison
equal
deleted
inserted
replaced
376:e2295b4d9f2e | 377:d883f39b8495 |
---|---|
458 overriding-local-map isearch-mode-map | 458 overriding-local-map isearch-mode-map |
459 isearch-selected-frame (selected-frame) | 459 isearch-selected-frame (selected-frame) |
460 | 460 |
461 isearch-mode (gettext " Isearch") | 461 isearch-mode (gettext " Isearch") |
462 ) | 462 ) |
463 (let ((map (append (current-minor-mode-maps) | |
464 (list (current-local-map))))) | |
465 (if (keymapp map) | |
466 (set-keymap-parents isearch-mode-map map))) | |
463 | 467 |
464 ;; XEmacs change: without clearing the match data, sometimes old values | 468 ;; XEmacs change: without clearing the match data, sometimes old values |
465 ;; of isearch-other-end get used. Don't ask me why... | 469 ;; of isearch-other-end get used. Don't ask me why... |
466 (store-match-data nil) | 470 (store-match-data nil) |
467 | 471 |