[Mac-emacs-users] Typo in previous code
                
                Brought to you by:
                
                    akochoi
                    
                
            
            
        
        
        
    | 
     
      
      
      From: Immanuel L. <imm...@en...> - 2001-11-20 16:11:34
      
     
   | 
There was a typo in the previous code which was due to rearanging the
code just before sending it. You'd think one would have learned not to
do such things. Anyway here is the new code
;;Begin Code
(progn
  (load "compile")
    (fset 'old-compile
	  (symbol-function 'compile)))
(defun compile ()
  (interactive)
  (let ((old-start-process (symbol-function 'start-process)))
    (unwind-protect 
	(progn
	  (fmakunbound 'start-proces)
	  (call-interactively 'old-compile))
      (fset 'start-process old-start-process))))
;;End Code
if anyone has comments ...
Immanuel
***************************************************************************
A day for firm decisions!!!!!  Or is it?
Immanuel Litzroth
Software Development Engineer
Enfocus Software
Kleindokkaai 3-5
B-9000 Gent
Belgium
Voice: +32 9 269 23 90
Fax   : +32 9 269 16 91
Email: Imm...@en...
web  : www.enfocus.be
***************************************************************************
 |