aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c
index 354aff84979..74e06cce6b3 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -156,7 +156,7 @@ get_doc_string (Lisp_Object filepos, int unibyte, int definition)
156 if (0 > lseek (fd, position - offset, 0)) 156 if (0 > lseek (fd, position - offset, 0))
157 { 157 {
158 emacs_close (fd); 158 emacs_close (fd);
159 error ("Position %"pEd" out of range in doc string file \"%s\"", 159 error ("Position %"pI"d out of range in doc string file \"%s\"",
160 position, name); 160 position, name);
161 } 161 }
162 162
@@ -671,7 +671,7 @@ the same file name is found in the `doc-directory'. */)
671 ; /* Just a source file name boundary marker. Ignore it. */ 671 ; /* Just a source file name boundary marker. Ignore it. */
672 672
673 else 673 else
674 error ("DOC file invalid at position %"pEd, pos); 674 error ("DOC file invalid at position %"pI"d", pos);
675 } 675 }
676 } 676 }
677 pos += end - buf; 677 pos += end - buf;