Skip to content

Commit

Permalink
From libreoffice: spelling, RCS tag removal.
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Feb 28, 2015
1 parent fa9790e commit 00f52d9
Show file tree
Hide file tree
Showing 29 changed files with 47 additions and 79 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
* msdos/runargv.c, tests/recipes-9, unix/runargv.c:

#i80598# Always issue a warning if the actual execution of a recipe line
(this does not include sucessfully executed, but failing programs) fails.
(this does not include successfully executed, but failing programs) fails.

2007-09-24 17:45 vq

Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ AC_TYPE_SIGNAL
AC_FUNC_UTIME_NULL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(getcwd getwd strerror setvbuf tzset settz mkstemp tempnam gettimeofday setenv)
# Usefull, but special to newlib/MSVC
# Useful, but special to newlib/MSVC
AC_CHECK_FUNCS(strlwr)

dnl *** output to disk ***
Expand Down
2 changes: 1 addition & 1 deletion dbug/dbug/dbug.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ LOCAL BOOLEAN DoProfile (); /* Check if profiling is enabled */

/* Supplied in Sys V runtime environ */
LOCAL char *strtok (); /* Break string into tokens */
LOCAL char *strrchr (); /* Find last occurance of char */
LOCAL char *strrchr (); /* Find last occurrence of char */

/*
* The following local variables are used to hold the state information
Expand Down
6 changes: 3 additions & 3 deletions dbug/malloc/_readme
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Features of this library:
beyound the size requested on the initial malloc is checked to
verify that it is still filled with the original fill characters.

This is usefull for catching things like:
This is useful for catching things like:

ptr = malloc(5);
ptr[5] = '\0';
Expand All @@ -41,7 +41,7 @@ Features of this library:
so that you can easily determine if you are still using free'd space.
The fill pattern for free'd areas is 0x02.

This is usefull for catching things like:
This is useful for catching things like:

ptr = malloc(20);

Expand All @@ -67,7 +67,7 @@ Features of this library:
If the operation goes beyond requested malloc space
call malloc_warning()

This is usefull for catching things like:
This is useful for catching things like:

ptr = malloc(5);
strcpy(ptr,"abcde");
Expand Down
6 changes: 2 additions & 4 deletions dmake.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: dmake.c,v $
-- $Revision: 1.13 $
-- last change: $Author: kz $ $Date: 2008-03-05 18:28:04 $
/*
--
-- SYNOPSIS
-- The main program.
Expand Down Expand Up @@ -292,7 +290,7 @@ char **argv;
HASHPTR hp;
/* This cleans the .SILENT setting */
hp = Def_macro(".SILENT", "", M_EXPANDED);
/* This overrides the bitmask for further occurences of
/* This overrides the bitmask for further occurrences of
* .SILENT to "no bits allowed", see bit variables in the
* set_macro_value() definition in dag.c.
* The bitmask is already set by Create_macro_vars() in
Expand Down
2 changes: 1 addition & 1 deletion dmstring.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ char *str;
PUBLIC char *
DmStrPbrk( s1, s2 )/*
====================
find first occurence of char in s2 in string s1.
find first occurrence of char in s2 in string s1.
Returns a pointer to the first occurrence. NOTE '\0' is considered part
of s2 and a pointer to it is returned if no other chars match. */

