emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp vc-sccs.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp vc-sccs.el
Date: Wed, 03 Dec 2008 07:40:54 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       08/12/03 07:40:54

Modified files:
        lisp           : vc-sccs.el 

Log message:
        (vc-sccs-diff-switches): Doc fix.  Add t as option.
        (vc-sccs-register-switches): Remove leading * from doc.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/vc-sccs.el?cvsroot=emacs&r1=1.59&r2=1.60

Patches:
Index: vc-sccs.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc-sccs.el,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -b -r1.59 -r1.60
--- vc-sccs.el  3 Dec 2008 05:48:34 -0000       1.59
+++ vc-sccs.el  3 Dec 2008 07:40:53 -0000       1.60
@@ -45,7 +45,7 @@
 ;;   :group 'vc)
 
 (defcustom vc-sccs-register-switches nil
-  "*Extra switches for registering a file in SCCS.
+  "Extra switches for registering a file in SCCS.
 A string or list of strings passed to the checkin program by
 \\[vc-sccs-register]."
   :type '(choice (const :tag "None" nil)
@@ -57,13 +57,12 @@
   :group 'vc)
 
 (defcustom vc-sccs-diff-switches nil
-  "A string or list of strings specifying extra switches for `vcdiff',
-the diff utility used for SCCS under VC."
-    :type '(choice (const :tag "None" nil)
+  "String or list of strings specifying switches for SCCS diff under VC.
+If nil, use the value of `vc-diff-switches'.  If t, use no switches."
+  :type '(choice (const :tag "Unspecified" nil)
+                (const :tag "None" t)
                 (string :tag "Argument String")
-                (repeat :tag "Argument List"
-                        :value ("")
-                        string))
+                (repeat :tag "Argument List" :value ("") string))
   :version "21.1"
   :group 'vc)
 
@@ -199,6 +198,7 @@
   ;; SCCS is totally file-oriented, so all we have to do is make the directory
   (make-directory "SCCS"))
 
+;; FIXME doc is wrong re switches.
 (defun vc-sccs-register (files &optional rev comment)
   "Register FILES into the SCCS version-control system.
 REV is the optional revision number for the file.  COMMENT can be used




reply via email to

[Prev in Thread] Current Thread [Next in Thread]