diff options
| author | Stefan Monnier | 2011-12-04 10:46:07 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2011-12-04 10:46:07 -0500 |
| commit | 6d5eb5b0d2e50b0dd153a988cc52492cb77fc333 (patch) | |
| tree | a2dbd96b6b9a3cd154a98bb0b1981203cd5e1e5b /src/coding.c | |
| parent | a0c3fad023c0b5812db38d2f1bd41998d7c001b1 (diff) | |
| download | emacs-6d5eb5b0d2e50b0dd153a988cc52492cb77fc333.tar.gz emacs-6d5eb5b0d2e50b0dd153a988cc52492cb77fc333.zip | |
Don't macro-inline non-performance-critical code.
* src/eval.c (process_quit_flag): New function.
* src/lisp.h (QUIT): Use it.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 79908e9b29b..f3506da7358 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9208,7 +9208,7 @@ frame's terminal device. */) | |||
| 9208 | = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1)); | 9208 | = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1)); |
| 9209 | Lisp_Object coding_system = CODING_ID_NAME (terminal_coding->id); | 9209 | Lisp_Object coding_system = CODING_ID_NAME (terminal_coding->id); |
| 9210 | 9210 | ||
| 9211 | /* For backward compatibility, return nil if it is `undecided'. */ | 9211 | /* For backward compatibility, return nil if it is `undecided'. */ |
| 9212 | return (! EQ (coding_system, Qundecided) ? coding_system : Qnil); | 9212 | return (! EQ (coding_system, Qundecided) ? coding_system : Qnil); |
| 9213 | } | 9213 | } |
| 9214 | 9214 | ||