emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110876: * src/eval.c (Finteractiv


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110876: * src/eval.c (Finteractive_p): Revert lexbind-merge mishap.
Date: Thu, 15 Nov 2012 12:17:23 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110876
committer: Stefan Monnier <address@hidden>
branch nick: emacs-24
timestamp: Thu 2012-11-15 12:17:23 -0500
message:
  * src/eval.c (Finteractive_p): Revert lexbind-merge mishap.
modified:
  src/ChangeLog
  src/eval.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-11-14 16:41:43 +0000
+++ b/src/ChangeLog     2012-11-15 17:17:23 +0000
@@ -1,3 +1,7 @@
+2012-11-15  Stefan Monnier  <address@hidden>
+
+       * eval.c (Finteractive_p): Revert lexbind-merge mishap.
+
 2012-11-14  Eli Zaretskii  <address@hidden>
 
        * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
@@ -28,16 +32,16 @@
        * window.c (Fsplit_window_internal): Set combination limit of
        new parent window to t iff Vwindow_combination_limit is t;
        fixing a regression introduced with the change from 2012-09-22.
-       (Fwindow_combination_limit, Fset_window_combination_limit): Fix
-       doc-strings.
+       (Fwindow_combination_limit, Fset_window_combination_limit):
+       Fix doc-strings.
 
 2012-11-06  Eli Zaretskii  <address@hidden>
 
        * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
        amount when the scroll margins are too large.  When scrolling
        backwards in the buffer, give up if cannot reach point or the
-       scroll margin within a reasonable number of screen lines.  Fixes
-       point position in window under scroll-up/down-aggressively when
+       scroll margin within a reasonable number of screen lines.
+       Fixes point position in window under scroll-up/down-aggressively when
        point is positioned many lines beyond the window top/bottom.
        (Bug#12811)
 
@@ -118,8 +122,8 @@
 
 2012-10-29  Daniel Colascione  <address@hidden>
 
-       * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode): In
-       preparation for fixing bug#12739, move these functions from
+       * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
+       In preparation for fixing bug#12739, move these functions from
        here...
 
        * coding.h, coding.c: ... to here, and compile them only when

=== modified file 'src/eval.c'
--- a/src/eval.c        2012-10-11 20:08:38 +0000
+++ b/src/eval.c        2012-11-15 17:17:23 +0000
@@ -508,7 +508,7 @@
 use `called-interactively-p'.  */)
   (void)
 {
-  return interactive_p () ? Qt : Qnil;
+  return (INTERACTIVE && interactive_p ()) ? Qt : Qnil;
 }
 
 


reply via email to

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