diff options
| author | Paul Eggert | 2011-11-24 23:14:48 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-11-24 23:14:48 -0800 |
| commit | e4920bc99dfcee02c3bb83b46a761b0893f76626 (patch) | |
| tree | a6165f7a6c45f0b4924bad97b21ab179d3e7707e /src | |
| parent | fa4fdb5ca559f8aae4137f8d3b974c14c760360d (diff) | |
| download | emacs-e4920bc99dfcee02c3bb83b46a761b0893f76626.tar.gz emacs-e4920bc99dfcee02c3bb83b46a761b0893f76626.zip | |
Spelling fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog.10 | 2 | ||||
| -rw-r--r-- | src/ChangeLog.8 | 2 | ||||
| -rw-r--r-- | src/callint.c | 2 | ||||
| -rw-r--r-- | src/ccl.c | 2 | ||||
| -rw-r--r-- | src/cm.h | 2 | ||||
| -rw-r--r-- | src/fringe.c | 2 | ||||
| -rw-r--r-- | src/process.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/ChangeLog.10 b/src/ChangeLog.10 index ada5e0f78ef..6acc09c2164 100644 --- a/src/ChangeLog.10 +++ b/src/ChangeLog.10 | |||
| @@ -1003,7 +1003,7 @@ | |||
| 1003 | (syms_of_xdisp): DEFVAR_LISP and initialize it. Update doc string | 1003 | (syms_of_xdisp): DEFVAR_LISP and initialize it. Update doc string |
| 1004 | to describe new value `grow-only', and use of C-l. | 1004 | to describe new value `grow-only', and use of C-l. |
| 1005 | (display_tool_bar_line): Only use default face for border below | 1005 | (display_tool_bar_line): Only use default face for border below |
| 1006 | toolbar if not grow-only (to get acceptable visual appearence). | 1006 | toolbar if not grow-only (to get acceptable visual appearance). |
| 1007 | Explicitly set visible_height for empty toolbar lines. | 1007 | Explicitly set visible_height for empty toolbar lines. |
| 1008 | (redisplay_tool_bar): Handle `grow-only' setting. Check and clear | 1008 | (redisplay_tool_bar): Handle `grow-only' setting. Check and clear |
| 1009 | minimize_tool_bar_window_p flag. | 1009 | minimize_tool_bar_window_p flag. |
diff --git a/src/ChangeLog.8 b/src/ChangeLog.8 index e21af17657f..6bc83055c7b 100644 --- a/src/ChangeLog.8 +++ b/src/ChangeLog.8 | |||
| @@ -8018,7 +8018,7 @@ | |||
| 8018 | 8018 | ||
| 8019 | * xterm.c (x_scroll_run): Renamed from do_line_dance. | 8019 | * xterm.c (x_scroll_run): Renamed from do_line_dance. |
| 8020 | 8020 | ||
| 8021 | * xdisp.c (redisplay_window): For window-based redisplay, alway | 8021 | * xdisp.c (redisplay_window): For window-based redisplay, always |
| 8022 | try try_window_id. | 8022 | try try_window_id. |
| 8023 | 8023 | ||
| 8024 | * xterm.c (struct glyph_string): New member two_byte_p that is | 8024 | * xterm.c (struct glyph_string): New member two_byte_p that is |
diff --git a/src/callint.c b/src/callint.c index 61ab4a3963e..80e24f6c8ee 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -78,7 +78,7 @@ c -- Character (no input method is used). | |||
| 78 | C -- Command name: symbol with interactive function definition. | 78 | C -- Command name: symbol with interactive function definition. |
| 79 | d -- Value of point as number. Does not do I/O. | 79 | d -- Value of point as number. Does not do I/O. |
| 80 | D -- Directory name. | 80 | D -- Directory name. |
| 81 | e -- Parametrized event (i.e., one that's a list) that invoked this command. | 81 | e -- Parameterized event (i.e., one that's a list) that invoked this command. |
| 82 | If used more than once, the Nth `e' returns the Nth parameterized event. | 82 | If used more than once, the Nth `e' returns the Nth parameterized event. |
| 83 | This skips events that are integers or symbols. | 83 | This skips events that are integers or symbols. |
| 84 | f -- Existing file name. | 84 | f -- Existing file name. |
| @@ -561,7 +561,7 @@ static Lisp_Object Vccl_program_table; | |||
| 561 | If VALn is lambda, move to the next map set like reaching to the | 561 | If VALn is lambda, move to the next map set like reaching to the |
| 562 | end of the current map set. | 562 | end of the current map set. |
| 563 | 563 | ||
| 564 | If VALn is a symbol, call the CCL program refered by it. | 564 | If VALn is a symbol, call the CCL program referred by it. |
| 565 | Then, use reg[rrr] as a mapped value except for -1, -2 and -3. | 565 | Then, use reg[rrr] as a mapped value except for -1, -2 and -3. |
| 566 | Such special values are regarded as nil, t, and lambda respectively. | 566 | Such special values are regarded as nil, t, and lambda respectively. |
| 567 | 567 | ||
| @@ -66,7 +66,7 @@ struct cm | |||
| 66 | location */ | 66 | location */ |
| 67 | unsigned int cm_autolf:1; /* \r performs a \r\n (rn) */ | 67 | unsigned int cm_autolf:1; /* \r performs a \r\n (rn) */ |
| 68 | 68 | ||
| 69 | /* Parametrized capabilities. This needs to be a struct since | 69 | /* Parameterized capabilities. This needs to be a struct since |
| 70 | the costs are accessed through pointers. */ | 70 | the costs are accessed through pointers. */ |
| 71 | 71 | ||
| 72 | #if 0 | 72 | #if 0 |
diff --git a/src/fringe.c b/src/fringe.c index 61fd2f2b998..da896e07b76 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -35,7 +35,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 35 | Logical bitmaps are used internally to denote things like | 35 | Logical bitmaps are used internally to denote things like |
| 36 | 'end-of-buffer', 'left-truncation', 'overlay-arrow', etc. | 36 | 'end-of-buffer', 'left-truncation', 'overlay-arrow', etc. |
| 37 | 37 | ||
| 38 | Physical bitmaps specify the visual appearence of the bitmap, | 38 | Physical bitmaps specify the visual appearance of the bitmap, |
| 39 | e.g. 'bottom-left-angle', 'left-arrow', 'left-triangle', etc. | 39 | e.g. 'bottom-left-angle', 'left-arrow', 'left-triangle', etc. |
| 40 | User defined bitmaps are physical bitmaps. | 40 | User defined bitmaps are physical bitmaps. |
| 41 | 41 | ||
diff --git a/src/process.c b/src/process.c index a02ba44ae71..892bd9820bf 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3717,7 +3717,7 @@ DEFUN ("network-interface-info", Fnetwork_interface_info, Snetwork_interface_inf | |||
| 3717 | doc: /* Return information about network interface named IFNAME. | 3717 | doc: /* Return information about network interface named IFNAME. |
| 3718 | The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS), | 3718 | The return value is a list (ADDR BCAST NETMASK HWADDR FLAGS), |
| 3719 | where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address, | 3719 | where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address, |
| 3720 | NETMASK is the layer 3 network mask, HWADDR is the layer 2 addres, and | 3720 | NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and |
| 3721 | FLAGS is the current flags of the interface. */) | 3721 | FLAGS is the current flags of the interface. */) |
| 3722 | (Lisp_Object ifname) | 3722 | (Lisp_Object ifname) |
| 3723 | { | 3723 | { |