diff options
| author | Romain Francoise | 2005-09-10 20:05:02 +0000 |
|---|---|---|
| committer | Romain Francoise | 2005-09-10 20:05:02 +0000 |
| commit | f9962371041b25c0772a35b0fcbfd313bcffdb87 (patch) | |
| tree | 5a187aa9c836fb4d3ffcbd3483f105c102d5c60e | |
| parent | 156bdb41309e1a8311190c3c92d8da4548d1e604 (diff) | |
| download | emacs-f9962371041b25c0772a35b0fcbfd313bcffdb87.tar.gz emacs-f9962371041b25c0772a35b0fcbfd313bcffdb87.zip | |
(init_buffer): Fix typos.
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/buffer.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f47e48c812d..e3fb1e07ab8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | 2005-09-10 Romain Francoise <romain@orebokech.com> | 1 | 2005-09-10 Romain Francoise <romain@orebokech.com> |
| 2 | 2 | ||
| 3 | * buffer.c (init_buffer): Grow buffer to add directory separator | 3 | * buffer.c (init_buffer): Grow buffer to add directory separator |
| 4 | and terminal zero. | 4 | and terminal zero. Fix typos. |
| 5 | 5 | ||
| 6 | 2005-09-10 Eli Zaretskii <eliz@gnu.org> | 6 | 2005-09-10 Eli Zaretskii <eliz@gnu.org> |
| 7 | 7 | ||
diff --git a/src/buffer.c b/src/buffer.c index e2805a3d1c2..fb1ff1c22e9 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5153,7 +5153,7 @@ init_buffer () | |||
| 5153 | 5153 | ||
| 5154 | current_buffer->directory = make_unibyte_string (pwd, strlen (pwd)); | 5154 | current_buffer->directory = make_unibyte_string (pwd, strlen (pwd)); |
| 5155 | if (! NILP (buffer_defaults.enable_multibyte_characters)) | 5155 | if (! NILP (buffer_defaults.enable_multibyte_characters)) |
| 5156 | /* At this momemnt, we still don't know how to decode the | 5156 | /* At this moment, we still don't know how to decode the |
| 5157 | directory name. So, we keep the bytes in multibyte form so | 5157 | directory name. So, we keep the bytes in multibyte form so |
| 5158 | that ENCODE_FILE correctly gets the original bytes. */ | 5158 | that ENCODE_FILE correctly gets the original bytes. */ |
| 5159 | current_buffer->directory | 5159 | current_buffer->directory |