Expand Down
4 changes: 1 addition & 3 deletions expand.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: expand.c,v $
-- $Revision: 1.8 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:38:46 $
/*
--
-- SYNOPSIS
-- Macro expansion code.
Expand Down
8 changes: 3 additions & 5 deletions extern.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: extern.h,v $
-- $Revision: 1.13 $
-- last change: $Author: kz $ $Date: 2008-03-05 18:28:27 $
/*
--
-- SYNOPSIS
-- External declarations for dmake functions.
Expand Down Expand Up @@ -132,8 +130,8 @@ char *cygdospath(char *src, int winpath);
#endif


/* Define some usefull macros. This is done here and not in config.h
* to keep this changes usefull even when not using the autotools based
/* Define some useful macros. This is done here and not in config.h
* to keep this changes useful even when not using the autotools based
* build, i.e. using config.h files that are local to the architecture. */
#if defined(_WIN32) || defined(__CYGWIN__) || defined(MSDOS) || defined(OS2) || defined(__EMX__)
# define HAVE_DRIVE_LETTERS 1
Expand Down
20 changes: 9 additions & 11 deletions function.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: function.c,v $
-- $Revision: 1.12 $
-- last change: $Author: kz $ $Date: 2008-03-05 18:28:45 $
/*
--
-- SYNOPSIS
-- GNU style functions for dmake.
Expand Down Expand Up @@ -80,7 +78,7 @@ char *buf;
}
}

/* ??? Some function macros expect comma seperated parameters, but
/* ??? Some function macros expect comma separated parameters, but
* no decent parser is included. The desirable solution would be
* to parse fname for the correct number of parameters in fname
* when a function is recognized. We only count the parameters
Expand Down Expand Up @@ -115,7 +113,7 @@ char *buf;
if( mod_count == 2 )
res = _exec_iseq(mod1,mod2,args,TRUE);
else
Fatal( "Two comma-seperated arguments expected in [%s].\n", buf );
Fatal( "Two comma-separated arguments expected in [%s].\n", buf );
else if (strncmp(fname,"echo",4) == 0)
res = _exec_echo(args);
else
Expand All @@ -127,7 +125,7 @@ char *buf;
if( mod_count == 2 )
res = _exec_foreach(mod1,mod2,args);
else
Fatal( "Two comma-seperated arguments expected in [%s].\n", buf );
Fatal( "Two comma-separated arguments expected in [%s].\n", buf );
else
res = _exec_call(fname,args);
break;
Expand All @@ -137,7 +135,7 @@ char *buf;
if( mod_count < 3 )
res = _exec_mktmp(mod1,mod2,args);
else
Fatal( "Maximal two comma-seperated arguments expected in [%s].\n", buf );
Fatal( "Maximal two comma-separated arguments expected in [%s].\n", buf );
else
res = _exec_call(fname,args);
break;
Expand Down Expand Up @@ -171,7 +169,7 @@ char *buf;
FREE(para);
}
else
Fatal( "One or no comma-seperated arguments expected in [%s].\n", buf );
Fatal( "One or no comma-separated arguments expected in [%s].\n", buf );

FREE(eargs);
}
Expand All @@ -186,7 +184,7 @@ char *buf;
if( mod_count == 2 )
res = _exec_iseq(mod1,mod2,args,FALSE);
else
Fatal( "Two comma-seperated arguments expected in [%s].\n", buf );
Fatal( "Two comma-separated arguments expected in [%s].\n", buf );
else
res = _exec_call(fname,args);
break;
Expand Down Expand Up @@ -214,14 +212,14 @@ char *buf;
FREE(emod);
}
else
Fatal( "One or no comma-seperated arguments expected in [%s].\n", buf );
Fatal( "One or no comma-separated arguments expected in [%s].\n", buf );
else if(strncmp(fname,"strip",5)==0)
res = Tokenize(Expand(args)," ",'t',TRUE);
else if(strncmp(fname,"subst",5)==0) {
if( mod_count == 2 )
res = _exec_subst(mod1,mod2,args);
else
Fatal( "Two comma-seperated arguments expected in [%s].\n", buf );
Fatal( "Two comma-separated arguments expected in [%s].\n", buf );
}
else
res = _exec_call(fname,args);
Expand Down
4 changes: 1 addition & 3 deletions infer.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: infer.c,v $
-- $Revision: 1.8 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:39:49 $
/*
--
-- SYNOPSIS
-- Infer how to make a target.
Expand Down
10 changes: 4 additions & 6 deletions make.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: make.c,v $
-- $Revision: 1.12 $
-- last change: $Author: kz $ $Date: 2008-03-05 18:29:19 $
/*
--
-- SYNOPSIS
-- Perform the update of all outdated targets.
Expand Down Expand Up @@ -527,7 +525,7 @@ CELLPTR setdirroot;
* than one prerequisite. */
/* A new A_DYNAMIC attribute could save a lot of strchr( ,'$') calls. */
if ( tcp && !(tcp->ce_flag & F_MARK) && strchr(tcp->CE_NAME, '$') ) {
/* Replace this dynamic prerequisite with the the real prerequisite,
/* Replace this dynamic prerequisite with the real prerequisite,
* and add the additional prerequisites if there are more than one.*/

name = Expand( tcp->CE_NAME );
Expand All @@ -548,7 +546,7 @@ CELLPTR setdirroot;
}
}

