diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2011-10-21 09:39:58 (GMT) | 
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2011-10-21 09:39:58 (GMT) | 
| commit | 493eb35da9c0446d62d38ce70216452efb5d76bb (patch) | |
| tree | f38f16e67506a1d3b51b425a259e46acc521244a | |
| parent | 4a087424ee3051e279b02ad1e63c157baf46a1eb (diff) | |
| download | tcl-493eb35da9c0446d62d38ce70216452efb5d76bb.zip tcl-493eb35da9c0446d62d38ce70216452efb5d76bb.tar.gz tcl-493eb35da9c0446d62d38ce70216452efb5d76bb.tar.bz2  | |
MINOR: Add emacs style info to end of C files.
| -rw-r--r-- | unix/tclUnixTest.c | 19 | ||||
| -rw-r--r-- | unix/tclXtTest.c | 9 | ||||
| -rw-r--r-- | win/tclWinError.c | 9 | 
3 files changed, 32 insertions, 5 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 0d79e47..46fc972 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -6,8 +6,8 @@   * Copyright (c) 1996-1997 Sun Microsystems, Inc.   * Copyright (c) 1998 by Scriptics Corporation.   * - * See the file "license.terms" for information on usage and redistribution - * of this file, and for a DISCLAIMER OF ALL WARRANTIES. + * See the file "license.terms" for information on usage and redistribution of + * this file, and for a DISCLAIMER OF ALL WARRANTIES.   */  #ifndef USE_TCL_STUBS @@ -38,8 +38,8 @@   */  typedef struct Pipe { -    TclFile readFile;		/* File handle for reading from the pipe. -				 * NULL means pipe doesn't exist yet. */ +    TclFile readFile;		/* File handle for reading from the pipe. NULL +				 * means pipe doesn't exist yet. */      TclFile writeFile;		/* File handle for writing from the pipe. */      int readCount;		/* Number of times the file handler for this  				 * file has triggered and the file was @@ -699,7 +699,7 @@ TestchmodCmd(      char *rest;      if (argc < 2) { -	usage: +    usage:  	Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],  		" mode file ?file ...?", NULL);  	return TCL_ERROR; @@ -727,3 +727,12 @@ TestchmodCmd(      }      return TCL_OK;  } + +/* + * Local Variables: + * mode: c + * c-basic-offset: 4 + * fill-column: 78 + * tab-width: 8 + * End: + */ diff --git a/unix/tclXtTest.c b/unix/tclXtTest.c index 93bcc81..fcb0773 100644 --- a/unix/tclXtTest.c +++ b/unix/tclXtTest.c @@ -124,3 +124,12 @@ TesteventloopCmd(      }      return TCL_OK;  } + +/* + * Local Variables: + * mode: c + * c-basic-offset: 4 + * fill-column: 78 + * tab-width: 8 + * End: + */ diff --git a/win/tclWinError.c b/win/tclWinError.c index ca1b0e8..4fee02b 100644 --- a/win/tclWinError.c +++ b/win/tclWinError.c @@ -387,3 +387,12 @@ TclWinConvertWSAError(  	Tcl_SetErrno(EINVAL);      }  } + +/* + * Local Variables: + * mode: c + * c-basic-offset: 4 + * fill-column: 78 + * tab-width: 8 + * End: + */  | 
