diff options
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/vc-rcs.el | 10 | ||||
-rw-r--r-- | lisp/vc-sccs.el | 4 | ||||
-rw-r--r-- | lisp/vc.el | 13 |
4 files changed, 20 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 83dd29242c0..cffa6651ecf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2009-10-13 Dan Nicolaescu <dann@ics.uci.edu> + + * vc.el: Move comments about RCS and SCCS ... + * vc-rcs.el: + * vc-sccs.el: ... here, respectively. + 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca> * minibuffer.el (completion--file-name-table): Return nil if there's diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 9f225e3dff7..2d486cd56d1 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el @@ -26,6 +26,16 @@ ;; See vc.el +;; Some features will not work with old RCS versions. Where +;; appropriate, VC finds out which version you have, and allows or +;; disallows those features (stealing locks, for example, works only +;; from 5.6.2 onwards). +;; Even initial checkins will fail if your RCS version is so old that ci +;; doesn't understand -t-; this has been known to happen to people running +;; NExTSTEP 3.0. +;; +;; You can support the RCS -x option by customizing vc-rcs-master-templates. + ;;; Code: ;;; diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el index 44b2b289477..afbf4e1545f 100644 --- a/lisp/vc-sccs.el +++ b/lisp/vc-sccs.el @@ -24,6 +24,10 @@ ;;; Commentary: +;; Proper function of the SCCS diff commands requires the shellscript vcdiff +;; to be installed somewhere on Emacs's path for executables. +;; + ;;; Code: (eval-when-compile diff --git a/lisp/vc.el b/lisp/vc.el index 456b85977a1..515fcbcdde6 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -58,19 +58,6 @@ ;; Arch, Subversion, Bzr, Git, Mercurial, Monotone and SCCS ;; (or its free replacement, CSSC). ;; -;; Some features will not work with old RCS versions. Where -;; appropriate, VC finds out which version you have, and allows or -;; disallows those features (stealing locks, for example, works only -;; from 5.6.2 onwards). -;; Even initial checkins will fail if your RCS version is so old that ci -;; doesn't understand -t-; this has been known to happen to people running -;; NExTSTEP 3.0. -;; -;; You can support the RCS -x option by customizing vc-rcs-master-templates. -;; -;; Proper function of the SCCS diff commands requires the shellscript vcdiff -;; to be installed somewhere on Emacs's path for executables. -;; ;; If your site uses the ChangeLog convention supported by Emacs, the ;; function `log-edit-comment-to-change-log' could prove a useful checkin hook, ;; although you might prefer to use C-c C-a (i.e. `log-edit-insert-changelog') |