annotate lisp/ediff/ediff-hook.el @ 78:c7528f8e288d r20-0b34

Import from CVS: tag r20-0b34
author cvs
date Mon, 13 Aug 2007 09:05:42 +0200
parents 131b0175ea99
children 1ce6082ce73f
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
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
3 ;; Copyright (C) 1995, 1996 Free Software Foundation, Inc.
0
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
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
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
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
45 ;; (add-menu-button
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
46 ;; '("Tools")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
47 ;; ["Use separate frame for Ediff control buffer"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
48 ;; ediff-toggle-multiframe
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
49 ;; :style toggle
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
50 ;; :selected (eq ediff-window-setup-function 'ediff-setup-windows-multiframe)]
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
51 ;; "00-Browser...")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
52 ;; (add-menu-button
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
53 ;; '("Tools")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
54 ;; ["Use a toolbar with Ediff control buffer"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
55 ;; ediff-menu-toggle-use-toolbar
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
56 ;; :style toggle
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
57 ;; :selected (ediff-use-toolbar-p)]
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
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
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
66 '("Tools") "-------" "OO-Browser...")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 )))
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 ;; 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
71 (cond ((string-match "XEmacs" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (defvar ediff-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 '("Compare"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ["Two Files..." ediff-files t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ["Two Buffers..." ediff-buffers t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ["Three Files..." ediff-files3 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ["Three Buffers..." ediff-buffers3 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ["Two Directories..." ediff-directories t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ["Three Directories..." ediff-directories3 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ["File with Revision..." ediff-revision t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ["Directory Revisions..." ediff-directory-revisions t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ["Windows Word-by-word..." ediff-windows-wordwise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ["Windows Line-by-line..." ediff-windows-linewise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ["Regions Word-by-word..." ediff-regions-wordwise t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ["Regions Line-by-line..." ediff-regions-linewise t]
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
90 "---"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
91 ["List Ediff Sessions..." ediff-show-registry t]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
92 ["Ediff Manual..." ediff-documentation t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (defvar ediff-merge-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 '("Merge"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ["Files..." ediff-merge-files t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ["Files with Ancestor..." ediff-merge-files-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ["Buffers..." ediff-merge-buffers t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 ["Buffers with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ediff-merge-buffers-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ["Directories..." ediff-merge-directories t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ["Directories with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ediff-merge-directories-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 ["Revisions..." ediff-merge-revisions t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ["Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ediff-merge-revisions-with-ancestor t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ["Directory Revisions..." ediff-merge-directory-revisions t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ["Directory Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ediff-merge-directory-revisions-with-ancestor t]
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
112 "---"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
113 ["List Ediff Sessions..." ediff-show-registry t]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
114 ["Ediff Manual..." ediff-documentation t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (defvar epatch-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 '("Apply Patch"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 ["To a file..." ediff-patch-file t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 ["To a buffer..." ediff-patch-buffer t]
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
120 "---"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 ["List Ediff Sessions..." ediff-show-registry t]
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
122 ["Ediff Manual..." ediff-documentation t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;; put these menus before Object-Oriented-Browser in Tools menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (add-hook 'before-init-hook 'ediff-xemacs-init-menus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (if (not purify-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (ediff-xemacs-init-menus))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 ;; Emacs--only if menu-bar is loaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 ((featurep 'menu-bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 ;; initialize menu bar keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (defvar menu-bar-epatch-menu (make-sparse-keymap "Apply Patch"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (fset 'menu-bar-epatch-menu (symbol-value 'menu-bar-epatch-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (defvar menu-bar-ediff-merge-menu (make-sparse-keymap "Merge"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (fset 'menu-bar-ediff-merge-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (symbol-value 'menu-bar-ediff-merge-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (defvar menu-bar-ediff-menu (make-sparse-keymap "Compare"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (fset 'menu-bar-ediff-menu (symbol-value 'menu-bar-ediff-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ;; define ediff-menu
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
143 (define-key menu-bar-ediff-menu [ediff-doc]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
144 '("Ediff Manual..." . ediff-documentation))
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
145 (define-key menu-bar-ediff-menu [emultiframe]
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
146 '("Toggle separate control buffer frame..."
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
147 . ediff-toggle-multiframe))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
148 (define-key menu-bar-ediff-menu [eregistry]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
149 '("List Ediff Sessions..." . ediff-show-registry))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
150 (define-key menu-bar-ediff-menu [separator-ediff-manual] '("--"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (define-key menu-bar-ediff-menu [window]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 '("This Window and Next Window" . compare-windows))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (define-key menu-bar-ediff-menu [ediff-windows-linewise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 '("Windows Line-by-line..." . ediff-windows-linewise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (define-key menu-bar-ediff-menu [ediff-windows-wordwise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 '("Windows Word-by-word..." . ediff-windows-wordwise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (define-key menu-bar-ediff-menu [separator-ediff-windows] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (define-key menu-bar-ediff-menu [ediff-regions-linewise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 '("Regions Line-by-line..." . ediff-regions-linewise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (define-key menu-bar-ediff-menu [ediff-regions-wordwise]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 '("Regions Word-by-word..." . ediff-regions-wordwise))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (define-key menu-bar-ediff-menu [separator-ediff-regions] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (define-key menu-bar-ediff-menu [ediff-dir-revision]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 '("Directory Revisions..." . ediff-directory-revisions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (define-key menu-bar-ediff-menu [ediff-revision]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 '("File with Revision..." . ediff-revision))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (define-key menu-bar-ediff-menu [separator-ediff-directories] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (define-key menu-bar-ediff-menu [ediff-directories3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 '("Three Directories..." . ediff-directories3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (define-key menu-bar-ediff-menu [ediff-directories]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 '("Two Directories..." . ediff-directories))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (define-key menu-bar-ediff-menu [separator-ediff-files] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (define-key menu-bar-ediff-menu [ediff-buffers3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 '("Three Buffers..." . ediff-buffers3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (define-key menu-bar-ediff-menu [ediff-files3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 '("Three Files..." . ediff-files3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (define-key menu-bar-ediff-menu [ediff-buffers]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 '("Two Buffers..." . ediff-buffers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (define-key menu-bar-ediff-menu [ediff-files]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 '("Two Files..." . ediff-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ;; define merge menu
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
183 (define-key menu-bar-ediff-merge-menu [ediff-doc2]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
184 '("Ediff Manual..." . ediff-documentation))
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
185 (define-key menu-bar-ediff-merge-menu [emultiframe2]
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
186 '("Toggle separate control buffer frame..."
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
187 . ediff-toggle-multiframe))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
188 (define-key menu-bar-ediff-merge-menu [eregistry2]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
189 '("List Ediff Sessions..." . ediff-show-registry))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
190 (define-key
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
191 menu-bar-ediff-merge-menu [separator-ediff-merge-manual] '("--"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 menu-bar-ediff-merge-menu [ediff-merge-dir-revisions-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 '("Directory Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 . ediff-merge-directory-revisions-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 menu-bar-ediff-merge-menu [ediff-merge-dir-revisions]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 '("Directory Revisions..." . ediff-merge-directory-revisions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 menu-bar-ediff-merge-menu [ediff-merge-revisions-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 '("Revisions with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 . ediff-merge-revisions-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 '("Revisions..." . ediff-merge-revisions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (define-key menu-bar-ediff-merge-menu [separator-ediff-merge] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 menu-bar-ediff-merge-menu [ediff-merge-directories-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 '("Directories with Ancestor..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 . ediff-merge-directories-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (define-key menu-bar-ediff-merge-menu [ediff-merge-directories]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 '("Directories..." . ediff-merge-directories))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 menu-bar-ediff-merge-menu [separator-ediff-merge-dirs] '("--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (define-key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 menu-bar-ediff-merge-menu [ediff-merge-buffers-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 '("Buffers with Ancestor..." . ediff-merge-buffers-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 '("Buffers..." . ediff-merge-buffers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (define-key menu-bar-ediff-merge-menu [ediff-merge-files-with-ancestor]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 '("Files with Ancestor..." . ediff-merge-files-with-ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (define-key menu-bar-ediff-merge-menu [ediff-merge-files]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 '("Files..." . ediff-merge-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ;; define epatch menu
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
225 (define-key menu-bar-epatch-menu [ediff-doc3]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
226 '("Ediff Manual..." . ediff-documentation))
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
227 (define-key menu-bar-epatch-menu [emultiframe3]
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
228 '("Toggle separate control buffer frame..."
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
229 . ediff-toggle-multiframe))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
230 (define-key menu-bar-epatch-menu [eregistry3]
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
231 '("List Ediff Sessions..." . ediff-show-registry))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
232 (define-key menu-bar-epatch-menu [separator-epatch] '("--"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (define-key menu-bar-epatch-menu [ediff-patch-buffer]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 '("To a Buffer..." . ediff-patch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (define-key menu-bar-epatch-menu [ediff-patch-file]
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
236 '("To a File..." . ediff-patch-file)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ) ; cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 ;; arrange for autoloads
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (if purify-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 () ; if dumping, autoloads are set up in loaddefs.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 ;; if the user decides to load this file, set up autoloads
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 ;; compare files and buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (autoload 'ediff "ediff" "Compare two files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (autoload 'ediff-files "ediff" "Compare two files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (autoload 'ediff-buffers "ediff" "Compare two bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (autoload 'ebuffers "ediff" "Compare two bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (autoload 'ediff3 "ediff" "Compare three files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (autoload 'ediff-files3 "ediff" "Compare three files" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (autoload 'ediff-buffers3 "ediff" "Compare three bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (autoload 'ebuffers3 "ediff" "Compare three bufers" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (autoload 'ediff-revision "ediff" "Compare versions of a file" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ;; compare regions and windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (autoload 'ediff-windows-wordwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 "ediff" "Compare two windows word-by-word." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (autoload 'ediff-regions-wordwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 "ediff" "Compare two regions word-by-word." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (autoload 'ediff-windows-linewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 "ediff" "Compare two windows line-by-line." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (autoload 'ediff-regions-linewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 "ediff" "Compare two regions line-by-line." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 ;; patch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (autoload 'ediff-patch-file "ediff" "Patch a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (autoload 'epatch "ediff" "Patch a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (autoload 'ediff-patch-buffer "ediff" "Patch a buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (autoload 'epatch-buffer "ediff" "Patch a buffer." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 ;; merge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (autoload 'ediff-merge "ediff" "Merge two files." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (autoload 'ediff-merge-files "ediff" "Merge two files." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (autoload 'ediff-merge-files-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 "ediff" "Merge two files using a third file as an ancestor." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (autoload 'ediff-merge-buffers "ediff" "Merge two buffers." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (autoload 'ediff-merge-buffers-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 "ediff" "Merge two buffers using a third buffer as an ancestor." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (autoload 'ediff-merge-revisions "ediff" "Merge two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (autoload 'ediff-merge-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 "ediff" "Merge two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 ;; compare directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (autoload 'edirs "ediff" "Compare files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (autoload 'ediff-directories "ediff" "Compare files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (autoload 'edirs3 "ediff" "Compare files in three directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 'ediff-directories3 "ediff" "Compare files in three directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (autoload 'edir-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 "ediff" "Compare two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (autoload 'ediff-directory-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 "ediff" "Compare two versions of a file." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 ;; merge directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (autoload 'edirs-merge "ediff" "Merge files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (autoload 'ediff-merge-directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 "ediff" "Merge files in two directories." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (autoload 'edirs-merge-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 "Merge files in two directories using files in a third dir as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (autoload 'ediff-merge-directories-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 "Merge files in two directories using files in a third dir as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (autoload 'edir-merge-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 "ediff" "Merge versions of files in a directory." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (autoload 'ediff-merge-directory-revisions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 "ediff" "Merge versions of files in a directory." t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (autoload 'ediff-merge-directory-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 "Merge versions of files in a directory using other versions as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (autoload 'edir-merge-revisions-with-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 "Merge versions of files in a directory using other versions as ancestors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ;; misc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (autoload 'ediff-show-registry
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
325 "ediff-mult"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 "Display the registry of active Ediff sessions."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (autoload 'ediff-documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 "Display Ediff's manual."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (autoload 'ediff-version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 "ediff"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 "Show Ediff's version and last modification date."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 t)
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
336 (autoload 'ediff-toggle-multiframe
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
337 "ediff-util"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
338 "Toggle the use of separate frame for Ediff control buffer."
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
339 t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
340 ;;(if (string-match "XEmacs" emacs-version)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
341 ;; (autoload 'ediff-toggle-use-toolbar
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
342 ;; "ediff-tbar"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
343 ;; "Toggle the use of Ediff toolbar."
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
344 ;; t))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ) ; if purify-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 (provide 'ediff-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 ;;; ediff-hook.el ends here