From: Paul Eggert Date: Wed, 7 Jul 1993 19:07:54 +0000 (+0000) Subject: (vc-rcs-status): Remove unused var `status'. X-Git-Tag: emacs-19.34~11827 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=137fcf31481620663615f83a9220cc2573d60933;p=emacs.git (vc-rcs-status): Remove unused var `status'. --- diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 101f8d3db7e..4431183aaaa 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -1,6 +1,6 @@ ;;; vc-hooks.el --- resident support for version-control -;; Copyright (C) 1992 Free Software Foundation, Inc. +;; Copyright (C) 1992, 1993 Free Software Foundation, Inc. ;; Author: Eric S. Raymond ;; Version: 5.3 @@ -166,12 +166,10 @@ visiting FILE." ;; 2. Insert the first few characters of the master file into a work ;; buffer. ;; - ;; 3. Search work buffer for line starting with "date" indicating enough - ;; of header was included; if not found, then keep inserting characters - ;; until "date" is located. + ;; 3. Search work buffer for "locks...;" phrase; if not found, then + ;; keep inserting more characters until the phrase is found. ;; - ;; 4. Search work buffer for line starting with "locks", extract - ;; all the locks currently enabled, and remove control characters + ;; 4. Extract the locks, and remove control characters ;; separating them, like newlines; the string " user1:revision1 ;; user2:revision2 ..." is returned. @@ -181,7 +179,7 @@ visiting FILE." ;; The modeline can get quite cluttered when there are multiple locks. (let ((master (vc-name file)) - found status) + found) ;; If master file exists, then parse its contents, otherwise we return the ;; nil value of this if form.