Changeset 4166 for trunk/lisp/pcvs-defs.el
- Timestamp:
- 09/18/06 20:48:14 (2 years ago)
- Files:
-
- trunk/lisp/pcvs-defs.el (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/pcvs-defs.el
r4111 r4166 99 99 100 100 (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. 102 102 If T, they will be removed from the *cvs* buffer after every command. 103 103 If DELAYED, they will be removed from the *cvs* buffer before every command. … … 108 108 109 109 (defcustom cvs-auto-remove-directories 'handled 110 " *If ALL, directory entries will never be shown.110 "If ALL, directory entries will never be shown. 111 111 If HANDLED, only non-handled directories will be shown. 112 112 If EMPTY, only non-empty directories will be shown." … … 115 115 116 116 (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." 118 118 :group 'pcl-cvs 119 119 :type '(boolean)) 120 120 121 121 (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." 123 123 :group 'pcl-cvs 124 124 :type '(boolean)) 125 125 126 126 (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. 128 128 Tagging should generally be applied a directory at a time, but sometimes it is 129 129 useful to be able to tag a single file. The normal way to do that is to use … … 133 133 134 134 (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. 136 136 Normally they run on the files that are marked (with `cvs-mode-mark'), 137 137 or the file under the cursor if no files are marked. If this variable … … 152 152 (push "tag" l)) 153 153 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. 155 155 Commands in this set will use the opposite default from the one set 156 156 in `cvs-default-ignore-marks'." … … 161 161 162 162 (defcustom cvs-confirm-removals t 163 " *Ask for confirmation before removing files.163 "Ask for confirmation before removing files. 164 164 Non-nil means that PCL-CVS will ask confirmation before removing files 165 165 except for files whose content can readily be recovered from the repository. … … 172 172 173 173 (defcustom cvs-add-default-message nil 174 " *Default message to use when adding files.174 "Default message to use when adding files. 175 175 If set to nil, `cvs-mode-add' will always prompt for a message." 176 176 :group 'pcl-cvs … … 196 196 ("message" "*cvs-commit*" nil log-edit) 197 197 ("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. 199 199 This is a list of elements of the form 200 200 … … 251 251 '(cvs-ediff-diff . cvs-ediff-merge) 252 252 '(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." 254 254 :group 'pcl-cvs 255 255 :type '(choice (const :tag "Ediff" (cvs-ediff-diff . cvs-ediff-merge))
