aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2013-07-15 21:39:23 -0700
committerPaul Eggert2013-07-15 21:39:23 -0700
commit8abee653a22b0b879a9376c1dce3e3ca2e2f31d6 (patch)
tree5e77b7fc46d3755bf261934c9fd472d72c6299be /src
parentda48522e656667d815a591435b59aced91326035 (diff)
downloademacs-8abee653a22b0b879a9376c1dce3e3ca2e2f31d6.tar.gz
emacs-8abee653a22b0b879a9376c1dce3e3ca2e2f31d6.zip
Spelling fixes for "does not exists".
Diffstat (limited to 'src')
-rw-r--r--src/gfilenotify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfilenotify.c b/src/gfilenotify.c
index 4e684d1fb54..47b645bc075 100644
--- a/src/gfilenotify.c
+++ b/src/gfilenotify.c
@@ -173,7 +173,7 @@ will be reported only in case of the 'moved' event. */)
173 CHECK_STRING (file); 173 CHECK_STRING (file);
174 file = Fdirectory_file_name (Fexpand_file_name (file, Qnil)); 174 file = Fdirectory_file_name (Fexpand_file_name (file, Qnil));
175 if (NILP (Ffile_exists_p (file))) 175 if (NILP (Ffile_exists_p (file)))
176 report_file_error ("File does not exists", Fcons (file, Qnil)); 176 report_file_error ("File does not exist", list1 (file));
177 177
178 CHECK_LIST (flags); 178 CHECK_LIST (flags);
179 179