emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs CVS, DJGPP CVS, broken build


From: Kenichi Handa
Subject: Re: Emacs CVS, DJGPP CVS, broken build
Date: Tue, 25 Feb 2003 11:30:49 +0900 (JST)
User-agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/21.2.92 (sparc-sun-solaris2.6) MULE/5.0 (SAKAKI)

In article <address@hidden>, "Richard Dawe" <address@hidden> writes:
> I just tried building Emacs CVS against DJGPP CVS. Unfortunately
> the build failed with a couple of unresolved symbols: cancel_hourglass
> and setup_process_coding_systems. These both look related to things
> DJGPP doesn't support: X-Windows and subprocesses.

> The patch below seems to fix things for DJGPP, but I don't know
> whether it's correct for anything else.

Thank you for the report.  As for subprocesses, I've just
installed the attached change.  For cancel_hourglass, I'd
like to ask <address@hidden> to fix the problem.

---
Ken'ichi HANDA
address@hidden


2003-02-25  Kenichi Handa  <address@hidden>

        * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
        process only when "subprocesses" is defined.

Index: buffer.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/buffer.c,v
retrieving revision 1.413
retrieving revision 1.414
diff -u -c -r1.413 -r1.414
cvs server: conflicting specifications of output style
*** buffer.c    10 Feb 2003 07:43:03 -0000      1.413
--- buffer.c    25 Feb 2003 02:24:53 -0000      1.414
***************
*** 2288,2293 ****
--- 2288,2294 ----
    if (!modified_p && !NILP (Fbuffer_modified_p (Qnil)))
      Fset_buffer_modified_p (Qnil);
  
+ #ifdef subprocesses
    /* Update coding systems of this buffer's process (if any).  */
    {
      Lisp_Object process;
***************
*** 2296,2301 ****
--- 2297,2303 ----
      if (PROCESSP (process))
        setup_process_coding_systems (process);
    }
+ #endif        /* subprocesses */
  
    return flag;
  }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]