aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2019-04-19 14:41:37 -0700
committerPaul Eggert2019-04-19 14:41:57 -0700
commit1a4df31dddcf5a55e42f379b1b61fa21983faf32 (patch)
treee155ce192cd11f6842fa3b16469709a45ad85733 /src
parent992fd76ce9fcc849971efdee71f35985a1fa0247 (diff)
downloademacs-1a4df31dddcf5a55e42f379b1b61fa21983faf32.tar.gz
emacs-1a4df31dddcf5a55e42f379b1b61fa21983faf32.zip
* src/emacs-module.c (value_storage_contains_p): Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/emacs-module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c
index 5467704df7f..2f60ef1f1f4 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -1207,7 +1207,7 @@ value_storage_contains_p (const struct emacs_value_storage *storage,
1207 { 1207 {
1208 if (&frame->objects[i] == value) 1208 if (&frame->objects[i] == value)
1209 return true; 1209 return true;
1210 ++count; 1210 ++*count;
1211 } 1211 }
1212 } 1212 }
1213 return false; 1213 return false;