From xemacs-m  Fri Jan 17 15:05:22 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
          by xemacs.org (8.8.4/8.8.4) with ESMTP
	  id PAA04581 for <xemacs-beta@xemacs.org>; Fri, 17 Jan 1997 15:05:20 -0600 (CST)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.4/8.8.4)
	  id WAA21130; Fri, 17 Jan 1997 22:05:17 +0100 (MET)
Sender: hniksic@public.srce.hr
To: xemacs-beta@xemacs.org
Subject: Re: --with-x=no broken?
References: <15u3ogp2a7.fsf@bjesomar.srce.hr> <97Jan17.143929edt.10761(4)@jupiter.scs.Ryerson.CA>
X-URL: ftp://gnjilux.cc.fer.hr/pub/unix/util/wget/
X-Attribution: Hrv
X-Face: &}4JQk=L;e.~x+|eo]#DGk@x3~ed!.~lZ}YQcYb7f[WL9L'Z*+OyA\nAEL1M(".[qvI#a2E
 6WYI5>>e7'@_)3Ol9p|Nn2wNa/;~06jL*B%tTcn/XvhAu7qeES0\|MF%$;sI#yn1+y"
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 17 Jan 1997 22:05:16 +0100
In-Reply-To: Dave Mason's message of Fri, 17 Jan 1997 14:39:29 -0500
Message-ID: <kigzpy8812r.fsf@jagor.srce.hr>
Lines: 50
X-Mailer: Red Gnus v0.81/XEmacs 19.14

Dave Mason (dmason@scs.ryerson.ca) wrote:
> One of them you want to check (on 19.14 - sorry again I've not had
> time to build 19.15) gnus works until you try to reply, followup or
> post an article (r,f or a command) when it gets an error trying to
> access current-menubar.  Adding:
> 
> (or (boundp 'current-menubar) (defvar current-menubar nil))

This is broken.  easymenu.el should probably be fixed.  man.el needs
the following patch:

*** man.el.orig Fri Jan 17 17:21:35 1997
--- man.el      Fri Jan 17 17:22:43 1997
***************
*** 606,612 ****
    ;; overran by a couple of chars.
    (setq truncate-lines t)
    ;; turn off horizontal scrollbars in this buffer
!   (set-specifier scrollbar-height (cons (current-buffer) 0))
    (run-hooks 'Manual-mode-hook))
  
  (defun Manual-last-page ()
--- 606,613 ----
    ;; overran by a couple of chars.
    (setq truncate-lines t)
    ;; turn off horizontal scrollbars in this buffer
!   (if (featurep 'scrollbar)
!       (set-specifier scrollbar-height (cons (current-buffer) 0)))
    (run-hooks 'Manual-mode-hook))
  
  (defun Manual-last-page ()
*** Changelog.orig      Fri Jan 17 22:03:54 1997
--- ChangeLog   Fri Jan 17 17:23:11 1997
***************
*** 0 ****
--- 1,5 ----
+ Fri Jan 17 17:22:54 1997  Hrvoje Niksic  <hniksic@bjesomar.srce.hr>
+ 
+       * man.el (Manual-mode): Don't mess with scrollbars if they aren't
+       present.
+ 

There's even more bad news:

font-locking doesn't work at all with --with-x=no. :-(

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
Speak softly and carry a +6 two-handed sword.

