aboutsummaryrefslogtreecommitdiff
path: root/src/hyper
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-05-10 15:11:24 +0000
committerIgor Pashev <pashev.igor@gmail.com>2012-05-10 15:11:24 +0000
commit233928c5bd284cd18a2b3eaa3e9774c145ae9c16 (patch)
treebe1bc5f327cf01fb7174f0618ff4bcdf2d6f6de8 /src/hyper
parent8fc10cb2dc9d313aa8c0c9c149f2d559d86d20d2 (diff)
downloadopen-axiom-233928c5bd284cd18a2b3eaa3e9774c145ae9c16.tar.gz
* hyper/initx.c: Fixed spelling errors.
* hyper/macro.c (parse_macro): Likewise. * sman/sman.c (manage_spad_io): Likewise.
Diffstat (limited to 'src/hyper')
-rw-r--r--src/hyper/initx.c2
-rw-r--r--src/hyper/macro.c6
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++];
}