CVS server breaking.

Aidan Kehoe kehoea at parhasard.net
Mon Feb 28 14:07:10 EST 2005


Either my CVS client is broken, or the server is--is anyone else seeing the
below?

derrick [ ftp 'http://cvs.xemacs.org/viewcvs.cgi/*checkout*/XEmacs/xemacs/lisp/select.el?rev=1.13'
Requesting http://cvs.xemacs.org/viewcvs.cgi/*checkout*/XEmacs/xemacs/lisp/select.el?rev=1.13
 31980      52.31 KB/s 
31980 bytes retrieved in 00:00 (52.27 KB/s)
derrick [ pwd                                  
/Sources/xemacs-21.5/lisp
derrick [ cat CVS/Repository 
XEmacs/xemacs/lisp
derrick [ rm select.el && cvs update select.el
U select.el
derrick [ diff -u select.el select.el\?rev=1.13 
--- select.el   2005-02-28 19:05:00.000000000 +0000
+++ select.el?rev=1.13  2005-02-28 19:04:22.000000000 +0000
@@ -3,6 +3,7 @@
 ;; Copyright (C) 1998 Andy Piper.
 ;; Copyright (C) 1990, 1997 Free Software Foundation, Inc.
 ;; Copyright (C) 1995 Sun Microsystems.
+;; Copyright (C) 2002 Ben Wing.
 
 ;; Maintainer: XEmacs Development Team
 ;; Keywords: extensions, dumped
@@ -46,13 +47,19 @@
 set the clipboard.")
 
 (defun copy-primary-selection ()
-  "Copy the selection to the Clipboard and the kill ring."
+  "Copy the selection to the Clipboard and the kill ring.
+This is similar to the command \\[kill-ring-save] except that it will
+save to the Clipboard even if that command doesn't, and it handles rectangles
+properly."
   (interactive)
   (and (console-on-window-system-p)
        (cut-copy-clear-internal 'copy)))
 
 (defun kill-primary-selection ()
-  "Copy the selection to the Clipboard and the kill ring, then delete it."
+  "Copy the selection to the Clipboard and the kill ring, then deleted it.
+This is similar to the command \\[kill-region] except that it will
+save to the Clipboard even if that command doesn't, and it handles rectangles
+properly."
   (interactive "*")
   (and (console-on-window-system-p)
        (cut-copy-clear-internal 'cut)))
@@ -75,9 +82,15 @@

-- 
“I, for instance, am gung-ho about open source because my family is being
held hostage in Rob Malda’s basement. But who fact-checks me, or Enderle,
when we say something in public? No-one!” -- Danny O’Brien




More information about the XEmacs-Beta mailing list