comparison lisp/replace.el @ 658:7cbd4fcd8b0f

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 21:11:25 +0000
parents 133f1a8cc567
children a8d94735277e
comparison
equal deleted inserted replaced
657:fec3f9a1e3e5 658:7cbd4fcd8b0f
1 ;; Replace commands for Emacs. 1 ;;; replace.el --- replace commands for Emacs.
2
2 ;; Copyright (C) 1985-1991 Free Software Foundation, Inc. 3 ;; Copyright (C) 1985-1991 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
529 (setq replacements (append replacements (list to-strings)) 530 (setq replacements (append replacements (list to-strings))
530 to-strings "")))) 531 to-strings ""))))
531 (perform-replace regexp replacements t t nil arg)) 532 (perform-replace regexp replacements t t nil arg))
532 (message "Done")) 533 (message "Done"))
533 534
535 ;;; replace.el ends here