]> code.delx.au - gnu-emacs/commitdiff
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-196
authorMiles Bader <miles@gnu.org>
Sat, 10 Apr 2004 05:55:49 +0000 (05:55 +0000)
committerMiles Bader <miles@gnu.org>
Sat, 10 Apr 2004 05:55:49 +0000 (05:55 +0000)
Remove RCS keywords

2004-04-10  Miles Bader  <miles@gnu.org>

   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.

87 files changed:
lisp/ChangeLog
lisp/allout.el
lisp/calendar/todo-mode.el
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/cl-specs.el
lisp/emacs-lisp/eldoc.el
lisp/forms.el
lisp/ldefs-boot.el
lisp/mail/metamail.el
lisp/net/rlogin.el
lisp/obsolete/rsz-mini.el
lisp/progmodes/ada-mode.el
lisp/progmodes/ada-prj.el
lisp/progmodes/ada-stmt.el
lisp/progmodes/autoconf.el
lisp/progmodes/delphi.el
lisp/progmodes/idlw-shell.el
lisp/progmodes/idlw-toolbar.el
lisp/progmodes/idlwave.el
lisp/progmodes/tcl.el
lisp/progmodes/vhdl-mode.el
lisp/recentf.el
lisp/type-break.el
lisp/url/url-about.el
lisp/url/url-auth.el
lisp/url/url-cache.el
lisp/url/url-cid.el
lisp/url/url-cookie.el
lisp/url/url-dav.el
lisp/url/url-dired.el
lisp/url/url-expand.el
lisp/url/url-file.el
lisp/url/url-ftp.el
lisp/url/url-gw.el
lisp/url/url-handlers.el
lisp/url/url-history.el
lisp/url/url-http.el
lisp/url/url-https.el
lisp/url/url-imap.el
lisp/url/url-irc.el
lisp/url/url-ldap.el
lisp/url/url-mailto.el
lisp/url/url-methods.el
lisp/url/url-misc.el
lisp/url/url-news.el
lisp/url/url-nfs.el
lisp/url/url-ns.el
lisp/url/url-parse.el
lisp/url/url-privacy.el
lisp/url/url-proxy.el
lisp/url/url-util.el
lisp/url/url-vars.el
lisp/url/url.el
lisp/url/vc-dav.el
lisp/whitespace.el
oldXMenu/Activate.c
oldXMenu/AddPane.c
oldXMenu/AddSel.c
oldXMenu/ChgPane.c
oldXMenu/ChgSel.c
oldXMenu/Create.c
oldXMenu/DelPane.c
oldXMenu/DelSel.c
oldXMenu/Destroy.c
oldXMenu/Error.c
oldXMenu/EvHand.c
oldXMenu/FindPane.c
oldXMenu/FindSel.c
oldXMenu/InsPane.c
oldXMenu/InsSel.c
oldXMenu/Internal.c
oldXMenu/Locate.c
oldXMenu/Post.c
oldXMenu/Recomp.c
oldXMenu/SetAEQ.c
oldXMenu/SetFrz.c
oldXMenu/SetPane.c
oldXMenu/SetSel.c
oldXMenu/X10.h
oldXMenu/XCrAssoc.c
oldXMenu/XDelAssoc.c
oldXMenu/XDestAssoc.c
oldXMenu/XLookAssoc.c
oldXMenu/XMakeAssoc.c
oldXMenu/XMenu.h
oldXMenu/XMenuInt.h
oldXMenu/copyright.h

index 1bf1fe7d51ce89f01245fecc619d1185497b3e8e..ba1c748ab51a0226fab392150e865c4b45dcff29 100644 (file)
@@ -1,3 +1,18 @@
+2004-04-10  Miles Bader  <miles@gnu.org>
+
+       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  <harder@ifa.au.dk>
 
        * info.el (info-apropos): Improve menu item regexp.
index dc036637dfc00aecc96935c0108651e008642c94..3fa04449e16af596421e9dca9be0d06a83e5940a 100644 (file)
@@ -5,7 +5,6 @@
 ;; Author: Ken Manheimer <klm@zope.com>
 ;; Maintainer: Ken Manheimer <klm@zope.com>
 ;; 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 @@ behavior."
 ;;;_  : 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)