/* Dynamic expansion results in a NULL cell only when the the new
/* Dynamic expansion results in a NULL cell only when the new
* prerequisite is already in the prerequisite list or empty. In this
* case delete the cell and continue. */
if ( tcp == NIL(CELL) ) {
Expand Down Expand Up @@ -1255,7 +1253,7 @@ Exec_commands( cp )/*
The function returns 0, if the command is executed and has successfully
returned, and it returns 1 if the command is executing but has not yet
returned or -1 if an error occured (Return value from Do_cmnd()).
returned or -1 if an error occurred (Return value from Do_cmnd()).
Macros that are found in recipe lines are expanded in this function, in
parallel builds this can mean they are expanded before the previous recipe
Expand Down
2 changes: 1 addition & 1 deletion man/dmake.nc
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ DMAKE(1) DMAKE(1)
m Notify of target update operations only.
r Force output of recipe lines, warnings and executed com-
mands. This switch is usefull when debugging makefiles
mands. This switch is useful when debugging makefiles
that disable the output using the @ or @@ property for
recipe lines or the .SILENT target/attribute. It also
overrides the -s flag.
Expand Down
2 changes: 1 addition & 1 deletion man/dmake.tf
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Notify of inference algorithm operation only.
Notify of target update operations only.
.IP "\fBr\fP"
Force output of recipe lines, warnings and executed commands. This switch
is usefull when debugging makefiles that disable the output using the @
is useful when debugging makefiles that disable the output using the @
or @@ property for recipe lines or the .SILENT target/attribute.
It also overrides the -s flag.
.IP "\fBt\fP"
Expand Down
2 changes: 1 addition & 1 deletion msdos/exec.asm
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ reset_file_resource proc near
mov bx, [tmphandle]
xor cx, cx
mov dx, cx
mov ax, 04200H ; seek to begining of file
mov ax, 04200H ; seek to beginning of file
int 21H
ret
reset_file_resource endp
Expand Down
4 changes: 1 addition & 3 deletions parse.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: parse.c,v $
-- $Revision: 1.8 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:40:45 $
/*
--
-- SYNOPSIS
-- Parse the input, and perform semantic analysis
Expand Down
2 changes: 1 addition & 1 deletion path.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ char *path;

#ifdef HAVE_DRIVE_LETTERS

/* Change all occurences from DirBrkStr to *DirSepStr. This assumes
/* Change all occurrences from DirBrkStr to *DirSepStr. This assumes
* that when HAVE_DRIVE_LETTERS is set the directory separator is
* either '\' or '/'. */
if (*DirSepStr == '/')
Expand Down
4 changes: 1 addition & 3 deletions quit.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: quit.c,v $
-- $Revision: 1.8 $
-- last change: $Author: kz $ $Date: 2008-03-05 18:29:56 $
/*
--
-- SYNOPSIS
-- End the dmake session.
Expand Down
2 changes: 1 addition & 1 deletion readme/read1st.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ a directory of your choice. You may also want to copy the man/
sub-directory for future access to the manual page.


All other systems might look in the public/ directory for usefull hints.
All other systems might look in the public/ directory for useful hints.


The original sources of dmake were available on http://dmake.wticorp.com.
Expand Down
2 changes: 1 addition & 1 deletion readme/release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ NEW FEATURES:
how it works. Any macro that is not a predefined function macro and
is invoked with parameters is looked up as a user defined function
macro. A new macro scope is created. The n'th argument to the
macro is then assigned to the value of the the macro $n where n is 0
macro is then assigned to the value of the macro $n where n is 0
for the first argument, 1 for the second argument and so on. The
argument is expanded before it is assigned. The original macro is
then expanded. For example:
Expand Down
4 changes: 1 addition & 3 deletions stdmacs.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: stdmacs.h,v $
-- $Revision: 1.5 $
-- last change: $Author: hr $ $Date: 2006-04-20 12:02:29 $
/*
--
-- SYNOPSIS
-- General use macros.
Expand Down
6 changes: 3 additions & 3 deletions sysintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-- the second group is ideally provided by the C lib. However, there
-- are instances where the C lib implementation of the specified routine
-- does not exist, or is incorrect. In these instances the routine
-- must be provided by the the user in the system/ directory of dmake.
-- must be provided by the user in the system/ directory of dmake.
-- (For example, the bsd/ dir contains code for putenv(), and tempnam())
--
-- DMAKE SPECIFIC:
Expand Down Expand Up @@ -278,7 +278,7 @@ int last; /* Last recipe line in target. */
DB_RETURN( 0 );
}

