1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

* nsfns.m (ns-read-file-name): Fix typo in assignment statement.

This commit is contained in:
Adrian Robert 2009-01-22 13:31:54 +00:00
parent 6debaeb878
commit 575fb8bdb4
2 changed files with 3 additions and 1 deletions

View file

@ -6,6 +6,8 @@
* nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
Display all shortcuts, including those w/o super modifier.
* nsfns.m (ns-read-file-name): Fix typo in assignment statement.
2009-01-22 Chong Yidong <cyd@stupidchicken.com>
* fileio.c (Vwrite_region_post_annotation_function)

View file

@ -1494,7 +1494,7 @@ Optional arg INIT, if non-nil, provides a default file name to use. */)
ret = [panel runModalForDirectory: dirS file: initS types: nil];
}
ret = (ret = NSOKButton) || panelOK;
ret = (ret == NSOKButton) || panelOK;
fname = [panel filename];