index 7962a446eab349a637668eb9d3188b0412e065b9..0caedee7c8aafc7bf8be2d090509b8927ee170fe 100644 (file)
@@ -5,7 +5,6 @@
 ;; Author: Oliver Seidel <os10000@seidel-space.de>
 ;;   [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.
 ;;      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
index e2a228c0d79a1a1cbb7de5b9a29e05a575cd0f1b..220a7d8d92d46d9c259ec07039a4050526552cd8 100644 (file)
@@ -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 @@ With argument, insert value in current buffer after the form."
            " 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")
index 10aade7dc757ddb70d4ac659dcf19519e0136bbb..97c7d67ac536c07c88f36bf3003879154ef43c37 100644 (file)
@@ -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.
 
index 650b385ff451530cfc71289e6416cb0654e77aeb..bc868759d92eac80a20f27b0a6d39ffa80ae9b5f 100644 (file)
@@ -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
index 76d4bc48c4d7f0d151bf510300d5f4a8c58772e2..aa0582c918ac4a8e72c2775ebdbc76b66e766c2c 100644 (file)
 (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 @@ Commands:                        Equivalent keys in read-only mode:
       ;;(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"
index cbdb4fcb911bb6c0ff677069929f79a23bb7c54e..15d3eb0eb95454a42f89f5c911bc1341a7184d0e 100644 (file)
@@ -78,7 +78,6 @@ name
 
 (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}
index d64616dba8ed54fdc9c2d0eb6acaa16a355e0f26..1ecedf515f940a96fc36c70f358fce2eb8071bc9 100644 (file)
@@ -3,7 +3,6 @@
 ;; Copyright (C) 1993, 1996  Free Software Foundation, Inc.
 
 ;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
-;; 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.
index 772756033eb331b91ea166ef64a2210bce264c1b..fa7e0d1950e774fc01b2fd98e2173f5f65e52566 100644 (file)
@@ -6,8 +6,6 @@
 ;; Maintainer: Noah Friedman <friedman@splode.com>
 ;; 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
index f2f32964f5db83a3d54a06ff705b895c5aee8c4f..d44a88df801e24ae66376ae4732a60b1bcc3781c 100644 (file)
@@ -7,8 +7,6 @@
 ;; Maintainer: Noah Friedman <friedman@splode.com>
 ;; 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
index 310e2bc88898f33677f18fe9da52d94dff82d535..edfa1859cc2dc070644dc8d9714846c55f6686c1 100644 (file)
@@ -1071,7 +1071,6 @@ name"
 ;;;###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}
index 30bdfc4ae41ede0476fdbac290b903e570880ec4..de37da142c13a11a27745aa3b3d88b53602995a8 100644 (file)
@@ -3,7 +3,6 @@
 ;; Copyright (C) 1998, 99, 2000-2003 Free Software Foundation, Inc.
 
 ;; Author: Emmanuel Briot <briot@gnat.com>
-;; Ada Core Technologies's version:   $Revision: 1.12 $
 ;; Keywords: languages, ada, project file
 
 ;; This file is part of GNU Emacs.
index 7b9f76492801b55379fe51647de04c3b3c85b1ec..3262f41bb5f8a38e78153c15dc1503e60c08f687 100644 (file)
@@ -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 <ebert@waporo.muc.de>
index 09342e463c9cf097c90ef5427419c5686c2e9591..5bdb1fb25ebad986f94a56d7f866e48e7c67558d 100644 (file)
@@ -4,7 +4,6 @@
 
 ;; Author: Dave Love <fx@gnu.org>
 ;; Keywords: languages
-;; $Revision: 1.5 $
 
 ;; This file is part of GNU Emacs.
 
index ee4ca4b578686156708ea26c5168789625300e73..4ebbc54969712f8bf71e760ec520457a4911b610 100644 (file)
 
 (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)
index af62d1e3e74cd0a71629d2c0e2ecac662a8fdf3b..a600939ef71fb6eebf11d11332452a6712423b99 100644 (file)
@@ -5,7 +5,6 @@
 ;;         Chris Chase <chase@att.com>
 ;; Maintainer: J.D. Smith <jdsmith@as.arizona.edu>
 ;; Version: 4.15
-;; Date: $Date: 2002/10/17 15:41:01 $
 ;; Keywords: processes
 
 ;; This file is part of GNU Emacs.
index 79ca7b8d75be3df6794b6595c8eaa84787d3d397..dc28938d5c5c5fab03fcbb6c396d22d4b0959c5a 100644 (file)
@@ -4,7 +4,6 @@
 ;; Author: Carsten Dominik <dominik@astro.uva.nl>
 ;; Maintainer: J.D. Smith <jdsmith@as.arizona.edu>
 ;; Version: 4.15
-;; Date: $Date: 2003/02/04 13:24:35 $
 ;; Keywords: processes
 
 ;; This file is part of GNU Emacs.
index 83bf03f7c46e87eaeb28fefe3949d7ea90f6b07a..a49f70aa0b05d836344a8ffe4fdd2103a02e242d 100644 (file)
@@ -5,7 +5,6 @@
 ;;         Chris Chase <chase@att.com>
 ;; Maintainer: J.D. Smith <jdsmith@as.arizona.edu>
 ;; Version: 4.15
-;; Date: $Date: 2003/09/01 15:45:35 $
 ;; Keywords: languages
 
 ;; This file is part of GNU Emacs.
index db04986d54b286936cebbd4d9fe6bc99eaf7c26a..ac370cc10307ae9ebbd75d6b1faffeedaa45d9db 100644 (file)
@@ -6,7 +6,6 @@
 ;; Author: Tom Tromey <tromey@redhat.com>
 ;;    Chris Lindblad <cjl@lcs.mit.edu>
 ;; Keywords: languages tcl modes
-;; Version: $Revision: 1.75 $
 
 ;; This file is part of GNU Emacs.
 
index 87ca4f11bd475156d202bc41847f4a9ae96c2d29..42aabace4d2078d41a2577bb1fc2d3d99a9aea5c 100644 (file)
@@ -5,7 +5,6 @@
 ;; Authors:     Reto Zimmermann <reto@gnu.org>
 ;;              Rodney J. Whitby <software.vhdl-mode@rwhitby.net>
 ;; Maintainer:  Reto Zimmermann <reto@gnu.org>
-;; 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
 
index f2700fcf21045664659fb385e6b91ae7f0b3fa11..7e3798224577ff07e17dc93388cc7d17b745386c 100644 (file)
@@ -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
index b03cb6800220fb53d0ccccb6641e1b8b8012ef34..26ac7f87ecbb78b93a33b2a6c3cb8e364900552c 100644 (file)
@@ -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
index 00d0d5953041906a0f8bd85a6f6931a030f1741b..0586c76d6f966e66a4f44a99ec7f58732040bd33 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 4165f44484ab2ccc1ba4cc8960cfef8f5daf8045..e730a73eee342cae854ee67011b4880bfffa470f 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 7a6cc21383e13a390d7701c0415df46822ac3ca4..e76186faefcf38311d57a7d3fd9e8de64e2c0254 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 38ddd002daf610ef7ed6bb384e142789821c8ed7..537412c95d263f436cc422a0f72d06d49bd70141 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index d837077ade07150eee81b457b9d9e1cdac3dcc29..2b359f8554bb77fcb78ef9d03a7b65f9e066c2a1 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 573bcc26ce075c19ee7ae97dbd769aa6ef1144e7..4e744b3da7675592797f2ac4bf79e6a304cd88ac 100644 (file)
@@ -4,7 +4,6 @@
 
 ;; Author: Bill Perry <wmperry@gnu.org>
 ;; Maintainer: Bill Perry <wmperry@gnu.org>
-;; Version: $Revision: 1.1.1.1 $
 ;; Keywords: url, vc
 
 ;; GNU Emacs is free software; you can redistribute it and/or modify
index 0c97ff9dc13af48ba8949b9211cbc12889b15563..da22ddc9a786dfc1fa6977010657bfb5841ccd12 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 8fe9683acda352dd4ba2397220ad713c1f9dcaca..71b31a17c830f5370446200561d808c389db2f16 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index eeabc83e48516204b0e63e5aa9ff22f5e80ec8fd..9cacf9bd4686817ae24be3bb8351da7d2c8ae5fb 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 1dc679a2418eb482ad0b9ec3f8e4ffdf3429b728..925a6fb52386b0f251555787a8c47a6cc1c79aa4 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 71e73ea14b7e90e5fcfdeb8b2e58d302b07c005d..538d607d327581d63ed1e80bf222e7566530cd37 100644 (file)
@@ -1,7 +1,5 @@
 ;;; url-gw.el --- Gateway munging for URL loading
 ;; Author: Bill Perry <wmperry@gnu.org>
-;; Created: $Date: 2004/04/04 01:21:46 $
-;; $Revision: 1.1.1.1 $
 ;; Keywords: comm, data, processes
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index d3f9800d0f01b5ebc0b0a79a740fa79a18844f48..4ef398cc9b3282e4b7658a71b1e1f4bef89bca9e 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 44b269eeaeec1fc6178cea843a030bb4a6fe61cb..633c22d18875f1377e2899649a2b9943ba830b16 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index c0c0dd68a3131b87d084312452573a89df94dca4..6596225e1110c87c18358f1832663e4c04214bfa 100644 (file)
@@ -1,6 +1,5 @@
 ;;; url-http.el --- HTTP retrieval routines
 ;; Author: Bill Perry <wmperry@gnu.org>
-;; Version: $Revision: 1.1.1.1 $
 ;; Keywords: comm, data, processes
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index d603740357e232c0d99cda829bbd4208f030e8df..9754cd1b976567c8fb8f524390f01117f39fe8fa 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index d5f1813a2941ae623ac3bc9986c3ed863df221d4..f99e607e3f6f6f6a4d47c50a959f874f16ce8207 100644 (file)
@@ -1,7 +1,5 @@
 ;;; url-imap.el --- IMAP retrieval routines
 ;; Author: Simon Josefsson <jas@pdc.kth.se>
-;; Created: $Date: 2004/04/04 01:21:46 $
-;; Version: $Revision: 1.1.1.1 $
 ;; Keywords: comm, data, processes
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 9ff4e122d527b09c366d92ccb409ec3026b28dc9..6b62761d97ae8f79b429b35c98d358e7597e6b14 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index b2d7980be0697ed9654c8c9301ce09f81f421961..a36ea05a490140664a5ac69f28308684417d95ce 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index a8492834711be467a3617d918b77e78f89ce1caa..98ca6a9e62ab564c646f834b806c83d4c205cdc3 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 89325e6c0b307f4aad5f044d425aff9f23b1e4a0..de457f5202a6b82783aad33e971d4ecab9ddb9b8 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 95a26ec401634d7811c2584694534fa840afd57c..f6962f4fdeebeece1c14825658ab2867822f5c64 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 298c51dde89ac11cf6568ad9473eafd89baba09c..8dc75608f4daffe95e0773dcbab6cf780a98f506 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index a7ea476a647f373d7aac00b8d2f09a67b1c5cdc0..c0ac4f5cb45d33e6db82352648f8d7b9083659f0 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 759d2e00c1cfa473bc427e7a66b7dc198c8d242d..87304d4b31f66e23f9a4b75f5290302ea6985087 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index dd08bc458bc9c43659c332f288dd80b4689c4cba..23837990b66020dbddc631327e1f355c747ce7c5 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 00c5d899258cb3f5f0fdab9e27a3c1d1c6ba8f12..9fcfe8f04a3dc8dc1c6905550f61d18dec191834 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 9b4fdad09e5547c1bca1bafb9afaae6f6282c0ba..5f4b341ab04c13b79a9e0cedc2c4f41051c9217f 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 109d88d5ebca4ba37010b4d5196f298cb9ec6b4c..1472febd05c72b98a29d7810e4e6ed71d2e75771 100644 (file)
@@ -1,7 +1,5 @@
 ;;; url-util.el --- Miscellaneous helper routines for URL library
 ;; Author: Bill Perry <wmperry@gnu.org>
-;; Created: $Date: 2004/04/04 01:21:46 $
-;; Version: $Revision: 1.1.1.1 $
 ;; Keywords: comm, data, processes
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 54698d33273e3deec5a10ab577636c9862c1e40d..27b83541504b6361e355f6f7b8c3f07194cfac92 100644 (file)
@@ -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
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 (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
index 34b8b03e8650eefc5f99e827dc91e1efc752bbc8..269e7d437ce1224f053af1805b62475994b74da5 100644 (file)
@@ -1,6 +1,5 @@
 ;;; url.el --- Uniform Resource Locator retrieval tool
 ;; Author: Bill Perry <wmperry@gnu.org>
-;; Version: $Revision: 1.1.1.1 $
 ;; Keywords: comm, data, processes, hypermedia
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
index 3f468900441f4d3951a331d395e8f4d70564e7a4..e0e32f5da1a276aab8da8d3c734ac229f0e10899 100644 (file)
@@ -4,7 +4,6 @@
 
 ;; Author: Bill Perry <wmperry@gnu.org>
 ;; Maintainer: Bill Perry <wmperry@gnu.org>
-;; Version: $Revision: 1.1.1.1 $
 ;; Keywords: url, vc
 
 ;; GNU Emacs is free software; you can redistribute it and/or modify
index edff77211e01aaaf9ff97a5eba3388c4b2b066b3..e330febf93814bfd3a8c4c8fb545440dc0237482 100644 (file)
@@ -5,7 +5,6 @@
 ;; Author: Rajesh Vaidheeswarran <rv@gnu.org>
 ;; 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
index de4109cb444a5bb1ca7e8427b648114fa51b9262..840c423471bda0764d95168d60cb8c15545c6dd2 100644 (file)
@@ -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"
index 5e1dcee0f88ae54ca850e8a38692c797663fff69..b7b52c0f642a0451623a885e894e184e17ea9457 100644 (file)
@@ -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  */
 
 /*
index 8a8e9dff50e0a890ef74b27c0a091b555c913c4a..40bbbde704c271112cbb2e31c4718c5f1b31442e 100644 (file)
@@ -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  */
 
 /*
index e92be93a2da1f26fd424c71d274e71d9b6708810..123f18dec5a75f32d72cd150663e49d9a3842fed 100644 (file)
@@ -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  */
 
 /*
index 60b2b2c909c9319088c85ea9906f7296b1977873..7dce694c41093d99d7dd736d7b0010d9b053fdb2 100644 (file)
@@ -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  */
 
 /*
index 9dcfeada285fad6290c14f4a789c7b5ef0a2d15e..bac3f079f605b5c481cb768358bf3890c1120c94 100644 (file)
@@ -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"
index aaa91db1e65abbe45a95c95cdfc5b9be30edb705..bdb084b36f363b905cd7bd58a51bfd55373dbb0c 100644 (file)
@@ -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  */
 
 /*
index 2b5cc7f7457842ce67713ac4e0f6e20ecea35d94..78b731131629183945faf7df5cabce9f617f0efd 100644 (file)
@@ -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  */
 
 /*
index 150d3e13544ab813c8700ed1309ca26ae1188e65..8d904a538729879c57dcf70d547e18a18f7ccae4 100644 (file)
@@ -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  */
 
 /*
index 400070827d94e5d5eda6cfa95ee3b3009a92c920..1eb521b164210925b5ce4d3f189d341923070cc2 100644 (file)
@@ -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  */
 
 /*
index 6e335a1b6607a0b33b85f803b35a68453bd6a2b9..073d0ab90b4eee465f376e5e1b3166d1e2fa7cb0 100644 (file)
@@ -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  */
 
 /*
index 7950bc431aa9fd038e9cbfa233ac2dc90f1c28f0..945d4595cab26c7d63052d5a0049c771119d0276 100644 (file)
@@ -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  */
 
 /*
index af3ce1324a6a33224bb2f9bda1fbe65a7e2da494..1fed11147322dd7c28f0eef2919eb4a168ec5d94 100644 (file)
@@ -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  */
 
 /*
index 63116e63010cb8a2cfef907261bf3f34fb6c63a4..682423a4a05ce5363e25ae5c582aa0d18b68318e 100644 (file)
@@ -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  */
 
 /*
index f2b6b2627b496860dc7ae0af35fe6b8af4d32813..f3e2c4d7fb004819a46857a063ef1fe3a09dabec 100644 (file)
@@ -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  */
 
 /*
index 70a917a8eff25701cc409f8dd191da0a77a91e4f..f1367a073519769f355308d07660551c12c279ac 100644 (file)
@@ -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  */
 
 /*
index 1fbae84c88102aca3654637c8a717008ac62bae7..47db7fa11032acead4418c4b32c70073bfa399cd 100644 (file)
@@ -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  */
 
 /*
index 8d850ca0815f9c8147b6a219df6e733abe132ade..3b39d796823e0320411d91458b596ac8f7ca45b5 100644 (file)
@@ -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  */
 
 /*
index 952bf9f4b5403e7474e2acf76f3514df3995f260..b4bc4da3f725224dd486a72c1251521aec601ea7 100644 (file)
@@ -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  */
 
 /*
index 3a3900400aa16340aef5799ce27a0c4cce0bf0bd..daddc1aa9467912b08c311cd633cd4bb73845e3c 100644 (file)
@@ -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  */
 
 /*
index 556eb0bf06b98174c51fcfaf95218099508236af..243cc64e0ed861d768f393175a2a4ecc8619d0b2 100644 (file)
@@ -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  */
 
 /*
index 2c51e6189379ae13a1080dde1590d947e4b2b449..39a87ac5ce3497b557c5fc036b7d8920e300c197 100644 (file)
@@ -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  */
 
 /*
index cd67d79aeb282682d5d0e5f0994c90de0a003d88..4fe0c82a1317a2c1c56088de79a4e1589a92c3b6 100644 (file)
@@ -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  */
 
 /*
index 4ffe45adac8024fd8d7012361b31c859f02eccbb..e1abcbbe6c599efca939f5d8dc1bc0b0e651fbab 100644 (file)
@@ -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
  *
index 71c2aa204044d3ee96cf9b3645a5d127cef7f174..67239a26d311383c3aee47745c62c9b107092a20 100644 (file)
@@ -1,4 +1,3 @@
-/* $XConsortium: XCrAssoc.c,v 10.17 91/01/06 12:04:57 rws Exp $ */
 /* Copyright    Massachusetts Institute of Technology    1985  */
 
 /*
index a4c4b9f514d3857c3e891f5fa6ea902d6e23f9d0..1c72447f931195a60d747774b6303296f7ae2e2f 100644 (file)
@@ -1,4 +1,3 @@
-/* $XConsortium: XDelAssoc.c,v 10.19 91/01/06 12:06:39 rws Exp $ */
 /* Copyright    Massachusetts Institute of Technology    1985  */
 
 /*
index 84b7a4ddc2e10cf3da359219fd76a65c3cbf106b..137c49f613d39aec7fbac933fceeed4192bab627 100644 (file)
@@ -1,4 +1,3 @@
-/* $XConsortium: XDestAssoc.c,v 10.17 91/02/08 13:11:50 rws Exp $ */
 /* Copyright    Massachusetts Institute of Technology    1985  */
 
 /*
index 788eaaa4e1ece3364b98d921b23b9afe85c19f76..ea7303bad6132a3c15696d6ae97245cdc584f369 100644 (file)
@@ -1,4 +1,3 @@
-/* $XConsortium: XLookAssoc.c,v 10.16 91/01/06 12:09:24 rws Exp $ */
 /* Copyright    Massachusetts Institute of Technology    1985  */
 
 /*
index 408342d1c797b2a58e4570141631f5a997079261..ffe19adc41036be1907d0b504aaeddce0425f3f8 100644 (file)
@@ -1,4 +1,3 @@
-/* $XConsortium: XMakeAssoc.c,v 10.18 91/01/06 12:09:28 rws Exp $ */
 /* Copyright    Massachusetts Institute of Technology    1985  */
 
 /*
index c679a91e362d81970bdaa658240da0173b99efd4..fde2a954620d57251d3e101a346b9d1fa2862d11 100644 (file)
@@ -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  */
 
 /*
index 8e48645a2ce6eef76a0f40b24d4ce74979031835..e96dfb1e9109f9293928cd2321e47f6be48bb205 100644 (file)
@@ -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  */
 
 /*
index 7b426cdb39859a515cf59450f484706408b37f13..c5a4316043dfa492dcff6648d3f84d8e17e5f51f 100644 (file)
@@ -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