diff options
| author | Glenn Morris | 2008-01-04 03:10:53 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-01-04 03:10:53 +0000 |
| commit | a70c9a7a88b4988d7170dbc934f6ff27ffe663d0 (patch) | |
| tree | 6ad9a0ff0cca25f8e294d815e2548900b56cb180 | |
| parent | a408ea1716e73d673f725a354d6963f645da842f (diff) | |
| download | emacs-a70c9a7a88b4988d7170dbc934f6ff27ffe663d0.tar.gz emacs-a70c9a7a88b4988d7170dbc934f6ff27ffe663d0.zip | |
(set-copyright): Add lib-src/ebrowse.c.
| -rw-r--r-- | admin/ChangeLog | 4 | ||||
| -rw-r--r-- | admin/admin.el | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 516cecfbb6d..31ff5af2bac 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-04 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * admin.el (set-copyright): Add lib-src/ebrowse.c. | ||
| 4 | |||
| 1 | 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * CPP-DEFINES: New file. | 7 | * CPP-DEFINES: New file. |
diff --git a/admin/admin.el b/admin/admin.el index a490442a44b..1255649c888 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; admin.el --- utilities for Emacs administration | 1 | ;;; admin.el --- utilities for Emacs administration |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 | 3 | ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
| 4 | ;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; This file is part of GNU Emacs. | 6 | ;; This file is part of GNU Emacs. |
| @@ -162,6 +162,9 @@ Root must be the root of an Emacs source tree." | |||
| 162 | (set-version-in-file root "lisp/version.el" copyright | 162 | (set-version-in-file root "lisp/version.el" copyright |
| 163 | (rx (and "emacs-copyright" (0+ space) | 163 | (rx (and "emacs-copyright" (0+ space) |
| 164 | ?\" (submatch (1+ (not (in ?\")))) ?\"))) | 164 | ?\" (submatch (1+ (not (in ?\")))) ?\"))) |
| 165 | (set-version-in-file root "lib-src/ebrowse.c" copyright | ||
| 166 | (rx (and "emacs_copyright" (0+ (not (in ?\"))) | ||
| 167 | ?\" (submatch (1+ (not (in ?\")))) ?\"))) | ||
| 165 | (set-version-in-file root "lib-src/etags.c" copyright | 168 | (set-version-in-file root "lib-src/etags.c" copyright |
| 166 | (rx (and "emacs_copyright" (0+ (not (in ?\"))) | 169 | (rx (and "emacs_copyright" (0+ (not (in ?\"))) |
| 167 | ?\" (submatch (1+ (not (in ?\")))) ?\"))) | 170 | ?\" (submatch (1+ (not (in ?\")))) ?\"))) |