# HG changeset patch # User Glenn Morris # Date 1228289960 0 # Node ID 0cc235691369372f97bd520b3dc7ffb1ad5f5b25 # Parent 880b72ca5f064746d076d45056a48d6b3638feda (vc-rcs-diff-switches): Doc fix. Add t as option. diff -r 880b72ca5f06 -r 0cc235691369 lisp/vc-rcs.el --- a/lisp/vc-rcs.el Wed Dec 03 07:38:45 2008 +0000 +++ b/lisp/vc-rcs.el Wed Dec 03 07:39:20 2008 +0000 @@ -1,13 +1,12 @@ ;;; vc-rcs.el --- support for RCS version-control ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +;; Free Software Foundation, Inc. ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel -;; $Id$ - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify @@ -58,12 +57,12 @@ :group 'vc) (defcustom vc-rcs-diff-switches nil - "A string or list of strings specifying extra switches for rcsdiff under VC." - :type '(choice (const :tag "None" nil) + "String or list of strings specifying switches for RCS 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) @@ -266,6 +265,7 @@ ;; RCS is totally file-oriented, so all we have to do is make the directory (make-directory "RCS")) +;; FIXME doc is wrong re switches. (defun vc-rcs-register (files &optional rev comment) "Register FILES into the RCS version-control system. REV is the optional revision number for the files. COMMENT can be used