diff options
| author | Adrian Robert | 2009-01-22 13:31:54 +0000 |
|---|---|---|
| committer | Adrian Robert | 2009-01-22 13:31:54 +0000 |
| commit | 575fb8bdb4033a74f874948a2e533cf534eda6ad (patch) | |
| tree | 35579fb26c160c9dd1bf3a52b39e4d6beb4f850d | |
| parent | 6debaeb878641be474c19741d368f5e381f22d2a (diff) | |
| download | emacs-575fb8bdb4033a74f874948a2e533cf534eda6ad.tar.gz emacs-575fb8bdb4033a74f874948a2e533cf534eda6ad.zip | |
* nsfns.m (ns-read-file-name): Fix typo in assignment statement.
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/nsfns.m | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 283f3fb4201..2a0ad325f6d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -6,6 +6,8 @@ | |||
| 6 | * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:): | 6 | * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:): |
| 7 | Display all shortcuts, including those w/o super modifier. | 7 | Display all shortcuts, including those w/o super modifier. |
| 8 | 8 | ||
| 9 | * nsfns.m (ns-read-file-name): Fix typo in assignment statement. | ||
| 10 | |||
| 9 | 2009-01-22 Chong Yidong <cyd@stupidchicken.com> | 11 | 2009-01-22 Chong Yidong <cyd@stupidchicken.com> |
| 10 | 12 | ||
| 11 | * fileio.c (Vwrite_region_post_annotation_function) | 13 | * fileio.c (Vwrite_region_post_annotation_function) |
diff --git a/src/nsfns.m b/src/nsfns.m index 6e1c6c05aa2..aee371efc89 100644 --- a/src/nsfns.m +++ b/src/nsfns.m | |||
| @@ -1494,7 +1494,7 @@ Optional arg INIT, if non-nil, provides a default file name to use. */) | |||
| 1494 | ret = [panel runModalForDirectory: dirS file: initS types: nil]; | 1494 | ret = [panel runModalForDirectory: dirS file: initS types: nil]; |
| 1495 | } | 1495 | } |
| 1496 | 1496 | ||
| 1497 | ret = (ret = NSOKButton) || panelOK; | 1497 | ret = (ret == NSOKButton) || panelOK; |
| 1498 | 1498 | ||
| 1499 | fname = [panel filename]; | 1499 | fname = [panel filename]; |
| 1500 | 1500 | ||