diff options
| author | Glenn Morris | 2008-02-02 04:35:05 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-02-02 04:35:05 +0000 |
| commit | 7e14d905634fb54fd5f26e6c51d3427e44e77fb8 (patch) | |
| tree | 8fb6818b6b1fc5d857a20b675059f5e3dbe768a0 | |
| parent | a9871c726e8363dc1aa0afb8d4571046fc5384e5 (diff) | |
| download | emacs-7e14d905634fb54fd5f26e6c51d3427e44e77fb8.tar.gz emacs-7e14d905634fb54fd5f26e6c51d3427e44e77fb8.zip | |
Update copyright years and GPL version.
| -rw-r--r-- | lisp/ChangeLog | 29 | ||||
| -rw-r--r-- | src/ftfont.h | 4 | ||||
| -rw-r--r-- | src/w32font.c | 4 | ||||
| -rw-r--r-- | src/w32font.h | 4 |
4 files changed, 35 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 76bcaefcfcf..729418fa56c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,32 @@ | |||
| 1 | 2008-02-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * international/latin1-disp.el (latin1-display): | ||
| 4 | * progmodes/fortran.el (fortran-comment-indent-char): | ||
| 5 | * progmodes/idlw-shell.el (top-level): | ||
| 6 | * term/mac-win.el (mac-keyboard-translate-char): | ||
| 7 | * whitespace.el (whitespace-char-valid-p): | ||
| 8 | * wid-edit.el (widget-key-sequence-read-event): | ||
| 9 | Use characterp rather than char-valid-p. | ||
| 10 | |||
| 11 | * progmodes/cap-words.el (capitalized-next-word-boundary): Rename | ||
| 12 | to capitalized-find-word-boundary. Doc fix. Update callers. | ||
| 13 | (capitalized-next-word-boundary-function-table): Rename to | ||
| 14 | capitalized-find-word-boundary-function-table. Doc fix. Update | ||
| 15 | users. | ||
| 16 | |||
| 17 | * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than | ||
| 18 | string-to-int. | ||
| 19 | |||
| 20 | * ps-def.el (declare-function): Add compatibility definition. | ||
| 21 | (ps-plot-with-face, ps-plot-string): Declare as functions. | ||
| 22 | (ps-bold-faces, ps-italic-faces): Declare variables. | ||
| 23 | |||
| 24 | * ps-print.el (ps-mule-initialize, ps-mule-begin-job) | ||
| 25 | (ps-mule-end-job): Declare as functions. | ||
| 26 | |||
| 27 | * wid-edit.el (widget-string-complete): Use assoc-string rather | ||
| 28 | than assoc-ignore-case. | ||
| 29 | |||
| 1 | 2008-02-01 Chong Yidong <cyd@stupidchicken.com> | 30 | 2008-02-01 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 31 | ||
| 3 | * progmodes/etags.el (next-file): Improve revert message. | 32 | * progmodes/etags.el (next-file): Improve revert message. |
diff --git a/src/ftfont.h b/src/ftfont.h index bd6d4780186..78d9c20ca28 100644 --- a/src/ftfont.h +++ b/src/ftfont.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* ftfont.h -- Interface definition for Freetype font backend. | 1 | /* ftfont.h -- Interface definition for Freetype font backend. |
| 2 | Copyright (C) 2007 | 2 | Copyright (C) 2007, 2008 |
| 3 | National Institute of Advanced Industrial Science and Technology (AIST) | 3 | National Institute of Advanced Industrial Science and Technology (AIST) |
| 4 | Registration Number H13PRO009 | 4 | Registration Number H13PRO009 |
| 5 | 5 | ||
| @@ -7,7 +7,7 @@ This file is part of GNU Emacs. | |||
| 7 | 7 | ||
| 8 | GNU Emacs is free software; you can redistribute it and/or modify | 8 | GNU Emacs is free software; you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by | 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation; either version 2, or (at your option) | 10 | the Free Software Foundation; either version 3, or (at your option) |
| 11 | any later version. | 11 | any later version. |
| 12 | 12 | ||
| 13 | GNU Emacs is distributed in the hope that it will be useful, | 13 | GNU Emacs is distributed in the hope that it will be useful, |
diff --git a/src/w32font.c b/src/w32font.c index d8ef31ad2cb..619ff7caf98 100644 --- a/src/w32font.c +++ b/src/w32font.c | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | /* Font backend for the Microsoft W32 API. | 1 | /* Font backend for the Microsoft W32 API. |
| 2 | Copyright (C) 2007 Free Software Foundation, Inc. | 2 | Copyright (C) 2007, 2008 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2, or (at your option) | 8 | the Free Software Foundation; either version 3, or (at your option) |
| 9 | any later version. | 9 | any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | GNU Emacs is distributed in the hope that it will be useful, |
diff --git a/src/w32font.h b/src/w32font.h index 54aa5ef9b19..dd71405bf0a 100644 --- a/src/w32font.h +++ b/src/w32font.h | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | /* Shared GDI and Uniscribe Font backend declarations for the W32 API. | 1 | /* Shared GDI and Uniscribe Font backend declarations for the W32 API. |
| 2 | Copyright (C) 2007 Free Software Foundation, Inc. | 2 | Copyright (C) 2007, 2008 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2, or (at your option) | 8 | the Free Software Foundation; either version 3, or (at your option) |
| 9 | any later version. | 9 | any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | GNU Emacs is distributed in the hope that it will be useful, |