changeset 390:c6012109f545 r21-2-10

Import from CVS: tag r21-2-10
author cvs
date Mon, 13 Aug 2007 11:10:03 +0200
parents 94c6b1f087e1
children e50d8e68d7a5
files CHANGES-beta ChangeLog etc/package-index.LATEST.pgp lib-src/ChangeLog lisp/ChangeLog lisp/package-get.el man/ChangeLog nt/ChangeLog src/ChangeLog src/process-nt.c tests/ChangeLog version.sh
diffstat 12 files changed, 103 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES-beta	Mon Aug 13 11:09:43 2007 +0200
+++ b/CHANGES-beta	Mon Aug 13 11:10:03 2007 +0200
@@ -1,4 +1,8 @@
 							-*- indented-text -*-
+to 21.2 beta10 "Boreas"
+-- package UI fix from Jan Vroonhof
+-- MS Windows NT process fix from Gleb Arshinov
+
 to 21.2 beta9 "Athena"
 -- parameterize replace-match function from Didier Verna
 -- X-Face support under mswindows from Andy Piper
--- a/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,7 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/etc/package-index.LATEST.pgp	Mon Aug 13 11:09:43 2007 +0200
+++ b/etc/package-index.LATEST.pgp	Mon Aug 13 11:10:03 2007 +0200
@@ -1,6 +1,50 @@
 ;; Package Index file -- Do not edit manually.
 ;;;@@@
 (package-get-update-base-entry (quote
+(hm--html-menus
+  (standards-version 1.0
+   version "1.12"
+   author-version "5.9"
+   date "1999-02-05"
+   build-date "1999-02-05"
+   maintainer "XEmacs Development Team <xemacs-beta@xemacs.org>"
+   distribution stable
+   priority low
+   category "oa"
+   dump nil
+   description "HTML editing."
+   filename "hm--html-menus-1.12-pkg.tar.gz"
+   md5sum "fc80ef260cc0682bde6e706cdc8ddae4"
+   size 177442
+   provides (adapt hm--date hm--html-configuration hm--html-drag-and-drop hm--html-indentation hm--html-keys hm--html-menu hm--html-mode hm--html-not-standard hm--html html-view tmpl-minor-mode)
+   requires (dired xemacs-base)
+   type regular
+))
+))
+;;;@@@
+(package-get-update-base-entry (quote
+(jde
+  (standards-version 1.0
+   version "1.14"
+   author-version "2.14"
+   date "1999-02-05"
+   build-date "1999-02-05"
+   maintainer "Andy Piper <andy@xemacs.org>"
+   distribution stable
+   priority medium
+   category "prog"
+   dump nil
+   description "Java language and development support."
+   filename "jde-1.14-pkg.tar.gz"
+   md5sum "1028c54ef317d8dd4d4c78e5b9c004e6"
+   size 320702
+   provides (jde)
+   requires (cc-mode debug speedbar edit-utils mail-lib xemacs-base)
+   type regular
+))
+))
+;;;@@@
+(package-get-update-base-entry (quote
 (skk
   (standards-version 1.0
    version "1.12"
--- a/lib-src/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/lib-src/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,7 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/lisp/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/lisp/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,12 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
+1999-02-02  Jan Vroonhof  <vroonhof@math.ethz.ch>
+
+	* package-get.el (package-get-remote-filename): Don't bug out for
+	a local file name in the search entry.
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/lisp/package-get.el	Mon Aug 13 11:09:43 2007 +0200
+++ b/lisp/package-get.el	Mon Aug 13 11:10:03 2007 +0200
@@ -941,15 +941,19 @@
 not, then it uses the (car search) as the remote site-name and the (cadr
 search) as the remote-directory and concatenates filename.  In other
 words
-	site-name:remote-directory/filename
+	site-name:remote-directory/filename.
+
+If (car search) is nil, (cadr search is interpreted as  a local directory).
 "
-  (if (efs-ftp-path filename)
+  (if (file-remote-p filename)
       filename
     (let ((dir (cadr search)))
-      (concat (if (string-match "@" (car search))
-		  "/"
-		"/anonymous@")
-	      (car search) ":"
+      (concat (when (car search)
+		(concat
+		 (if (string-match "@" (car search))
+		     "/"
+		   "/anonymous@")
+		 (car search) ":"))
 	      (if (string-match "/$" dir)
 		  dir
 		(concat dir "/"))
--- a/man/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/man/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,7 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/nt/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/nt/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,7 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/src/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/src/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,15 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
+1999-02-02  Gleb Arshinov  <gleb@cs.stanford.edu>
+
+	* process-nt.c (nt_send_process): 
+ 	Fix for process-send-region/process-send-string breaking when size
+	of the input > 128 chars: change maximum chunk size for process
+	stream from 512 to 128, thus guaranteeing that ntpipe_shove_writer
+	succeeds.
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/src/process-nt.c	Mon Aug 13 11:09:43 2007 +0200
+++ b/src/process-nt.c	Mon Aug 13 11:10:03 2007 +0200
@@ -621,14 +621,14 @@
   /* use a reasonable-sized buffer (somewhere around the size of the
      stream buffer) so as to avoid inundating the stream with blocked
      data. */
-  Bufbyte chunkbuf[512];
+  Bufbyte chunkbuf[128];
   Bytecount chunklen;
 
   while (1)
     {
       int writeret;
 
-      chunklen = Lstream_read (lstream, chunkbuf, 512);
+      chunklen = Lstream_read (lstream, chunkbuf, 128);
       if (chunklen <= 0)
 	break; /* perhaps should abort() if < 0?
 		  This should never happen. */
--- a/tests/ChangeLog	Mon Aug 13 11:09:43 2007 +0200
+++ b/tests/ChangeLog	Mon Aug 13 11:10:03 2007 +0200
@@ -1,3 +1,7 @@
+1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
+
+	* XEmacs 21.2.10 is released
+
 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
 
 	* XEmacs 21.2.9 is released
--- a/version.sh	Mon Aug 13 11:09:43 2007 +0200
+++ b/version.sh	Mon Aug 13 11:10:03 2007 +0200
@@ -1,8 +1,8 @@
 #!/bin/sh
 emacs_major_version=21
 emacs_minor_version=2
-emacs_beta_version=9
-xemacs_codename="Athena"
+emacs_beta_version=10
+xemacs_codename="Boreas"
 infodock_major_version=4
 infodock_minor_version=0
 infodock_build_version=1