Variable: cvs-global-menu

cvs-global-menu is a variable defined in pcvs-defs.el.gz.

Value


Documentation

Global menu used by PCL-CVS.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/pcvs-defs.el.gz
;;;;
;;;; autoload the global menu
;;;;

;;;###autoload
(defvar cvs-global-menu
  (let ((m (make-sparse-keymap "PCL-CVS")))
    (define-key m [status]
      '(menu-item "Directory Status" cvs-status
                  :help "A more verbose status of a workarea"))
    (define-key m [checkout]
      '(menu-item "Checkout Module" cvs-checkout
                  :help "Check out a module from the repository"))
    (define-key m [update]
      '(menu-item "Update Directory" cvs-update
                  :help "Fetch updates from the repository"))
    (define-key m [examine]
      '(menu-item "Examine Directory" cvs-examine
                  :help "Examine the current state of a workarea"))
    (fset 'cvs-global-menu m))
  "Global menu used by PCL-CVS.")