From xemacs-m  Fri Jun 20 12:01:54 1997
Received: from ns2.eds.com (ns2.eds.com [199.228.142.78])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id MAA10104
	for <xemacs-beta@xemacs.org>; Fri, 20 Jun 1997 12:01:46 -0500 (CDT)
Received: from nnsp.eds.com (nnsp2.eds.com [199.228.143.130])
	by ns2.eds.com (8.8.6.Beta3/8.8.5) with ESMTP id NAA13655
	for <xemacs-beta@xemacs.org>; Fri, 20 Jun 1997 13:01:08 -0400 (EDT)
Received: from kocrsv04.delcoelect.com (kocrsv04.delcoelect.com [144.250.100.205])
	by nnsp.eds.com (8.8.5/8.8.5) with ESMTP id NAA12229
	for <xemacs-beta@xemacs.org>; Fri, 20 Jun 1997 13:00:37 -0400 (EDT)
Received: from kocrsw12.delcoelect.com (kocrsw12.delcoelect.com [144.250.106.18]) by kocrsv04.delcoelect.com (8.7.5/8.7.3) with SMTP id MAA04591 for <xemacs-beta@xemacs.org>; Fri, 20 Jun 1997 12:00:35 -0500 (EST)
Received: from kocrsw12 by kocrsw12.delcoelect.com (SMI-8.6/SMI-SVR4)
	id MAA26718; Fri, 20 Jun 1997 12:00:33 -0500
X-Mailer: exmh version 2.0gamma 1/27/97
To: xemacs-beta@xemacs.org
Subject: [PATCH] untabify behavior changed
X-Attribution: mts
X-Face: 4tk3bJx]I+QTZ|=]*1+Z){9+;5u_hK*NBeZK6[+B+iB%bVuOJ%^uK~fIG}O-}%WLX*D^aW>
 Gv8E3Xtz0\N&fQl^:pj<K{xM`:d>pPt:9lF-YXB%O)?@rd?*/jE!s94`?]:jJ#C5RDP:;Mr.3lwo`0
 {vIT+<{%IRwe]vLd]7>\X|*z{TUX_t;?TPcOLBMIv8_V92!Vk(*DJVU~0M[`5D^PAWLniO1?YYWArM
 U*j9o+>?1MWi.lO?F-?aVt:qQ8OaG?R}B:I!7S_+KuzxZ.f9M@$z#n\bG2$Q2{od
Date: Fri, 20 Jun 1997 12:00:32 -0500
Message-ID: <26716.866826032@kocrsw12>
From: Mike Scheidler <c23mts@eng.delcoelect.com>

Somewhere along the line a feedback message was added to the 'untabify'
command, and as a result it no longer returns 'nil'.  When untabify is
called from the 'write-file-hooks', this causes the file not to be written
and any subsequent functions in the hook to be skipped.  Here's a patch to
restore the old behavior:

1997-06-20  Mike Scheidler  <c23mts@eng.delcoelect.com>

	* prim/tabify.el: Fixed 'untabify' to return 'nil value.

diff -u prim/tabify.el~ prim/tabify.el
--- prim/tabify.el~        Wed Dec 18 17:42:57 1996
+++ prim/tabify.el Fri Jun 20 11:49:25 1997
@@ -54,7 +54,8 @@
                (progn
                  (message "untabify: %d%% ..." percent)
                  (setq percent (+ 5 percent)))))))
-      (message "untabify: done"))))
+      (message "untabify: done")))
+  nil)

 ;;;###autoload
 (defun tabify (start end)

--
Mike Scheidler                     INTERNET:  c23mts@eng.delcoelect.com
Software Development Tools         UUCP:      deaes!c23mts
Delco Electronics Corporation      PHONE:     (765) 451-0319
Kokomo, IN 46904-9005              GMNET:     8-322-0319


