# HG changeset patch # User Miles Bader # Date 1081576549 0 # Node ID e8824c4f5f7e3e5045716e7f419921e0331d11bc # Parent 133eee6d0d98fb4c9f91a7bef72a6f4ea98acfa0 Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-196 Remove RCS keywords 2004-04-10 Miles Bader RCS keyword removal (only non-comment changes are enumerated here): * lisp/emacs-lisp/bytecomp.el (byte-compile-version): Variable removed. (byte-compile-insert-header): Don't use `byte-compile-version'. * lisp/url/url-vars.el (url-version): Use the constant string "Emacs" instead of calculating something from the RCS `State' keyword [the latter is almost entirely useless anyway]. * lisp/forms.el (forms-version): Variable removed. (forms-mode): Don't use `forms-version'. * lisp/recentf.el (recentf-version): Variable removed. * lisp/progmodes/delphi.el (delphi-version): Variable removed. * lisp/progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/ChangeLog --- a/lisp/ChangeLog Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/ChangeLog Sat Apr 10 05:55:49 2004 +0000 @@ -1,3 +1,18 @@ +2004-04-10 Miles Bader + + RCS keyword removal (only non-comment changes are enumerated here): + + * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed. + (byte-compile-insert-header): Don't use `byte-compile-version'. + * url/url-vars.el (url-version): Use the constant string "Emacs" + instead of calculating something from the RCS `State' keyword + [the latter is almost entirely useless anyway]. + * forms.el (forms-version): Variable removed. + (forms-mode): Don't use `forms-version'. + * recentf.el (recentf-version): Variable removed. + * progmodes/delphi.el (delphi-version): Variable removed. + * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring. + 2004-04-09 Jesper Harder * info.el (info-apropos): Improve menu item regexp. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/allout.el --- a/lisp/allout.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/allout.el Sat Apr 10 05:55:49 2004 +0000 @@ -5,7 +5,6 @@ ;; Author: Ken Manheimer ;; Maintainer: Ken Manheimer ;; Created: Dec 1991 - first release to usenet -;; Version: $Id: allout.el,v 1.46 2004/03/01 22:44:04 lektu Exp $|| ;; Keywords: outlines mode wp languages ;; This file is part of GNU Emacs. @@ -508,7 +507,7 @@ ;;;_ : Version ;;;_ = allout-version (defvar allout-version - (let ((rcs-rev "$Revision: 1.46 $")) + (let ((rcs-rev "$Revision: 1.47 $")) (condition-case err (save-match-data (string-match "Revision: \\([0-9]+\\.[0-9]+\\)" rcs-rev) diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/calendar/todo-mode.el --- a/lisp/calendar/todo-mode.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/calendar/todo-mode.el Sat Apr 10 05:55:49 2004 +0000 @@ -5,7 +5,6 @@ ;; Author: Oliver Seidel ;; [Not clear the above works, July 2000] ;; Created: 2 Aug 1997 -;; Version: $Id: todo-mode.el,v 1.50 2001/12/11 07:36:30 pj Exp $ ;; Keywords: calendar, todo ;; This file is part of GNU Emacs. @@ -93,12 +92,6 @@ ;; extensions that are not explicitly listed in the above quick ;; installation. ;; -;; Version -;; -;; Which version of todo-mode.el does this documentation refer to? -;; -;; $Id: todo-mode.el,v 1.50 2001/12/11 07:36:30 pj Exp $ -;; ;; Pre-Requisites ;; ;; This package will require the following packages to be diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/emacs-lisp/bytecomp.el --- a/lisp/emacs-lisp/bytecomp.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Sat Apr 10 05:55:49 2004 +0000 @@ -8,10 +8,6 @@ ;; Maintainer: FSF ;; Keywords: lisp -;;; This version incorporates changes up to version 2.10 of the -;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.143 $") - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -1860,10 +1856,7 @@ " on " (current-time-string) "\n;;; from file " filename "\n") (insert ";;; in Emacs version " emacs-version "\n") - (insert ";;; with bytecomp version " - (progn (string-match "[0-9.]+" byte-compile-version) - (match-string 0 byte-compile-version)) - "\n;;; " + (insert ";;; " (cond ((eq byte-optimize 'source) "with source-level optimization only") ((eq byte-optimize 'byte) "with byte-level optimization only") diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/emacs-lisp/cl-specs.el --- a/lisp/emacs-lisp/cl-specs.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/emacs-lisp/cl-specs.el Sat Apr 10 05:55:49 2004 +0000 @@ -7,7 +7,6 @@ ;; LCD Archive Entry: ;; cl-specs.el|Daniel LaLiberte|liberte@holonexus.org ;; |Edebug specs for cl.el -;; |$Date: 2003/06/16 16:27:27 $|1.1| ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/emacs-lisp/eldoc.el --- a/lisp/emacs-lisp/eldoc.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/emacs-lisp/eldoc.el Sat Apr 10 05:55:49 2004 +0000 @@ -7,8 +7,6 @@ ;; Keywords: extensions ;; Created: 1995-10-06 -;; $Id: eldoc.el,v 1.26 2003/09/01 15:45:22 miles Exp $ - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/forms.el --- a/lisp/forms.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/forms.el Sat Apr 10 05:55:49 2004 +0000 @@ -301,11 +301,6 @@ (provide 'forms) ;;; official (provide 'forms-mode) ;;; for compatibility -(defconst forms-version (substring "$Revision: 2.48 $" 11 -2) - "The version number of forms-mode (as string). The complete RCS id is: - - $Id: forms.el,v 2.48 2003/05/29 23:53:21 monnier Exp $") - (defcustom forms-mode-hook nil "Hook run upon entering Forms mode." :group 'forms @@ -694,7 +689,7 @@ ;;(message "forms: proceeding setup (new file)...") (progn (insert - "GNU Emacs Forms Mode version " forms-version "\n\n" + "GNU Emacs Forms Mode\n\n" (if (file-exists-p forms-file) (concat "No records available in file `" forms-file "'\n\n") (format "Creating new file `%s'\nwith %d field%s per record\n\n" diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/ldefs-boot.el --- a/lisp/ldefs-boot.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/ldefs-boot.el Sat Apr 10 05:55:49 2004 +0000 @@ -78,7 +78,6 @@ (autoload (quote ada-mode) "ada-mode" "\ Ada mode is the major mode for editing Ada code. -This version was built on $Date: 2003/09/30 12:54:32 $. Bindings are as follows: (Note: 'LFD' is control-j.) \\{ada-mode-map} diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/mail/metamail.el --- a/lisp/mail/metamail.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/mail/metamail.el Sat Apr 10 05:55:49 2004 +0000 @@ -3,7 +3,6 @@ ;; Copyright (C) 1993, 1996 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA -;; Version: $Id: metamail.el,v 1.15 2003/02/04 13:14:00 lektu Exp $ ;; Keywords: mail, news, mime, multimedia ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/net/rlogin.el --- a/lisp/net/rlogin.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/net/rlogin.el Sat Apr 10 05:55:49 2004 +0000 @@ -6,8 +6,6 @@ ;; Maintainer: Noah Friedman ;; Keywords: unix, comm -;; $Id: rlogin.el,v 1.4 2003/05/06 17:46:28 lektu Exp $ - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/obsolete/rsz-mini.el --- a/lisp/obsolete/rsz-mini.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/obsolete/rsz-mini.el Sat Apr 10 05:55:49 2004 +0000 @@ -7,8 +7,6 @@ ;; Maintainer: Noah Friedman ;; Keywords: minibuffer, window, frame, display -;; $Id: rsz-mini.el,v 1.1 2001/08/30 07:29:18 gerd Exp $ - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/ada-mode.el --- a/lisp/progmodes/ada-mode.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/ada-mode.el Sat Apr 10 05:55:49 2004 +0000 @@ -1071,7 +1071,6 @@ ;;;###autoload (defun ada-mode () "Ada mode is the major mode for editing Ada code. -This version was built on $Date: 2003/09/01 15:45:34 $. Bindings are as follows: (Note: 'LFD' is control-j.) \\{ada-mode-map} diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/ada-prj.el --- a/lisp/progmodes/ada-prj.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/ada-prj.el Sat Apr 10 05:55:49 2004 +0000 @@ -3,7 +3,6 @@ ;; Copyright (C) 1998, 99, 2000-2003 Free Software Foundation, Inc. ;; Author: Emmanuel Briot -;; Ada Core Technologies's version: $Revision: 1.12 $ ;; Keywords: languages, ada, project file ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/ada-stmt.el --- a/lisp/progmodes/ada-stmt.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/ada-stmt.el Sat Apr 10 05:55:49 2004 +0000 @@ -3,8 +3,6 @@ ;; Copyright(C) 1987, 93, 94, 96, 97, 98, 99, 2000 ;; Free Software Foundation, Inc. -;; Ada Core Technologies's version: $Revision: 1.16 $ - ;; This file is part of GNU Emacs. ;; Authors: Daniel Pfeiffer, Markus Heritsch, Rolf Ebert diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/autoconf.el --- a/lisp/progmodes/autoconf.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/autoconf.el Sat Apr 10 05:55:49 2004 +0000 @@ -4,7 +4,6 @@ ;; Author: Dave Love ;; Keywords: languages -;; $Revision: 1.5 $ ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/delphi.el --- a/lisp/progmodes/delphi.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/delphi.el Sat Apr 10 05:55:49 2004 +0000 @@ -64,12 +64,6 @@ (provide 'delphi) -(defconst delphi-version - (let ((revision "$Revision: 3.10 $")) - (string-match ": \\([^ ]+\\)" revision) - (match-string 1 revision)) - "Version of this delphi mode.") - (eval-and-compile ;; Allow execution on pre Emacs 20 versions. (or (fboundp 'when) diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/idlw-shell.el --- a/lisp/progmodes/idlw-shell.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/idlw-shell.el Sat Apr 10 05:55:49 2004 +0000 @@ -5,7 +5,6 @@ ;; Chris Chase ;; Maintainer: J.D. Smith ;; Version: 4.15 -;; Date: $Date: 2002/10/17 15:41:01 $ ;; Keywords: processes ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/idlw-toolbar.el --- a/lisp/progmodes/idlw-toolbar.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/idlw-toolbar.el Sat Apr 10 05:55:49 2004 +0000 @@ -4,7 +4,6 @@ ;; Author: Carsten Dominik ;; Maintainer: J.D. Smith ;; Version: 4.15 -;; Date: $Date: 2003/02/04 13:24:35 $ ;; Keywords: processes ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/idlwave.el --- a/lisp/progmodes/idlwave.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/idlwave.el Sat Apr 10 05:55:49 2004 +0000 @@ -5,7 +5,6 @@ ;; Chris Chase ;; Maintainer: J.D. Smith ;; Version: 4.15 -;; Date: $Date: 2003/09/01 15:45:35 $ ;; Keywords: languages ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/tcl.el --- a/lisp/progmodes/tcl.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/tcl.el Sat Apr 10 05:55:49 2004 +0000 @@ -6,7 +6,6 @@ ;; Author: Tom Tromey ;; Chris Lindblad ;; Keywords: languages tcl modes -;; Version: $Revision: 1.75 $ ;; This file is part of GNU Emacs. diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/progmodes/vhdl-mode.el --- a/lisp/progmodes/vhdl-mode.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/progmodes/vhdl-mode.el Sat Apr 10 05:55:49 2004 +0000 @@ -5,7 +5,6 @@ ;; Authors: Reto Zimmermann ;; Rodney J. Whitby ;; Maintainer: Reto Zimmermann -;; RCS: $Id: vhdl-mode.el,v 1.20 2003/03/05 07:50:38 lektu Exp $ ;; Keywords: languages vhdl ;; WWW: http://opensource.ethz.ch/emacs/vhdl-mode.html diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/recentf.el --- a/lisp/recentf.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/recentf.el Sat Apr 10 05:55:49 2004 +0000 @@ -8,8 +8,6 @@ ;; Maintainer: FSF ;; Keywords: files -(defconst recentf-version "$Revision: 1.27 $") - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/type-break.el --- a/lisp/type-break.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/type-break.el Sat Apr 10 05:55:49 2004 +0000 @@ -8,8 +8,6 @@ ;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs ;; Created: 1994-07-13 -;; $Id: type-break.el,v 1.29 2003/09/01 15:45:17 miles Exp $ - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-about.el --- a/lisp/url/url-about.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-about.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-about.el --- Show internal URLs -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-auth.el --- a/lisp/url/url-auth.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-auth.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-auth.el --- Uniform Resource Locator authorization modules -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-cache.el --- a/lisp/url/url-cache.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-cache.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-cache.el --- Uniform Resource Locator retrieval tool -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-cid.el --- a/lisp/url/url-cid.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-cid.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-cid.el --- Content-ID URL loader -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-cookie.el --- a/lisp/url/url-cookie.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-cookie.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-cookie.el --- Netscape Cookie support -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-dav.el --- a/lisp/url/url-dav.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-dav.el Sat Apr 10 05:55:49 2004 +0000 @@ -4,7 +4,6 @@ ;; Author: Bill Perry ;; Maintainer: Bill Perry -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: url, vc ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-dired.el --- a/lisp/url/url-dired.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-dired.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-dired.el --- URL Dired minor mode -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, files ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-expand.el --- a/lisp/url/url-expand.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-expand.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-expand.el --- expand-file-name for URLs -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-file.el --- a/lisp/url/url-file.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-file.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-file.el --- File retrieval code -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-ftp.el --- a/lisp/url/url-ftp.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-ftp.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-ftp.el --- FTP wrapper -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-gw.el --- a/lisp/url/url-gw.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-gw.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,5 @@ ;;; url-gw.el --- Gateway munging for URL loading ;; Author: Bill Perry -;; Created: $Date: 2004/04/04 01:21:46 $ -;; $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-handlers.el --- a/lisp/url/url-handlers.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-handlers.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-handlers.el --- file-name-handler stuff for URL loading -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-history.el --- a/lisp/url/url-history.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-history.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-history.el --- Global history tracking for URL package -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-http.el --- a/lisp/url/url-http.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-http.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ ;;; url-http.el --- HTTP retrieval routines ;; Author: Bill Perry -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-https.el --- a/lisp/url/url-https.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-https.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-https.el --- HTTP over SSL routines -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-imap.el --- a/lisp/url/url-imap.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-imap.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,5 @@ ;;; url-imap.el --- IMAP retrieval routines ;; Author: Simon Josefsson -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-irc.el --- a/lisp/url/url-irc.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-irc.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-irc.el --- IRC URL interface -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-ldap.el --- a/lisp/url/url-ldap.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-ldap.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-mailto.el --- a/lisp/url/url-mailto.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-mailto.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-mail.el --- Mail Uniform Resource Locator retrieval code -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-methods.el --- a/lisp/url/url-methods.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-methods.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-methods.el --- Load URL schemes as needed -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 03:10:58 $ -;; Version: $Revision: 1.2 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-misc.el --- a/lisp/url/url-misc.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-misc.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-misc.el --- Misc Uniform Resource Locator retrieval code -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-news.el --- a/lisp/url/url-news.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-news.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-news.el --- News Uniform Resource Locator retrieval code -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-nfs.el --- a/lisp/url/url-nfs.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-nfs.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-nfs.el --- NFS URL interface -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-ns.el --- a/lisp/url/url-ns.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-ns.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-ns.el --- Various netscape-ish functions for proxy definitions -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-parse.el --- a/lisp/url/url-parse.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-parse.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-parse.el --- Uniform Resource Locator parser -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 03:10:58 $ -;; Version: $Revision: 1.2 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-privacy.el --- a/lisp/url/url-privacy.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-privacy.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-privacy.el --- Global history tracking for URL package -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-proxy.el --- a/lisp/url/url-proxy.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-proxy.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-proxy.el --- Proxy server support -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-util.el --- a/lisp/url/url-util.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-util.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,5 @@ ;;; url-util.el --- Miscellaneous helper routines for URL library ;; Author: Bill Perry -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url-vars.el --- a/lisp/url/url-vars.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url-vars.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,7 +1,4 @@ ;;; url-vars.el --- Variables for Uniform Resource Locator tool -;; Author: $Author: monnier $ -;; Created: $Date: 2004/04/04 01:21:46 $ -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -29,10 +26,7 @@ (require 'mm-util) (eval-when-compile (require 'cl)) -(defconst url-version (let ((x "$State: Exp $")) - (if (string-match "State: \\([^ \t\n]+\\)" x) - (substring x (match-beginning 1) (match-end 1)) - x)) +(defconst url-version "Emacs" "Version number of URL package.") (defgroup url nil diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/url.el --- a/lisp/url/url.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/url.el Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ ;;; url.el --- Uniform Resource Locator retrieval tool ;; Author: Bill Perry -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/url/vc-dav.el --- a/lisp/url/vc-dav.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/url/vc-dav.el Sat Apr 10 05:55:49 2004 +0000 @@ -4,7 +4,6 @@ ;; Author: Bill Perry ;; Maintainer: Bill Perry -;; Version: $Revision: 1.1.1.1 $ ;; Keywords: url, vc ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e lisp/whitespace.el --- a/lisp/whitespace.el Fri Apr 09 17:32:16 2004 +0000 +++ b/lisp/whitespace.el Sat Apr 10 05:55:49 2004 +0000 @@ -5,7 +5,6 @@ ;; Author: Rajesh Vaidheeswarran ;; Keywords: convenience -;; $Id: whitespace.el,v 1.26 2003/09/01 15:45:18 miles Exp $ ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Activate.c --- a/oldXMenu/Activate.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Activate.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Activate.c,v 1.5 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ #include "copyright.h" diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/AddPane.c --- a/oldXMenu/AddPane.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/AddPane.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/AddPane.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/AddSel.c --- a/oldXMenu/AddSel.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/AddSel.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/AddSel.c,v 1.3 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/ChgPane.c --- a/oldXMenu/ChgPane.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/ChgPane.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/ChgPane.c,v 1.1 1999/10/03 19:34:53 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/ChgSel.c --- a/oldXMenu/ChgSel.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/ChgSel.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/ChgSel.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Create.c --- a/oldXMenu/Create.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Create.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Create.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ #include "copyright.h" diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/DelPane.c --- a/oldXMenu/DelPane.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/DelPane.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/DelPane.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/DelSel.c --- a/oldXMenu/DelSel.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/DelSel.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/DelSel.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Destroy.c --- a/oldXMenu/Destroy.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Destroy.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Destroy.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Error.c --- a/oldXMenu/Error.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Error.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Error.c,v 1.1 1999/10/03 19:35:00 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/EvHand.c --- a/oldXMenu/EvHand.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/EvHand.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/EvHand.c,v 1.1 1999/10/03 19:35:01 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/FindPane.c --- a/oldXMenu/FindPane.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/FindPane.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/FindPane.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/FindSel.c --- a/oldXMenu/FindSel.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/FindSel.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/FindSel.c,v 1.1 1999/10/03 19:35:03 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/InsPane.c --- a/oldXMenu/InsPane.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/InsPane.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/InsPane.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/InsSel.c --- a/oldXMenu/InsSel.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/InsSel.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/InsSel.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Internal.c --- a/oldXMenu/Internal.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Internal.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Internal.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Locate.c --- a/oldXMenu/Locate.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Locate.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Locate.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Post.c --- a/oldXMenu/Post.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Post.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Post.c,v 1.3 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/Recomp.c --- a/oldXMenu/Recomp.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/Recomp.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/Recomp.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/SetAEQ.c --- a/oldXMenu/SetAEQ.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/SetAEQ.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/SetAEQ.c,v 1.1 1999/10/03 19:35:12 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/SetFrz.c --- a/oldXMenu/SetFrz.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/SetFrz.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/SetFrz.c,v 1.1 1999/10/03 19:35:13 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/SetPane.c --- a/oldXMenu/SetPane.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/SetPane.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/SetPane.c,v 1.1 1999/10/03 19:35:14 fx Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/SetSel.c --- a/oldXMenu/SetSel.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/SetSel.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/SetSel.c,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/X10.h --- a/oldXMenu/X10.h Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/X10.h Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $Header: /cvsroot/emacs/emacs/oldXMenu/X10.h,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* * Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology * diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XCrAssoc.c --- a/oldXMenu/XCrAssoc.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XCrAssoc.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $XConsortium: XCrAssoc.c,v 10.17 91/01/06 12:04:57 rws Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XDelAssoc.c --- a/oldXMenu/XDelAssoc.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XDelAssoc.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $XConsortium: XDelAssoc.c,v 10.19 91/01/06 12:06:39 rws Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XDestAssoc.c --- a/oldXMenu/XDestAssoc.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XDestAssoc.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $XConsortium: XDestAssoc.c,v 10.17 91/02/08 13:11:50 rws Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XLookAssoc.c --- a/oldXMenu/XLookAssoc.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XLookAssoc.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $XConsortium: XLookAssoc.c,v 10.16 91/01/06 12:09:24 rws Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XMakeAssoc.c --- a/oldXMenu/XMakeAssoc.c Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XMakeAssoc.c Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $XConsortium: XMakeAssoc.c,v 10.18 91/01/06 12:09:28 rws Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XMenu.h --- a/oldXMenu/XMenu.h Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XMenu.h Sat Apr 10 05:55:49 2004 +0000 @@ -1,6 +1,5 @@ #include "copyright.h" -/* $Header: /cvsroot/emacs/emacs/oldXMenu/XMenu.h,v 1.3 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/XMenuInt.h --- a/oldXMenu/XMenuInt.h Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/XMenuInt.h Sat Apr 10 05:55:49 2004 +0000 @@ -1,5 +1,4 @@ -/* $Header: /cvsroot/emacs/emacs/oldXMenu/XMenuInt.h,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ /* diff -r 133eee6d0d98 -r e8824c4f5f7e oldXMenu/copyright.h --- a/oldXMenu/copyright.h Fri Apr 09 17:32:16 2004 +0000 +++ b/oldXMenu/copyright.h Sat Apr 10 05:55:49 2004 +0000 @@ -1,4 +1,3 @@ -/* $Header: /cvsroot/emacs/emacs/oldXMenu/copyright.h,v 1.1 1999/10/03 19:35:25 fx Exp $ */ /* Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology