diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-12-04 10:46:07 -0500 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-12-04 10:46:07 -0500 |
| commit | 6d5eb5b0d2e50b0dd153a988cc52492cb77fc333 (patch) | |
| tree | a2dbd96b6b9a3cd154a98bb0b1981203cd5e1e5b /src/coding.c | |
| parent | a0c3fad023c0b5812db38d2f1bd41998d7c001b1 (diff) | |
| download | emacs-6d5eb5b0d2e50b0dd153a988cc52492cb77fc333.tar.gz | |
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. */) = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1)); Lisp_Object coding_system = CODING_ID_NAME (terminal_coding->id); - /* For backward compatibility, return nil if it is `undecided'. */ + /* For backward compatibility, return nil if it is `undecided'. */ return (! EQ (coding_system, Qundecided) ? coding_system : Qnil); } |
