diff options
| author | Paul Eggert | 2013-06-03 11:29:30 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-06-03 11:29:30 -0700 |
| commit | 3d5ee10aa258a500e0b70b5eabe9d58cb3ab051e (patch) | |
| tree | 37d030ec632685a294eb351851fdad8ce41800b0 /src/ChangeLog | |
| parent | 068922a2973033ea826b458a17f3e06cf6b44299 (diff) | |
| download | emacs-3d5ee10aa258a500e0b70b5eabe9d58cb3ab051e.tar.gz emacs-3d5ee10aa258a500e0b70b5eabe9d58cb3ab051e.zip | |
Fix minor problems found by static checking.
* data.c (pure_write_error):
Use xsignal2, not Fsignal, as Fsignal might return.
* eval.c (set_backtrace_debug_on_exit): Now static.
(backtrace_p, backtrace_top, backtrace_next, record_in_backtrace):
No longer inline. EXTERN_INLINE is needed only for functions
defined in .h files. Reindent function header as per GNU style.
(backtrace_p, backtrace_top, backtrace_next):
Mark EXTERNALLY_VISIBLE so they don't get optimized away by the
compiler or linker. Add extern decls to pacify gcc -Wall.
* frame.c, frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
Now static.
* frame.c (free_monitors): Define only on platforms that need it.
* nsterm.m (ns_term_init):
* process.c (catch_child_signal):
Don't worry about whether SIGCHLD is defined, as SIGCHLD is
defined on all porting targets these days.
* process.c, process.h (catch_child_signal):
Make it extern only if NS_IMPL_GNUSTEP is defined.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a1aa4efcc86..b3b6f4730f0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,25 @@ | |||
| 1 | 2013-06-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix minor problems found by static checking. | ||
| 4 | * data.c (pure_write_error): | ||
| 5 | Use xsignal2, not Fsignal, as Fsignal might return. | ||
| 6 | * eval.c (set_backtrace_debug_on_exit): Now static. | ||
| 7 | (backtrace_p, backtrace_top, backtrace_next, record_in_backtrace): | ||
| 8 | No longer inline. EXTERN_INLINE is needed only for functions | ||
| 9 | defined in .h files. Reindent function header as per GNU style. | ||
| 10 | (backtrace_p, backtrace_top, backtrace_next): | ||
| 11 | Mark EXTERNALLY_VISIBLE so they don't get optimized away by the | ||
| 12 | compiler or linker. Add extern decls to pacify gcc -Wall. | ||
| 13 | * frame.c, frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): | ||
| 14 | Now static. | ||
| 15 | * frame.c (free_monitors): Define only on platforms that need it. | ||
| 16 | * nsterm.m (ns_term_init): | ||
| 17 | * process.c (catch_child_signal): | ||
| 18 | Don't worry about whether SIGCHLD is defined, as SIGCHLD is | ||
| 19 | defined on all porting targets these days. | ||
| 20 | * process.c, process.h (catch_child_signal): | ||
| 21 | Make it extern only if NS_IMPL_GNUSTEP is defined. | ||
| 22 | |||
| 1 | 2013-06-03 Eli Zaretskii <eliz@gnu.org> | 23 | 2013-06-03 Eli Zaretskii <eliz@gnu.org> |
| 2 | 24 | ||
| 3 | * w32.c (gettimeofday): Make the signature identical to prototype | 25 | * w32.c (gettimeofday): Make the signature identical to prototype |