diff options
| author | Stefan Monnier | 2012-11-15 12:17:23 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2012-11-15 12:17:23 -0500 |
| commit | 5c2a71483b029100aabf5d64717120b31f4d6fa4 (patch) | |
| tree | 32105c5b1b46d4881990b777ec3ab39ef2949006 /src | |
| parent | 96a6857705884d96b9026e80d2bc551d9079cee2 (diff) | |
| download | emacs-5c2a71483b029100aabf5d64717120b31f4d6fa4.tar.gz emacs-5c2a71483b029100aabf5d64717120b31f4d6fa4.zip | |
* src/eval.c (Finteractive_p): Revert lexbind-merge mishap.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 16 | ||||
| -rw-r--r-- | src/eval.c | 2 |
2 files changed, 11 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9caa5113444..d2e7a96f275 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * eval.c (Finteractive_p): Revert lexbind-merge mishap. | ||
| 4 | |||
| 1 | 2012-11-14 Eli Zaretskii <eliz@gnu.org> | 5 | 2012-11-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread | 7 | * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread |
| @@ -28,16 +32,16 @@ | |||
| 28 | * window.c (Fsplit_window_internal): Set combination limit of | 32 | * window.c (Fsplit_window_internal): Set combination limit of |
| 29 | new parent window to t iff Vwindow_combination_limit is t; | 33 | new parent window to t iff Vwindow_combination_limit is t; |
| 30 | fixing a regression introduced with the change from 2012-09-22. | 34 | fixing a regression introduced with the change from 2012-09-22. |
| 31 | (Fwindow_combination_limit, Fset_window_combination_limit): Fix | 35 | (Fwindow_combination_limit, Fset_window_combination_limit): |
| 32 | doc-strings. | 36 | Fix doc-strings. |
| 33 | 37 | ||
| 34 | 2012-11-06 Eli Zaretskii <eliz@gnu.org> | 38 | 2012-11-06 Eli Zaretskii <eliz@gnu.org> |
| 35 | 39 | ||
| 36 | * xdisp.c (try_scrolling): Fix correction of aggressive-scroll | 40 | * xdisp.c (try_scrolling): Fix correction of aggressive-scroll |
| 37 | amount when the scroll margins are too large. When scrolling | 41 | amount when the scroll margins are too large. When scrolling |
| 38 | backwards in the buffer, give up if cannot reach point or the | 42 | backwards in the buffer, give up if cannot reach point or the |
| 39 | scroll margin within a reasonable number of screen lines. Fixes | 43 | scroll margin within a reasonable number of screen lines. |
| 40 | point position in window under scroll-up/down-aggressively when | 44 | Fixes point position in window under scroll-up/down-aggressively when |
| 41 | point is positioned many lines beyond the window top/bottom. | 45 | point is positioned many lines beyond the window top/bottom. |
| 42 | (Bug#12811) | 46 | (Bug#12811) |
| 43 | 47 | ||
| @@ -118,8 +122,8 @@ | |||
| 118 | 122 | ||
| 119 | 2012-10-29 Daniel Colascione <dancol@dancol.org> | 123 | 2012-10-29 Daniel Colascione <dancol@dancol.org> |
| 120 | 124 | ||
| 121 | * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode): In | 125 | * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode): |
| 122 | preparation for fixing bug#12739, move these functions from | 126 | In preparation for fixing bug#12739, move these functions from |
| 123 | here... | 127 | here... |
| 124 | 128 | ||
| 125 | * coding.h, coding.c: ... to here, and compile them only when | 129 | * coding.h, coding.c: ... to here, and compile them only when |
diff --git a/src/eval.c b/src/eval.c index 975204da017..58fa92cd7b5 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -508,7 +508,7 @@ spec that specifies non-nil unconditionally (such as \"p\"); or (ii) | |||
| 508 | use `called-interactively-p'. */) | 508 | use `called-interactively-p'. */) |
| 509 | (void) | 509 | (void) |
| 510 | { | 510 | { |
| 511 | return interactive_p () ? Qt : Qnil; | 511 | return (INTERACTIVE && interactive_p ()) ? Qt : Qnil; |
| 512 | } | 512 | } |
| 513 | 513 | ||
| 514 | 514 | ||