diff options
| author | Richard M. Stallman | 2006-08-16 05:15:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-08-16 05:15:25 +0000 |
| commit | c33f8948974b2c8614bec80860c6ec01a2a11d5f (patch) | |
| tree | 258a6036cfec2acb9b683447dd64e2dd6df751c2 /src | |
| parent | 1096b4a013322558b66d89ad9f71eb327696509a (diff) | |
| download | emacs-c33f8948974b2c8614bec80860c6ec01a2a11d5f.tar.gz emacs-c33f8948974b2c8614bec80860c6ec01a2a11d5f.zip | |
(debug_output_compilation_hack): New function.
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/print.c b/src/print.c index c36b9476f82..ac8736d2aa4 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -924,6 +924,15 @@ to make it write to the debugging output. */) | |||
| 924 | return character; | 924 | return character; |
| 925 | } | 925 | } |
| 926 | 926 | ||
| 927 | /* This function is never called. Its purpose is to prevent | ||
| 928 | print_output_debug_flag from being optimized away. */ | ||
| 929 | |||
| 930 | int | ||
| 931 | debug_output_compilation_hack (x) | ||
| 932 | int x; | ||
| 933 | { | ||
| 934 | print_output_debug_flag = x; | ||
| 935 | } | ||
| 927 | 936 | ||
| 928 | #if defined(GNU_LINUX) | 937 | #if defined(GNU_LINUX) |
| 929 | 938 | ||