1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-11 09:20:51 +00:00

* src/lread.c (openp): Correct Boolean typo in last commit.

This commit is contained in:
Wolfgang Jenkner 2011-02-22 13:02:11 -05:00 committed by Stefan Monnier
parent b97decf246
commit aa0f73d190
2 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,11 @@
2011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
* lread.c (openp): Correct Boolean typo in last commit.
2011-02-22 Adrian Robert <Adrian.B.Robert@gmail.com>
* nsterm.m (EmacsView-keyDown:): Don't pass shift-only-modified
key to emacs, treat as unmodified (go to input manager
processing).
key to Emacs, treat as unmodified (go to input manager processing).
2011-02-22 Paul Eggert <eggert@cs.ucla.edu>

View File

@ -1384,7 +1384,7 @@ openp (Lisp_Object path, Lisp_Object str, Lisp_Object suffixes, Lisp_Object *sto
Lisp_Object tmp = call1 (predicate, string);
exists = !NILP (tmp)
&& (EQ (tmp, Qdir_ok)
|| !NILP (Ffile_directory_p (string)));
|| NILP (Ffile_directory_p (string)));
}
if (exists)