diff options
Diffstat (limited to 'src/hyper')
-rw-r--r-- | src/hyper/initx.c | 2 | ||||
-rw-r--r-- | src/hyper/macro.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/hyper/initx.c b/src/hyper/initx.c index 8f072dbd..9dc6fb66 100644 --- a/src/hyper/initx.c +++ b/src/hyper/initx.c @@ -499,7 +499,7 @@ open_window(Window w) } /*** - This routine gets and sets the size for a new window. If the w paramter + This routine gets and sets the size for a new window. If the w parameter is null, it means that this is the initial window. Thus the user preferences are checked. If this is not the first window, then the window w is used as a guidline, and the new window is placed on top of diff --git a/src/hyper/macro.c b/src/hyper/macro.c index 596506c6..b68c87b0 100644 --- a/src/hyper/macro.c +++ b/src/hyper/macro.c @@ -268,7 +268,7 @@ parse_macro(void) return 1; else { fprintf(stderr, - "parse_macro: Tried to pop an empty paramter stack\n"); + "parse_macro: Tried to pop an empty parameter stack\n"); longjmp(jmpbuf, 1); } } @@ -322,7 +322,7 @@ get_parameter_strings(int number,char * macro_name) *buffer_pntr++ = c; break; case '#': - /* uh oh, I have a paramter reference inside a paramter */ + /* uh oh, I have a parameter reference inside a parameter */ /* get the number */ if (parameters == NULL) { *buffer_pntr++ = c; @@ -347,7 +347,7 @@ get_parameter_strings(int number,char * macro_name) pnum_chars[pc] = '\0'; pnum = atoi(pnum_chars); pc = 0; - /* Now copy the paramter */ + /* Now copy the parameter */ while ((parameters->list)[pnum - 1][pc] != '\0') *buffer_pntr++ = (parameters->list)[pnum - 1][pc++]; } |