annotate lisp/ediff/ediff-hook.el @ 82:6a378aca36af r20-0b91

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