aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/hyper/initx.c2
-rw-r--r--src/hyper/macro.c6
-rw-r--r--src/sman/sman.c2
4 files changed, 11 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 370422dd..4c04d2fd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2012-05-10 Igor Pashev <pashev.igor@gmail.com>
+
+ * hyper/initx.c: Fixed spelling errors.
+ * hyper/macro.c (parse_macro): Likewise.
+ * sman/sman.c (manage_spad_io): Likewise.
+
2012-05-09 Gabriel Dos Reis <gdr@cs.tamu.edu>
* interp/io.boot (carriageRetChar?): New.
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++];
}
diff --git a/src/sman/sman.c b/src/sman/sman.c
index ae117040..bddbdfc3 100644
--- a/src/sman/sman.c
+++ b/src/sman/sman.c
@@ -665,7 +665,7 @@ manage_spad_io(int ptcNum)
printf("\n");
break;
default:
- printf("sman: Unkown connection request type: %d\n", p);
+ printf("sman: Unknown connection request type: %d\n", p);
break;
}
}