Show
Ignore:
Timestamp:
09/18/06 20:48:14 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/pcvs-defs.el

    r4111 r4166  
    9999 
    100100(defcustom cvs-auto-remove-handled nil 
    101   "*If up-to-date files should be acknowledged automatically. 
     101  "If up-to-date files should be acknowledged automatically. 
    102102If T, they will be removed from the *cvs* buffer after every command. 
    103103If DELAYED, they will be removed from the *cvs* buffer before every command. 
     
    108108 
    109109(defcustom cvs-auto-remove-directories 'handled 
    110   "*If ALL, directory entries will never be shown. 
     110  "If ALL, directory entries will never be shown. 
    111111If HANDLED, only non-handled directories will be shown. 
    112112If EMPTY, only non-empty directories will be shown." 
     
    115115 
    116116(defcustom cvs-auto-revert t 
    117   "*Non-nil if changed files should automatically be reverted." 
     117  "Non-nil if changed files should automatically be reverted." 
    118118  :group 'pcl-cvs 
    119119  :type '(boolean)) 
    120120 
    121121(defcustom cvs-sort-ignore-file t 
    122   "*Non-nil if `cvs-mode-ignore' should sort the .cvsignore automatically." 
     122  "Non-nil if `cvs-mode-ignore' should sort the .cvsignore automatically." 
    123123  :group 'pcl-cvs 
    124124  :type '(boolean)) 
    125125 
    126126(defcustom cvs-force-dir-tag t 
    127   "*If non-nil, tagging can only be applied to directories. 
     127  "If non-nil, tagging can only be applied to directories. 
    128128Tagging should generally be applied a directory at a time, but sometimes it is 
    129129useful to be able to tag a single file.  The normal way to do that is to use 
     
    133133 
    134134(defcustom cvs-default-ignore-marks nil 
    135   "*Non-nil if cvs mode commands should ignore any marked files. 
     135  "Non-nil if cvs mode commands should ignore any marked files. 
    136136Normally they run on the files that are marked (with `cvs-mode-mark'), 
    137137or the file under the cursor if no files are marked.  If this variable 
     
    152152      (push "tag" l)) 
    153153    l) 
    154   "*List of cvs commands that invert the default ignore-mark behavior. 
     154  "List of cvs commands that invert the default ignore-mark behavior. 
    155155Commands in this set will use the opposite default from the one set 
    156156in `cvs-default-ignore-marks'." 
     
    161161 
    162162(defcustom cvs-confirm-removals t 
    163   "*Ask for confirmation before removing files. 
     163  "Ask for confirmation before removing files. 
    164164Non-nil means that PCL-CVS will ask confirmation before removing files 
    165165except for files whose content can readily be recovered from the repository. 
     
    172172 
    173173(defcustom cvs-add-default-message nil 
    174   "*Default message to use when adding files. 
     174  "Default message to use when adding files. 
    175175If set to nil, `cvs-mode-add' will always prompt for a message." 
    176176  :group 'pcl-cvs 
     
    196196    ("message" "*cvs-commit*" nil log-edit) 
    197197    ("log" "*cvs-info*" log-view-mode)) 
    198   "*Buffer name and mode to be used for each command. 
     198  "Buffer name and mode to be used for each command. 
    199199This is a list of elements of the form 
    200200 
     
    251251      '(cvs-ediff-diff . cvs-ediff-merge) 
    252252    '(cvs-emerge-diff . cvs-emerge-merge)) 
    253   "*Pair of functions to be used for resp.  diff'ing and merg'ing interactively." 
     253  "Pair of functions to be used for resp.  diff'ing and merg'ing interactively." 
    254254  :group 'pcl-cvs 
    255255  :type '(choice (const :tag "Ediff" (cvs-ediff-diff . cvs-ediff-merge))