diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/doc.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index bef3bbd4c83..4614ba09b3d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-06-27 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * doc.c (Fsubstitute_command_keys): Fix punctuation. | ||
| 4 | |||
| 1 | 2012-06-26 John Wiegley <johnw@newartisans.com> | 5 | 2012-06-26 John Wiegley <johnw@newartisans.com> |
| 2 | 6 | ||
| 3 | * unexmacosx.c (copy_data_segment): Added two section names used | 7 | * unexmacosx.c (copy_data_segment): Added two section names used |
| @@ -897,11 +897,11 @@ Otherwise, return a new string, without any text properties. */) | |||
| 897 | if (NILP (tem)) | 897 | if (NILP (tem)) |
| 898 | { | 898 | { |
| 899 | name = Fsymbol_name (name); | 899 | name = Fsymbol_name (name); |
| 900 | insert_string ("\nUses keymap \""); | 900 | insert_string ("\nUses keymap `"); |
| 901 | insert_from_string (name, 0, 0, | 901 | insert_from_string (name, 0, 0, |
| 902 | SCHARS (name), | 902 | SCHARS (name), |
| 903 | SBYTES (name), 1); | 903 | SBYTES (name), 1); |
| 904 | insert_string ("\", which is not currently defined.\n"); | 904 | insert_string ("', which is not currently defined.\n"); |
| 905 | if (start[-1] == '<') keymap = Qnil; | 905 | if (start[-1] == '<') keymap = Qnil; |
| 906 | } | 906 | } |
| 907 | else if (start[-1] == '<') | 907 | else if (start[-1] == '<') |