diff options
Diffstat (limited to 'src')
| -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 | ||