aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-02-06 23:00:52 +0000
committerKim F. Storm2002-02-06 23:00:52 +0000
commit4857ef585749556bc4ce2bc4082ffb089582042c (patch)
treee82b02682877cff5bfd87119718c90bd4aff39e2 /src
parent8b9940e66c585db91bd8d252367b62b20ff66cef (diff)
downloademacs-4857ef585749556bc4ce2bc4082ffb089582042c.tar.gz
emacs-4857ef585749556bc4ce2bc4082ffb089582042c.zip
Changed call to Fwhere_is_internal.
Diffstat (limited to 'src')
-rw-r--r--src/doc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c
index ad09ca542c4..8bb8bef7884 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -671,7 +671,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
671 671
672 /* Note the Fwhere_is_internal can GC, so we have to take 672 /* Note the Fwhere_is_internal can GC, so we have to take
673 relocation of string contents into account. */ 673 relocation of string contents into account. */
674 tem = Fwhere_is_internal (tem, keymap, Qt, Qnil); 674 tem = Fwhere_is_internal (tem, keymap, Qt, Qnil, Qnil);
675 strp = XSTRING (string)->data + idx; 675 strp = XSTRING (string)->data + idx;
676 start = XSTRING (string)->data + start_idx; 676 start = XSTRING (string)->data + start_idx;
677 677