annotate lisp/ediff/ediff-hook.el @ 12:bcdc7deadc19 r19-15b7

Import from CVS: tag r19-15b7
author cvs
date Mon, 13 Aug 2007 08:48:16 +0200
parents 376386a54a3c
children 9ee227acff29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; ediff-hook.el --- setup for Ediff's menus and autoloads
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1995, 1996 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; These must be placed in menu-bar.el in Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; (define-key menu-bar-tools-menu [epatch]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; '("Apply Patch" . menu-bar-epatch-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; (define-key menu-bar-tools-menu [ediff-merge]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; '("Merge" . menu-bar-ediff-merge-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; (define-key menu-bar-tools-menu [ediff]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; '("Compare" . menu-bar-ediff-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; Compiler pacifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (defvar ediff-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (defvar ediff-merge-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (defvar epatch-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; end pacifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
41
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (defun ediff-xemacs-init-menus ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (if (featurep 'menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (progn
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
45 ;; (add-menu-button
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
46 ;; '("Tools")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
47 ;; ["Use separate frame for Ediff control buffer"
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
48 ;; ediff-toggle-multiframe
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
49 ;; :style toggle
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
50 ;; :selected (eq ediff-window-setup-function 'ediff-setup-windows-multiframe)]
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
51 ;; "00-Browser...")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
52 ;; (add-menu-button
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
53 ;; '("Tools")
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
54 ;; ["Use a toolbar with Ediff control buffer"
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
55 ;; ediff-menu-toggle-use-toolbar
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
56 ;; :style toggle
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
57 ;; :selected (ediff-use-toolbar-p)]
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
58 ;; "00-Browser...")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (add-submenu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 '("Tools") ediff-menu "OO-Browser...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (add-submenu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 '("Tools") ediff-merge-menu "OO-Browser...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (add-submenu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 '("Tools") epatch-menu "OO-Browser...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (add-menu-button
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 '("Tools")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ["-------" nil nil] "OO-Browser...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; explicit string-match is needed: ediff-xemacs-p is not defined at build time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (cond ((string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar ediff-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 '("Compare"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ["Two Files..." ediff-files t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ["Two Buffers..." ediff-buffers t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ["Three Files..." ediff-files3 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ["Three Buffers..." ediff-buffers3 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ["Two Directories..." ediff-directories t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ["Three Directories..." ediff-directories3 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ["File with Revision..." ediff-revision t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ["Directory Revisions..." ediff-directory-revisions t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ["Windows Word-by-word..." ediff-windows-wordwise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ["Windows Line-by-line..." ediff-windows-linewise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ["Regions Word-by-word..." ediff-regions-wordwise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ["Regions Line-by-line..." ediff-regions-linewise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ["List Ediff Sessions..." ediff-show-registry t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ["Ediff Manual..." ediff-documentation t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (defvar ediff-merge-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 '("Merge"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ["Files..." ediff-merge-files t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ["Files with Ancestor..." ediff-merge-files-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 ["Buffers..." ediff-merge-buffers t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ["Buffers with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 ediff-merge-buffers-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ["Directories..." ediff-merge-directories t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ["Directories with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ediff-merge-directories-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ["Revisions..." ediff-merge-revisions t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ["Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ediff-merge-revisions-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ["Directory Revisions..." ediff-merge-directory-revisions t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ["Directory Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 ediff-merge-directory-revisions-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ["List Ediff Sessions..." ediff-show-registry t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ["Ediff Manual..." ediff-documentation t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (defvar epatch-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 '("Apply Patch"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 ["To a file..." ediff-patch-file t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 ["To a buffer..." ediff-patch-buffer t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 ["List Ediff Sessions..." ediff-show-registry t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 ["Ediff Manual..." ediff-documentation t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ;; put these menus before Object-Oriented-Browser in Tools menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (add-hook 'before-init-hook 'ediff-xemacs-init-menus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (if (not purify-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (ediff-xemacs-init-menus))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 ;; Emacs--only if menu-bar is loaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 ((featurep 'menu-bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 ;; initialize menu bar keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (defvar menu-bar-epatch-menu (make-sparse-keymap "Apply Patch"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (fset 'menu-bar-epatch-menu (symbol-value 'menu-bar-epatch-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (defvar menu-bar-ediff-merge-menu (make-sparse-keymap "Merge"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (fset 'menu-bar-ediff-merge-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (symbol-value 'menu-bar-ediff-merge-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (defvar menu-bar-ediff-menu (make-sparse-keymap "Compare"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (fset 'menu-bar-ediff-menu (symbol-value 'menu-bar-ediff-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 ;; define ediff-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (define-key menu-bar-ediff-menu [ediff-doc]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 '("Ediff Manual..." . ediff-documentation))
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
146 (define-key menu-bar-ediff-menu [emultiframe]
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
147 '("Toggle separate control buffer frame..."
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
148 . ediff-toggle-multiframe))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (define-key menu-bar-ediff-menu [eregistry]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 '("List Ediff Sessions..." . ediff-show-registry))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (define-key menu-bar-ediff-menu [separator-ediff-manual] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (define-key menu-bar-ediff-menu [window]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 '("This Window and Next Window" . compare-windows))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (define-key menu-bar-ediff-menu [ediff-windows-linewise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 '("Windows Line-by-line..." . ediff-windows-linewise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (define-key menu-bar-ediff-menu [ediff-windows-wordwise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 '("Windows Word-by-word..." . ediff-windows-wordwise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (define-key menu-bar-ediff-menu [separator-ediff-windows] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (define-key menu-bar-ediff-menu [ediff-regions-linewise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 '("Regions Line-by-line..." . ediff-regions-linewise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (define-key menu-bar-ediff-menu [ediff-regions-wordwise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 '("Regions Word-by-word..." . ediff-regions-wordwise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (define-key menu-bar-ediff-menu [separator-ediff-regions] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (define-key menu-bar-ediff-menu [ediff-dir-revision]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 '("Directory Revisions..." . ediff-directory-revisions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (define-key menu-bar-ediff-menu [ediff-revision]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 '("File with Revision..." . ediff-revision))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (define-key menu-bar-ediff-menu [separator-ediff-directories] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (define-key menu-bar-ediff-menu [ediff-directories3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 '("Three Directories..." . ediff-directories3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (define-key menu-bar-ediff-menu [ediff-directories]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 '("Two Directories..." . ediff-directories))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (define-key menu-bar-ediff-menu [separator-ediff-files] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (define-key menu-bar-ediff-menu [ediff-buffers3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 '("Three Buffers..." . ediff-buffers3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (define-key menu-bar-ediff-menu [ediff-files3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 '("Three Files..." . ediff-files3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (define-key menu-bar-ediff-menu [ediff-buffers]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 '("Two Buffers..." . ediff-buffers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (define-key menu-bar-ediff-menu [ediff-files]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 '("Two Files..." . ediff-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ;; define merge menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (define-key menu-bar-ediff-merge-menu [ediff-doc2]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 '("Ediff Manual..." . ediff-documentation))
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
186 (define-key menu-bar-ediff-merge-menu [emultiframe2]
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
187 '("Toggle separate control buffer frame..."
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
188 . ediff-toggle-multiframe))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (define-key menu-bar-ediff-merge-menu [eregistry2]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 '("List Ediff Sessions..." . ediff-show-registry))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 menu-bar-ediff-merge-menu [separator-ediff-merge-manual] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 menu-bar-ediff-merge-menu [ediff-merge-dir-revisions-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 '("Directory Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 . ediff-merge-directory-revisions-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 menu-bar-ediff-merge-menu [ediff-merge-dir-revisions]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 '("Directory Revisions..." . ediff-merge-directory-revisions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 menu-bar-ediff-merge-menu [ediff-merge-revisions-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 '("Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 . ediff-merge-revisions-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 '("Revisions..." . ediff-merge-revisions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (define-key menu-bar-ediff-merge-menu [separator-ediff-merge] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 menu-bar-ediff-merge-menu [ediff-merge-directories-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 '("Directories with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 . ediff-merge-directories-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (define-key menu-bar-ediff-merge-menu [ediff-merge-directories]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 '("Directories..." . ediff-merge-directories))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 menu-bar-ediff-merge-menu [separator-ediff-merge-dirs] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 menu-bar-ediff-merge-menu [ediff-merge-buffers-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 '("Buffers with Ancestor..." . ediff-merge-buffers-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 '("Buffers..." . ediff-merge-buffers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (define-key menu-bar-ediff-merge-menu [ediff-merge-files-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 '("Files with Ancestor..." . ediff-merge-files-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (define-key menu-bar-ediff-merge-menu [ediff-merge-files]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 '("Files..." . ediff-merge-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 ;; define epatch menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (define-key menu-bar-epatch-menu [ediff-doc3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 '("Ediff Manual..." . ediff-documentation))
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
228 (define-key menu-bar-epatch-menu [emultiframe3]
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
229 '("Toggle separate control buffer frame..."
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
230 . ediff-toggle-multiframe))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (define-key menu-bar-epatch-menu [eregistry3]
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
232 '("List Ediff Sessions..." . ediff-show-registry))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (define-key menu-bar-epatch-menu [separator-epatch] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (define-key menu-bar-epatch-menu [ediff-patch-buffer]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 '("To a Buffer..." . ediff-patch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (define-key menu-bar-epatch-menu [ediff-patch-file]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 '("To a File..." . ediff-patch-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ) ; cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 ;; arrange for autoloads
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (if purify-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 () ; if dumping, autoloads are set up in loaddefs.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 ;; if the user decides to load this file, set up autoloads
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 ;; compare files and buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (autoload 'ediff "ediff" "Compare two files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (autoload 'ediff-files "ediff" "Compare two files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (autoload 'ediff-buffers "ediff" "Compare two bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (autoload 'ebuffers "ediff" "Compare two bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (autoload 'ediff3 "ediff" "Compare three files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (autoload 'ediff-files3 "ediff" "Compare three files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (autoload 'ediff-buffers3 "ediff" "Compare three bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (autoload 'ebuffers3 "ediff" "Compare three bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (autoload 'ediff-revision "ediff" "Compare versions of a file" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; compare regions and windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (autoload 'ediff-windows-wordwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 "ediff" "Compare two windows word-by-word." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (autoload 'ediff-regions-wordwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 "ediff" "Compare two regions word-by-word." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (autoload 'ediff-windows-linewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 "ediff" "Compare two windows line-by-line." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (autoload 'ediff-regions-linewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 "ediff" "Compare two regions line-by-line." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;; patch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (autoload 'ediff-patch-file "ediff" "Patch a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (autoload 'epatch "ediff" "Patch a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (autoload 'ediff-patch-buffer "ediff" "Patch a buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (autoload 'epatch-buffer "ediff" "Patch a buffer." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 ;; merge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (autoload 'ediff-merge "ediff" "Merge two files." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (autoload 'ediff-merge-files "ediff" "Merge two files." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (autoload 'ediff-merge-files-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 "ediff" "Merge two files using a third file as an ancestor." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (autoload 'ediff-merge-buffers "ediff" "Merge two buffers." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (autoload 'ediff-merge-buffers-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 "ediff" "Merge two buffers using a third buffer as an ancestor." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (autoload 'ediff-merge-revisions "ediff" "Merge two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (autoload 'ediff-merge-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 "ediff" "Merge two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 ;; compare directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (autoload 'edirs "ediff" "Compare files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (autoload 'ediff-directories "ediff" "Compare files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (autoload 'edirs3 "ediff" "Compare files in three directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 'ediff-directories3 "ediff" "Compare files in three directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (autoload 'edir-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 "ediff" "Compare two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (autoload 'ediff-directory-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 "ediff" "Compare two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 ;; merge directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (autoload 'edirs-merge "ediff" "Merge files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (autoload 'ediff-merge-directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 "ediff" "Merge files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (autoload 'edirs-merge-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 "Merge files in two directories using files in a third dir as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (autoload 'ediff-merge-directories-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 "Merge files in two directories using files in a third dir as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (autoload 'edir-merge-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 "ediff" "Merge versions of files in a directory." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (autoload 'ediff-merge-directory-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 "ediff" "Merge versions of files in a directory." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (autoload 'ediff-merge-directory-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 "Merge versions of files in a directory using other versions as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (autoload 'edir-merge-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 "Merge versions of files in a directory using other versions as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 ;; misc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (autoload 'ediff-show-registry
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
326 "ediff-mult"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 "Display the registry of active Ediff sessions."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (autoload 'ediff-documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 "Display Ediff's manual."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (autoload 'ediff-version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 "Show Ediff's version and last modification date."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 t)
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
337 (autoload 'ediff-toggle-multiframe
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
338 "ediff-util"
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
339 "Toggle the use of separate frame for Ediff control buffer."
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
340 t)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
341 ;;(if (string-match "XEmacs" emacs-version)
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
342 ;; (autoload 'ediff-toggle-use-toolbar
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
343 ;; "ediff-tbar"
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
344 ;; "Toggle the use of Ediff toolbar."
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 0
diff changeset
345 ;; t))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 ) ; if purify-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (provide 'ediff-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 ;;; ediff-hook.el ends here