/* Stop making the rest of the recipies for this target if an error occured
/* Stop making the rest of the recipes for this target if an error occurred
* but the Continue (-k) flag is set to build as much as possible. */
if ( target->ce_attr & A_ERROR ) {
if ( last ) {
Expand Down Expand Up @@ -737,7 +737,7 @@ Start_temp( suffix, cp, fname )/*
created. This is done because the routines that create a save temporary
file do not provide a definable suffix. The first (provided by Get_temp())
is save and unique and the second file is generated by adding the desired
suffix the the first temporary file. The extra file is also linked to cp
suffix to the first temporary file. The extra file is also linked to cp
so that it gets removed later.
The function returns the FILE pointer to the temporary file (with suffix
if specified) and leaves the file name in *fname.
Expand Down
2 changes: 1 addition & 1 deletion unix/coherent/ver40/vfprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* than int in argument passing. If this is definded, and LONGINT is not,
* the compiler must support the type unsingned long.
*
* Most quirks and bugs of the available fprintf fuction are duplicated,
* Most quirks and bugs of the available fprintf function are duplicated,
* however * in the width and precision fields will work correctly
* even if fprintf does not support this. The %n format and the return
* count will only work if fprintf returns the number of characters
Expand Down
4 changes: 1 addition & 3 deletions unix/cygwin/public.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: public.h,v $
-- $Revision: 1.9 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:55:15 $
/*
--
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
Expand Down
4 changes: 1 addition & 3 deletions unix/dcache.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: dcache.c,v $
-- $Revision: 1.9 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:52:47 $
/*
--
-- SYNOPSIS
-- Directory cache management routines.
Expand Down
4 changes: 1 addition & 3 deletions unix/linux/gnu/public.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: public.h,v $
-- $Revision: 1.9 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:55:29 $
/*
--
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
Expand Down
4 changes: 1 addition & 3 deletions unix/os2/public.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: public.h,v $
-- $Revision: 1.2 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:55:51 $
/*
--
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
Expand Down
4 changes: 1 addition & 3 deletions unix/rmprq.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: rmprq.c,v $
-- $Revision: 1.5 $
-- last change: $Author: obo $ $Date: 2007-06-12 06:09:05 $
/*
--
-- SYNOPSIS
-- Remove prerequisites code.
Expand Down
4 changes: 1 addition & 3 deletions unix/ruletab.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: ruletab.c,v $
-- $Revision: 1.9 $
-- last change: $Author: ihi $ $Date: 2007-10-15 15:53:13 $
/*
--
-- SYNOPSIS
-- Default initial configuration of dmake.
Expand Down
4 changes: 1 addition & 3 deletions win95/microsft/config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* $RCSfile: config.h,v $
-- $Revision: 1.14 $
-- last change: $Author: kz $ $Date: 2008-03-05 18:40:17 $
/*
--
-- SYNOPSIS
-- Configurarion include file.
Expand Down

0 comments on commit 00f52d9

Please sign in to comment.