emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/minibuf.c


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/src/minibuf.c
Date: Thu, 11 Jul 2002 10:13:55 -0400

Index: emacs/src/minibuf.c
diff -c emacs/src/minibuf.c:1.245 emacs/src/minibuf.c:1.246
*** emacs/src/minibuf.c:1.245   Wed Jul 10 04:44:10 2002
--- emacs/src/minibuf.c Thu Jul 11 10:13:55 2002
***************
*** 409,415 ****
       int inherit_input_method;
  {
    Lisp_Object val;
!   int count = specpdl_ptr - specpdl;
    Lisp_Object mini_frame, ambient_dir, minibuffer, input_method;
    struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
    Lisp_Object enable_multibyte;
--- 409,415 ----
       int inherit_input_method;
  {
    Lisp_Object val;
!   int count = SPECPDL_INDEX ();
    Lisp_Object mini_frame, ambient_dir, minibuffer, input_method;
    struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
    Lisp_Object enable_multibyte;
***************
*** 732,738 ****
      }
    else
      {
!       int count = specpdl_ptr - specpdl;
  
        reset_buffer (XBUFFER (buf));
        record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
--- 732,738 ----
      }
    else
      {
!       int count = SPECPDL_INDEX ();
  
        reset_buffer (XBUFFER (buf));
        record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
***************
*** 793,799 ****
  
    /* Erase the minibuffer we were using at this level.  */
    {
!     int count = specpdl_ptr - specpdl;
      /* Prevent error in erase-buffer.  */
      specbind (Qinhibit_read_only, Qt);
      specbind (Qinhibit_modification_hooks, Qt);
--- 793,799 ----
  
    /* Erase the minibuffer we were using at this level.  */
    {
!     int count = SPECPDL_INDEX ();
      /* Prevent error in erase-buffer.  */
      specbind (Qinhibit_read_only, Qt);
      specbind (Qinhibit_modification_hooks, Qt);
***************
*** 1528,1534 ****
    Lisp_Object val, histvar, histpos, position;
    Lisp_Object init;
    int pos = 0;
!   int count = specpdl_ptr - specpdl;
    struct gcpro gcpro1;
  
    init = initial_input;
--- 1528,1534 ----
    Lisp_Object val, histvar, histpos, position;
    Lisp_Object init;
    int pos = 0;
!   int count = SPECPDL_INDEX ();
    struct gcpro gcpro1;
  
    init = initial_input;



reply via email to

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