comparison lisp/ediff.el @ 64215:a4c59075cac8

* viper-cmd.el (viper--key-maps): new variable. (viper-normalize-minor-mode-map-alist): use viper--key-maps and emulation-mode-map-alists. (viper-envelop-ESC-key): use viper-subseq. (viper-search-forward/backward/next): disable debug-on-error. * viper-keym.el (viper-toggle-key,viper-quoted-insert-key, viper-ESC-key): new defcustoms. * viper-macs.el (ex-map-read-args): use viper-subseq. * viper-util.el (viper-key-to-emacs-key): use viper-subseq. (viper-subseq): copy of subseq from cl.el. * viper.el (viper-go-away,viper-set-hooks): use emulation-mode-map-alists, advise self-insert-command, add-minor-mode. * viper-mous.el (viper-current-frame-saved): use defvar. * viper-init.el: got rid of -face in face names. * ediff-diff.el (ediff-extract-diffs,ediff-extract-diffs3): Make it work with longlines mode * ediff-mult.el (ediff-meta-mode-hook): new variable. * ediff-ptch.el (ediff-file-name-sans-prefix): quote regexp. * ediff-init: got rid of -face in face names.
author Michael Kifer <kifer@cs.stonybrook.edu>
date Sun, 10 Jul 2005 18:46:24 +0000
parents 6fb026ad601f
children 2273b7101b27 fbb2bea03df9
comparison
equal deleted inserted replaced
64214:0441edbff1bf 64215:a4c59075cac8
5 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu> 5 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
6 ;; Created: February 2, 1994 6 ;; Created: February 2, 1994
7 ;; Keywords: comparing, merging, patching, tools, unix 7 ;; Keywords: comparing, merging, patching, tools, unix
8 8
9 (defconst ediff-version "2.80" "The current version of Ediff") 9 (defconst ediff-version "2.80" "The current version of Ediff")
10 (defconst ediff-date "June 3, 2005" "Date of last update") 10 (defconst ediff-date "July 8, 2005" "Date of last update")
11 11
12 12
13 ;; This file is part of GNU Emacs. 13 ;; This file is part of GNU Emacs.
14 14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify 15 ;; GNU Emacs is free software; you can redistribute it and/or modify
1524 "^There is no file to merge$" 1524 "^There is no file to merge$"
1525 "^Version control package .*.el not found. Use vc.el instead$")) 1525 "^Version control package .*.el not found. Use vc.el instead$"))
1526 (add-to-list 'debug-ignored-errors mess)) 1526 (add-to-list 'debug-ignored-errors mess))
1527 1527
1528 1528
1529 (require 'ediff-util)
1530
1531 (run-hooks 'ediff-load-hook)
1532
1529 ;;; Local Variables: 1533 ;;; Local Variables:
1530 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun) 1534 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
1531 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1) 1535 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
1532 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body)) 1536 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
1533 ;;; End: 1537 ;;; End:
1534 1538
1535 (require 'ediff-util)
1536
1537 (run-hooks 'ediff-load-hook)
1538
1539 ;;; arch-tag: 97c71396-db02-4f41-8b48-6a51c3348fcc 1539 ;;; arch-tag: 97c71396-db02-4f41-8b48-6a51c3348fcc
1540 ;;; ediff.el ends here 1540 ;;; ediff.el ends here