aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-17 23:22:42 -0700
committerPaul Eggert2011-03-17 23:22:42 -0700
commit918436ed33aa8c600281c36454f8519df9a4147d (patch)
treed9c869ca695cb8fe44fda787923b9dcef8d0693b /src
parentb9c7f648f0a8af1492b32d53e0779198d28d6603 (diff)
downloademacs-918436ed33aa8c600281c36454f8519df9a4147d.tar.gz
emacs-918436ed33aa8c600281c36454f8519df9a4147d.zip
* region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/region-cache.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b8ab24a7121..db115bdbfd7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12011-03-18 Paul Eggert <eggert@cs.ucla.edu> 12011-03-18 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
4
3 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering. 5 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
4 * sysdep.c (sys_subshell): Likewise. 6 * sysdep.c (sys_subshell): Likewise.
5 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out. 7 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
diff --git a/src/region-cache.h b/src/region-cache.h
index 0da159285e4..8e4336c2885 100644
--- a/src/region-cache.h
+++ b/src/region-cache.h
@@ -111,3 +111,5 @@ extern int region_cache_backward (struct buffer *BUF,
111 EMACS_INT POS, 111 EMACS_INT POS,
112 EMACS_INT *NEXT); 112 EMACS_INT *NEXT);
113 113
114/* For debugging. */
115void pp_cache (struct region_cache *);