Update years in copyright notice; nfc.
[bpt/emacs.git] / lisp / pcvs-defs.el
CommitLineData
5b467bf4
SM
1;;; pcvs-defs.el --- variable definitions for PCL-CVS
2
98337d2b 3;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
aaef169d 4;; 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5b467bf4
SM
5
6;; Author: Stefan Monnier <monnier@cs.yale.edu>
7;; Keywords: pcl-cvs
5b467bf4
SM
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
5b467bf4
SM
25
26;;; Commentary:
27
28
29;;; Code:
30
5b467bf4
SM
31(eval-when-compile (require 'cl))
32(require 'pcvs-util)
33
34;;;; -------------------------------------------------------
35;;;; START OF THINGS TO CHECK WHEN INSTALLING
36
37(defvar cvs-program "cvs"
38 "*Name or full path of the cvs executable.")
39
40(defvar cvs-version
c6ea7612
SM
41 ;; With the divergence of the CVSNT codebase and version numbers, this is
42 ;; not really good any more.
5b467bf4
SM
43 (ignore-errors
44 (with-temp-buffer
6cfbaf46 45 (call-process cvs-program nil t nil "-v")
5b467bf4 46 (goto-char (point-min))
c6ea7612
SM
47 (when (re-search-forward "(CVS\\(NT\\)?) \\([0-9]+\\)\\.\\([0-9]+\\)"
48 nil t)
5b467bf4
SM
49 (cons (string-to-number (match-string 1))
50 (string-to-number (match-string 2))))))
51 "*Version of `cvs' installed on your system.
52It must be in the (MAJOR . MINOR) format.")
53
54;; FIXME: this is only used by cvs-mode-diff-backup
55(defvar cvs-diff-program (or (and (boundp 'diff-command) diff-command) "diff")
56 "*Name or full path of the best diff program you've got.
57NOTE: there are some nasty bugs in the context diff variants of some vendor
58versions, such as the one in SunOS-4.")
59
60;;;; END OF THINGS TO CHECK WHEN INSTALLING
61;;;; --------------------------------------------------------
62
63;;;;
64;;;; User configuration variables:
65;;;;
66;;;; NOTE: these should be set in your ~/.emacs (or site-lisp/default.el) file.
67;;;;
68
69(defgroup pcl-cvs nil
70 "Special support for the CVS versioning system."
f4fbc2ff 71 :version "21.1"
5b467bf4
SM
72 :group 'tools
73 :prefix "cvs-")
74
75;;
76;; cvsrc options
77;;
78
79(defcustom cvs-cvsrc-file "~/.cvsrc"
80 "Path to your cvsrc file."
81 :group 'pcl-cvs
82 :type '(file))
83
84(defvar cvs-shared-start 4
85 "Index of the first shared flag.
86If set to 4, for instance, a numeric argument smaller than 4 will
87select a non-shared flag, while a numeric argument greater than 3
88will select a shared-flag.")
89
90(defvar cvs-shared-flags (make-list cvs-shared-start nil)
91 "List of flags whose settings is shared among several commands.")
92
93(defvar cvs-cvsroot nil
94 "*Specifies where the (current) cvs master repository is.
95Overrides the environment variable $CVSROOT by sending \" -d dir\" to
96all CVS commands. This switch is useful if you have multiple CVS
97repositories. It can be set interactively with \\[cvs-change-cvsroot.]
98There is no need to set this if $CVSROOT is set to a correct value.")
99
100(defcustom cvs-auto-remove-handled nil
101 "*If up-to-date files should be acknowledged automatically.
102If T, they will be removed from the *cvs* buffer after every command.
103If DELAYED, they will be removed from the *cvs* buffer before every command.
104If STATUS, they will only be removed after a `cvs-mode-status' command.
105Else, they will never be automatically removed from the *cvs* buffer."
106 :group 'pcl-cvs
107 :type '(choice (const nil) (const status) (const delayed) (const t)))
108
109(defcustom cvs-auto-remove-directories 'handled
110 "*If ALL, directory entries will never be shown.
7980ab49 111If HANDLED, only non-handled directories will be shown.
5b467bf4
SM
112If EMPTY, only non-empty directories will be shown."
113 :group 'pcl-cvs
114 :type '(choice (const :tag "No" nil) (const all) (const handled) (const empty)))
115
116(defcustom cvs-auto-revert t
117 "*Non-nil if changed files should automatically be reverted."
118 :group 'pcl-cvs
119 :type '(boolean))
120
121(defcustom cvs-sort-ignore-file t
122 "*Non-nil if `cvs-mode-ignore' should sort the .cvsignore automatically."
123 :group 'pcl-cvs
124 :type '(boolean))
125
126(defcustom cvs-force-dir-tag t
127 "*If non-nil, tagging can only be applied to directories.
128Tagging should generally be applied a directory at a time, but sometimes it is
129useful to be able to tag a single file. The normal way to do that is to use
130`cvs-mode-force-command' so as to temporarily override the restrictions,"
131 :group 'pcl-cvs
132 :type '(boolean))
133
134(defcustom cvs-default-ignore-marks nil
135 "*Non-nil if cvs mode commands should ignore any marked files.
136Normally they run on the files that are marked (with `cvs-mode-mark'),
137or the file under the cursor if no files are marked. If this variable
138is set to a non-nil value they will by default run on the file on the
2c0ec709 139current line. See also `cvs-invert-ignore-marks'"
5b467bf4
SM
140 :group 'pcl-cvs
141 :type '(boolean))
142
17874c4e
JB
143(defvar cvs-diff-ignore-marks t)
144(make-obsolete-variable 'cvs-diff-ignore-marks
145 'cvs-invert-ignore-marks)
5b467bf4
SM
146
147(defcustom cvs-invert-ignore-marks
148 (let ((l ()))
149 (unless (equal cvs-diff-ignore-marks cvs-default-ignore-marks)
150 (push "diff" l))
151 (when (and cvs-force-dir-tag (not cvs-default-ignore-marks))
152 (push "tag" l))
153 l)
154 "*List of cvs commands that invert the default ignore-mark behavior.
155Commands in this set will use the opposite default from the one set
156in `cvs-default-ignore-marks'."
157 :group 'pcl-cvs
158 :type '(set (const "diff")
159 (const "tag")
160 (const "ignore")))
161
162(defcustom cvs-confirm-removals t
163 "*Ask for confirmation before removing files.
164Non-nil means that PCL-CVS will ask confirmation before removing files
165except for files whose content can readily be recovered from the repository.
138e1bd0 166A value of `list' means that the list of files to be deleted will be
5b467bf4
SM
167displayed when asking for confirmation."
168 :group 'pcl-cvs
169 :type '(choice (const list)
170 (const t)
171 (const nil)))
172
173(defcustom cvs-add-default-message nil
174 "*Default message to use when adding files.
0ff9b955 175If set to nil, `cvs-mode-add' will always prompt for a message."
5b467bf4
SM
176 :group 'pcl-cvs
177 :type '(choice (const :tag "Prompt" nil)
178 (string)))
179
17874c4e
JB
180(defvar cvs-diff-buffer-name "*cvs-diff*")
181(make-obsolete-variable 'cvs-diff-buffer-name
182 'cvs-buffer-name-alist)
5b467bf4 183
2c0ec709 184(defcustom cvs-find-file-and-jump nil
5b467bf4
SM
185 "Jump to the modified area when finding a file.
186If non-nil, `cvs-mode-file-file' will place the cursor at the beginning of
187the modified area. If the file is not locally modified, this will obviously
188have no effect."
189 :group 'pcl-cvs
190 :type '(boolean))
191
192(defcustom cvs-buffer-name-alist
193 '(("diff" cvs-diff-buffer-name diff-mode)
194 ("status" "*cvs-info*" cvs-status-mode)
619d6bfc 195 ("tree" "*cvs-info*" cvs-status-mode)
5b467bf4
SM
196 ("message" "*cvs-commit*" nil log-edit)
197 ("log" "*cvs-info*" log-view-mode))
198 "*Buffer name and mode to be used for each command.
199This is a list of elements of the form
200
201 (CMD BUFNAME MODE &optional POSTPROC)
202
203CMD is the name of the command.
204BUFNAME is an expression that should evaluate to a string used as
205 a buffer name. It can use the variable CMD if it wants to.
206MODE is the command to use to setup the buffer.
207POSTPROC is a function that should be executed when the command terminates
208
209The CMD used for `cvs-mode-commit' is \"message\". For that special
210 case, POSTPROC is called just after MODE with special arguments."
211 :group 'pcl-cvs
212 :type '(repeat
213 (list (choice (const "diff")
214 (const "status")
215 (const "tree")
216 (const "message")
217 (const "log")
218 (string))
219 (choice (const "*vc-diff*")
220 (const "*cvs-info*")
221 (const "*cvs-commit*")
222 (const (expand-file-name "*cvs-commit*"))
223 (const (format "*cvs-%s*" cmd))
224 (const (expand-file-name (format "*cvs-%s*" cmd)))
225 (sexp :value "my-cvs-info-buffer")
226 (const nil))
227 (choice (function-item diff-mode)
228 (function-item cvs-edit-mode)
229 (function-item cvs-status-mode)
230 function
231 (const nil))
232 (set :inline t
233 (choice (function-item cvs-status-cvstrees)
234 (function-item cvs-status-trees)
235 function)))))
236
237(defvar cvs-buffer-name '(expand-file-name "*cvs*" dir) ;; "*cvs*"
238 "Name of the cvs buffer.
239This expression will be evaluated in an environment where DIR is set to
240the directory name of the cvs buffer.")
241
242(defvar cvs-temp-buffer-name '(expand-file-name " *cvs-tmp*" dir)
243 "*Name of the cvs temporary buffer.
244Output from cvs is placed here for asynchronous commands.")
245
246(defcustom cvs-idiff-imerge-handlers
247 (if (fboundp 'ediff)
248 '(cvs-ediff-diff . cvs-ediff-merge)
249 '(cvs-emerge-diff . cvs-emerge-merge))
250 "*Pair of functions to be used for resp. diff'ing and merg'ing interactively."
251 :group 'pcl-cvs
252 :type '(choice (const :tag "Ediff" (cvs-ediff-diff . cvs-ediff-merge))
253 (const :tag "Emerge" (cvs-emerge-diff . cvs-emerge-merge))))
254
5b467bf4
SM
255(defvar cvs-mode-hook nil
256 "Run after `cvs-mode' was setup.")
257
258\f
259;;;;
260;;;; Internal variables, used in the process buffer.
261;;;;
262
263(defvar cvs-postprocess nil
264 "(Buffer local) what to do once the process exits.")
265
266;;;;
267;;;; Internal variables for the *cvs* buffer.
268;;;;
269
270(defcustom cvs-reuse-cvs-buffer 'subdir
271 "When to reuse an existing cvs buffer.
272Alternatives are:
273 CURRENT: just reuse the current buffer if it is a cvs buffer
274 SAMEDIR: reuse any cvs buffer displaying the same directory
275 SUBDIR: or reuse any cvs buffer displaying any sub- or super- directory
276 ALWAYS: reuse any cvs buffer."
277 :group 'pcl-cvs
278 :type '(choice (const always) (const subdir) (const samedir) (const current)))
279
280(defvar cvs-temp-buffer nil
281 "(Buffer local) The temporary buffer associated with this *cvs* buffer.")
282
283(defvar cvs-lock-file nil
284 "Full path to a lock file that CVS is waiting for (or was waiting for).
285This variable is buffer local and only used in the *cvs* buffer.")
286
287(defvar cvs-lock-file-regexp "^#cvs\\.\\([trw]fl\\.[-.a-z0-9]+\\|lock\\)\\'"
288 "Regexp matching the possible names of locks in the CVS repository.")
289
290(defconst cvs-cursor-column 22
291 "Column to position cursor in in `cvs-mode'.")
292
293;;;;
294;;;; Global internal variables
295;;;;
296
5b467bf4
SM
297(defconst cvs-vendor-branch "1.1.1"
298 "The default branch used by CVS for vendor code.")
299
5b467bf4 300(easy-mmode-defmap cvs-mode-diff-map
4f5a9d2b
SM
301 '(("E" "imerge" . cvs-mode-imerge)
302 ("=" . cvs-mode-diff)
303 ("e" "idiff" . cvs-mode-idiff)
304 ("2" "other" . cvs-mode-idiff-other)
305 ("d" "diff" . cvs-mode-diff)
306 ("b" "backup" . cvs-mode-diff-backup)
307 ("h" "head" . cvs-mode-diff-head)
a4bdfaf9 308 ("r" "repository" . cvs-mode-diff-repository)
34ffe043 309 ("y" "yesterday" . cvs-mode-diff-yesterday)
4f5a9d2b
SM
310 ("v" "vendor" . cvs-mode-diff-vendor))
311 "Keymap for diff-related operations in `cvs-mode'."
312 :name "Diff")
ef55aa6c 313;; This is necessary to allow correct handling of \\[cvs-mode-diff-map]
2c0ec709
SM
314;; in substitute-command-keys.
315(fset 'cvs-mode-diff-map cvs-mode-diff-map)
5b467bf4
SM
316
317(easy-mmode-defmap cvs-mode-map
318 ;;(define-prefix-command 'cvs-mode-map-diff-prefix)
319 ;;(define-prefix-command 'cvs-mode-map-control-c-prefix)
fa443ddf 320 '(;; simulate `suppress-keymap'
5b467bf4
SM
321 (self-insert-command . undefined)
322 (("0" "1" "2" "3" "4" "5" "6" "7" "8" "9") . digit-argument)
323 ("-" . negative-argument)
324 ;; various
fa443ddf 325 ;; (undo . cvs-mode-undo)
5b467bf4
SM
326 ("?" . cvs-help)
327 ("h" . cvs-help)
328 ("q" . cvs-bury-buffer)
ef55aa6c 329 ("z" . kill-this-buffer)
5b467bf4 330 ("F" . cvs-mode-set-flags)
213a58ae 331 ;; ("\M-f" . cvs-mode-force-command)
7980ab49 332 ("!" . cvs-mode-force-command)
5b467bf4
SM
333 ("\C-c\C-c" . cvs-mode-kill-process)
334 ;; marking
335 ("m" . cvs-mode-mark)
336 ("M" . cvs-mode-mark-all-files)
28037ecf 337 ("S" . cvs-mode-mark-on-state)
5b467bf4
SM
338 ("u" . cvs-mode-unmark)
339 ("\C-?". cvs-mode-unmark-up)
340 ("%" . cvs-mode-mark-matching-files)
341 ("T" . cvs-mode-toggle-marks)
342 ("\M-\C-?" . cvs-mode-unmark-all-files)
343 ;; navigation keys
344 (" " . cvs-mode-next-line)
345 ("n" . cvs-mode-next-line)
346 ("p" . cvs-mode-previous-line)
347 ;; M- keys are usually those that operate on modules
348 ;;("\M-C". cvs-mode-rcs2log) ; i.e. "Create a ChangeLog"
349 ;;("\M-t". cvs-rtag)
350 ;;("\M-l". cvs-rlog)
351 ("\M-c". cvs-checkout)
352 ("\M-e". cvs-examine)
353 ("g" . cvs-mode-revert-buffer)
354 ("\M-u". cvs-update)
355 ("\M-s". cvs-status)
356 ;; diff commands
357 ("=" . cvs-mode-diff)
2c0ec709 358 ("d" . cvs-mode-diff-map)
5b467bf4 359 ;; keys that operate on individual files
02f7be41 360 ("\C-k" . cvs-mode-acknowledge)
5b467bf4
SM
361 ("A" . cvs-mode-add-change-log-entry-other-window)
362 ;;("B" . cvs-mode-byte-compile-files)
363 ("C" . cvs-mode-commit-setup)
364 ("O" . cvs-mode-update)
365 ("U" . cvs-mode-undo)
366 ("I" . cvs-mode-insert)
367 ("a" . cvs-mode-add)
368 ("b" . cvs-set-branch-prefix)
369 ("B" . cvs-set-secondary-branch-prefix)
370 ("c" . cvs-mode-commit)
371 ("e" . cvs-mode-examine)
372 ("f" . cvs-mode-find-file)
02f7be41 373 ("\C-m" . cvs-mode-find-file)
5b467bf4
SM
374 ("i" . cvs-mode-ignore)
375 ("l" . cvs-mode-log)
376 ("o" . cvs-mode-find-file-other-window)
377 ("r" . cvs-mode-remove)
378 ("s" . cvs-mode-status)
379 ("t" . cvs-mode-tag)
9d2475ef 380 ("v" . cvs-mode-view-file)
5b467bf4
SM
381 ("x" . cvs-mode-remove-handled)
382 ;; cvstree bindings
383 ("+" . cvs-mode-tree)
384 ;; mouse bindings
2c0ec709 385 ([mouse-2] . cvs-mode-find-file)
d086b1a2 386 ([follow-link] . (lambda (pos)
94d5c876 387 (if (eq (get-char-property pos 'face) 'cvs-filename) t)))
5b467bf4 388 ([(down-mouse-3)] . cvs-menu)
28037ecf
SM
389 ;; dired-like bindings
390 ("\C-o" . cvs-mode-display-file)
5b467bf4
SM
391 ;; Emacs-21 toolbar
392 ;;([tool-bar item1] . (menu-item "Examine" cvs-examine :image (image :file "/usr/share/icons/xpaint.xpm" :type xpm)))
393 ;;([tool-bar item2] . (menu-item "Update" cvs-update :image (image :file "/usr/share/icons/mail1.xpm" :type xpm)))
394 )
395 "Keymap for `cvs-mode'."
396 :dense t)
397
398(fset 'cvs-mode-map cvs-mode-map)
399
8e41e2e5
SM
400(easy-menu-define cvs-menu cvs-mode-map "Menu used in `cvs-mode'."
401 '("CVS"
402 ["Open file.." cvs-mode-find-file t]
403 [" ..other window" cvs-mode-find-file-other-window t]
28037ecf 404 ["Display in other window" cvs-mode-display-file t]
8e41e2e5
SM
405 ["Interactive merge" cvs-mode-imerge t]
406 ("View diff"
407 ["Interactive diff" cvs-mode-idiff t]
408 ["Current diff" cvs-mode-diff t]
409 ["Diff with head" cvs-mode-diff-head t]
410 ["Diff with vendor" cvs-mode-diff-vendor t]
411 ["Diff with backup" cvs-mode-diff-backup t])
412 ["View log" cvs-mode-log t]
413 ["View status" cvs-mode-status t]
414 ["View tag tree" cvs-mode-tree t]
415 "----"
416 ["Insert" cvs-mode-insert]
417 ["Update" cvs-mode-update (cvs-enabledp 'update)]
418 ["Re-examine" cvs-mode-examine t]
419 ["Commit" cvs-mode-commit-setup (cvs-enabledp 'commit)]
5fe50228 420 ["Tag" cvs-mode-tag (cvs-enabledp (when cvs-force-dir-tag 'tag))]
8e41e2e5
SM
421 ["Undo changes" cvs-mode-undo (cvs-enabledp 'undo)]
422 ["Add" cvs-mode-add (cvs-enabledp 'add)]
423 ["Remove" cvs-mode-remove (cvs-enabledp 'remove)]
424 ["Ignore" cvs-mode-ignore (cvs-enabledp 'ignore)]
425 ["Add ChangeLog" cvs-mode-add-change-log-entry-other-window t]
426 "----"
c224c19a 427 ["Mark" cvs-mode-mark t]
8e41e2e5 428 ["Mark all" cvs-mode-mark-all-files t]
28037ecf
SM
429 ["Mark by regexp..." cvs-mode-mark-matching-files t]
430 ["Mark by state..." cvs-mode-mark-on-state t]
c224c19a 431 ["Unmark" cvs-mode-unmark t]
8e41e2e5
SM
432 ["Unmark all" cvs-mode-unmark-all-files t]
433 ["Hide handled" cvs-mode-remove-handled t]
434 "----"
435 ["Quit" cvs-mode-quit t]))
5b467bf4 436
ef55aa6c 437;;;;
5b467bf4 438;;;; CVS-Minor mode
ef55aa6c 439;;;;
5b467bf4
SM
440
441(defcustom cvs-minor-mode-prefix "\C-xc"
442 "Prefix key for the `cvs-mode' bindings in `cvs-minor-mode'."
443 :group 'pcl-cvs)
444
445(easy-mmode-defmap cvs-minor-mode-map
213a58ae
SM
446 `((,cvs-minor-mode-prefix . cvs-mode-map)
447 ("e" . (menu-item nil cvs-mode-edit-log
448 :filter (lambda (x) (if (derived-mode-p 'log-view-mode) x)))))
4f5a9d2b 449 "Keymap for `cvs-minor-mode', used in buffers related to PCL-CVS.")
5b467bf4
SM
450
451(defvar cvs-buffer nil
452 "(Buffer local) The *cvs* buffer associated with this buffer.")
453(put 'cvs-buffer 'permanent-local t)
454;;(make-variable-buffer-local 'cvs-buffer)
455
456(defvar cvs-minor-wrap-function nil
457 "Function to call when switching to the *cvs* buffer.
458Takes two arguments:
459- a *cvs* buffer.
460- a zero-arg function which is guaranteed not to switch buffer.
461It is expected to call the function.")
462;;(make-variable-buffer-local 'cvs-minor-wrap-function)
463
464(defvar cvs-minor-current-files)
465;;"Current files in a `cvs-minor-mode' buffer."
466;; This should stay `void' because we want to be able to tell the difference
467;; between an empty list and no list at all.
468
469(defconst cvs-pcl-cvs-dirchange-re "^pcl-cvs: descending directory \\(.*\\)$")
470
ef55aa6c 471;;;;
cb3430a1 472;;;; autoload the global menu
ef55aa6c 473;;;;
5b467bf4 474
cb3430a1
SM
475;;;###autoload
476(defvar cvs-global-menu
477 (let ((m (make-sparse-keymap "PCL-CVS")))
478 (define-key m [status]
479 '(menu-item "Directory Status" cvs-status
480 :help "A more verbose status of a workarea"))
481 (define-key m [checkout]
482 '(menu-item "Checkout Module" cvs-checkout
483 :help "Check out a module from the repository"))
484 (define-key m [update]
485 '(menu-item "Update Directory" cvs-update
486 :help "Fetch updates from the repository"))
487 (define-key m [examine]
488 '(menu-item "Examine Directory" cvs-examine
489 :help "Examine the current state of a workarea"))
648a3c0c 490 (fset 'cvs-global-menu m)))
5b467bf4
SM
491
492
493;; cvs-1.10 and above can take file arguments in other directories
494;; while others need to be executed once per directory
495(defvar cvs-execute-single-dir
c6ea7612
SM
496 (if (or (null cvs-version)
497 (or (>= (cdr cvs-version) 10) (> (car cvs-version) 1)))
498 ;; Supposedly some recent versions of CVS output some directory info
499 ;; as they recurse downthe tree, but it's not good enough in the case
500 ;; where we run "cvs status foo bar/foo".
5b467bf4
SM
501 '("status")
502 t)
503 "Whether cvs commands should be executed a directory at a time.
504If a list, specifies for which commands the single-dir mode should be used.
505If T, single-dir mode should be used for all operations.
506
507CVS versions before 1.10 did not allow passing them arguments in different
508directories, so pcl-cvs checks what version you're using to determine
509whether to use the new feature or not.
510Sadly, even with a new cvs executable, if you connect to an older cvs server
511\(typically a cvs-1.9 on the server), the old restriction applies. In such
512a case the sanity check made by pcl-cvs fails and you will have to manually
0ff9b955 513set this variable to t (until the cvs server is upgraded).
5b467bf4 514When the above problem occurs, pcl-cvs should (hopefully) catch cvs' error
c6ea7612 515message and replace it with a message telling you to change this variable.")
5b467bf4
SM
516
517;;
518(provide 'pcvs-defs)
519
98337d2b 520;; arch-tag: c7c701d0-d1d4-4aa9-a302-007bb03aca5e
3afbc435 521;;; pcvs-defs.el ends here