1
0
mirror of https://github.com/irssi/irssi.git synced 2025-02-02 15:08:01 -05:00

Fix 'defination' typo.

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4996 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2009-01-20 14:15:01 +00:00 committed by exg
parent 9fd6a3f3cf
commit db1b74b7f9
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@
signal. Don't bother to do this unless your signal is sent (or could be
sent) several times in a second.
See src/core/signals.h for defination of the signal function, and
See src/core/signals.h for definition of the signal function, and
signals.txt for a list of signals.

View File

@ -403,7 +403,7 @@ static void command_calc_options(COMMAND_REC *rec, const char *options)
oldopt = optlist_find(list, name);
if (oldopt != NULL) {
/* already specified - overwrite old defination */
/* already specified - overwrite old definition */
g_free(oldopt->data);
oldopt->data = g_strdup(*tmp);
} else {
@ -561,7 +561,7 @@ static int get_cmd_options(char **data, int ignore_unknown,
char *option, *arg, **optlist;
int pos;
/* get option definations */
/* get option definitions */
rec = cmd == NULL ? NULL : command_find(cmd);
optlist = rec == NULL ? NULL : rec->options;