From xemacs-m  Thu Dec 12 23:31:23 1996
Received: from atreides.mindspring.com (qmailr@atreides.mindspring.com [204.180.142.236]) by xemacs.cs.uiuc.edu (8.8.3/8.8.3) with SMTP id XAA05496 for <xemacs-beta@xemacs.org>; Thu, 12 Dec 1996 23:31:23 -0600 (CST)
Received: (qmail 15698 invoked by uid 52477); 13 Dec 1996 05:31:26 -0000
Sender: sj@atreides.mindspring.com
To: XEmacs beta <xemacs-beta@xemacs.org>
Subject: xemacs-20.0-b31 
Mime-Version: 1.0 (generated by tm-edit 7.84)
Content-Type: text/plain; charset=US-ASCII
From: Sudish Joseph <sudish@mindspring.com>
Date: 13 Dec 1996 00:31:26 -0500
Message-ID: <yviazpzjovrl.fsf@atreides.mindspring.com>
Lines: 41
X-Mailer: Red Gnus v0.74/XEmacs 19.15

I get this while dumping:

[...]
Loading auto-show... (1152)
Finding pointers to doc strings...
Note: Strange doc (not fboundp) for function cde-start-drag-internal @ 431354
Finding pointers to doc strings...done
Dumping under the name xemacs
[...]

Also, this patch didn't make it in.  It's needed on gnuattached tty's
on XEmacsen started on X displays.  Redump after patching, obviously.

--- x-init.el~	Sun Nov 10 03:11:35 1996
+++ x-init.el	Fri Dec 13 00:27:12 1996
@@ -153,10 +153,19 @@
     (if (featurep 'mule)
         (init-mule-x-win))
     ;; these are only ever called if zmacs-regions is true.
-    (add-hook 'zmacs-deactivate-region-hook 'x-disown-selection)
-    (add-hook 'zmacs-activate-region-hook   'x-activate-region-as-selection)
-    (add-hook 'zmacs-update-region-hook     'x-activate-region-as-selection)
-
+    (add-hook 'zmacs-deactivate-region-hook
+	      #'(lambda ()
+		  (if (console-on-window-system-p)
+		      (x-disown-selection))))
+    (add-hook 'zmacs-activate-region-hook
+	      #'(lambda ()
+		  (if (console-on-window-system-p)
+		      (x-activate-region-as-selection))))
+    (add-hook 'zmacs-update-region-hook
+	      #'(lambda ()
+		  (if (console-on-window-system-p)
+		      (x-activate-region-as-selection))))
+ 
     ;; Motif-ish bindings
     ;; The following two were generally unliked.
     ;;(define-key global-map '(shift delete)   'x-kill-primary-selection)

-Sudish

