aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/doc.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d6429501059..d753221b996 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * doc.c (get_doc_string): Don't signal an error if the file is missing.
4
12012-10-12 Jan Djärv <jan.h.d@swipnet.se> 52012-10-12 Jan Djärv <jan.h.d@swipnet.se>
2 6
3 * nsterm.m (hold_event_q): New static variable. 7 * nsterm.m (hold_event_q): New static variable.
diff --git a/src/doc.c b/src/doc.c
index d2d664df266..9ead1addfba 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -144,7 +144,8 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition)
144 } 144 }
145#endif 145#endif
146 if (fd < 0) 146 if (fd < 0)
147 error ("Cannot open doc string file \"%s\"", name); 147 return concat3 (build_string ("Cannot open doc string file \""),
148 file, build_string ("\"\n"));
148 } 149 }
149 150
150 /* Seek only to beginning of disk block. */ 151 /* Seek only to beginning of disk block. */