comparison modules/sample/external/sample.c @ 4737:dce479915b74

Clarify the GPL status of several sample module files. J. Kean Johnston already approved the release of his works under a GPL version 2 or later license, and I originally intended my work to be released under such a license. See xemacs-patches message with ID <870180fe0911091206k52ef683dme3c81d3d4eb825bf@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Mon, 09 Nov 2009 13:07:56 -0700
parents 25e260cb7994
children dd9541c73e70
comparison
equal deleted inserted replaced
4736:d261888e5069 4737:dce479915b74
1 /* 1 /*
2 * Very simple sample module. Illustrates most of the salient features 2 * Very simple sample module. Illustrates most of the salient features
3 * of Emacs dynamic modules. 3 * of Emacs dynamic modules.
4 * (C) Copyright 1998, 1999 J. Kean Johnston. All rights reserved. 4 * (C) Copyright 1998, 1999 J. Kean Johnston. All rights reserved.
5 * (C) Copyright 2002 Jerry James. 5 * (C) Copyright 2002 Jerry James.
6 *
7 * This sample module code is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
6 */ 11 */
7 12
8 #include <config.h> 13 #include <config.h>
9 #include "lisp.h" 14 #include "lisp.h"
10 15