aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorAndreas Schwab2010-04-30 12:00:48 -0400
committerChong Yidong2010-04-30 12:00:48 -0400
commit5dcde606e32d1794f8268ea51cd2d1746e45a311 (patch)
tree2b6048930549ed5862366c766d73a611e4e1669c /src/lisp.h
parent9822590ba8018dd651a01081957d6fb60191d38f (diff)
downloademacs-5dcde606e32d1794f8268ea51cd2d1746e45a311.tar.gz
emacs-5dcde606e32d1794f8268ea51cd2d1746e45a311.zip
Fix for Bug#5984.
* composite.c (autocmp_chars): Save point as marker before calling auto-composition-function. * lisp.h (restore_point_unwind): Add prototype. * fileio.c (restore_point_unwind): Remove static attribute.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 7f5d5df66c6..6cbf35c7880 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -3018,6 +3018,7 @@ EXFUN (Ffile_readable_p, 1);
3018EXFUN (Ffile_executable_p, 1); 3018EXFUN (Ffile_executable_p, 1);
3019EXFUN (Fread_file_name, 6); 3019EXFUN (Fread_file_name, 6);
3020extern Lisp_Object close_file_unwind P_ ((Lisp_Object)); 3020extern Lisp_Object close_file_unwind P_ ((Lisp_Object));
3021extern Lisp_Object restore_point_unwind P_ ((Lisp_Object));
3021extern void report_file_error P_ ((const char *, Lisp_Object)) NO_RETURN; 3022extern void report_file_error P_ ((const char *, Lisp_Object)) NO_RETURN;
3022extern int internal_delete_file P_ ((Lisp_Object)); 3023extern int internal_delete_file P_ ((Lisp_Object));
3023extern void syms_of_fileio P_ ((void)); 3024extern void syms_of_fileio P_ ((void));