From: Michael Albinus Date: Fri, 4 Mar 2016 12:57:43 +0000 (+0000) Subject: Fix Bug#22814 X-Git-Tag: emacs-25.0.93~134 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=265141b332edfacd03e10a2de9e070077d0b2e82;p=emacs.git Fix Bug#22814 * src/doc.c (get_doc_string): Raise an error in case too many files are open. (Bug#22814) --- diff --git a/src/doc.c b/src/doc.c index a9273f05809..6e7906578a4 100644 --- a/src/doc.c +++ b/src/doc.c @@ -126,6 +126,9 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition) fd = emacs_open (name, O_RDONLY, 0); if (fd < 0) { + if ((errno == EMFILE) || (errno == ENFILE)) + report_file_error ("Read error on documentation file", file); + #ifndef CANNOT_DUMP if (!NILP (Vpurify_flag)) {