1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

Some fixes to follow coding conventions in files maintained by FSF.

This commit is contained in:
Pavel Janík 2001-07-15 16:15:35 +00:00
parent 401aa47973
commit 5553563924
125 changed files with 2427 additions and 158 deletions

View file

@ -468,4 +468,4 @@ the Emacs source tree, from which to build the file."
(authors root)
(write-file file)))
;; authors.el ends here
;;; authors.el ends here

View file

@ -210,4 +210,4 @@ Vectors work just like lists. Nested backquotes are permitted."
tail))
(t (cons 'list heads)))))
;; backquote.el ends here
;;; backquote.el ends here

View file

@ -1,4 +1,4 @@
;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler.
;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler
;;; Copyright (c) 1991, 1994, 2000, 2001 Free Software Foundation, Inc.
@ -188,7 +188,7 @@
(defun byte-compile-log-lap-1 (format &rest args)
(if (aref byte-code-vector 0)
(error "The old version of the disassembler is loaded. Reload new-bytecomp as well."))
(error "The old version of the disassembler is loaded. Reload new-bytecomp as well"))
(byte-compile-log-1
(apply 'format format
(let (c a)

View file

@ -1,4 +1,4 @@
;;; bytecomp.el --- compilation of Lisp code into byte code.
;;; bytecomp.el --- compilation of Lisp code into byte code
;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1998, 2000
;; Free Software Foundation, Inc.
@ -10,7 +10,7 @@
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
(defconst byte-compile-version "$Revision: 2.82 $")
(defconst byte-compile-version "$Revision: 2.83 $")
;; This file is part of GNU Emacs.

View file

@ -1,4 +1,4 @@
;;; float.el --- obsolete floating point arithmetic package.
;;; float.el --- obsolete floating point arithmetic package
;; Copyright (C) 1986 Free Software Foundation, Inc.

View file

@ -1,4 +1,4 @@
;;; gulp.el --- Ask for updates for Lisp packages
;;; gulp.el --- ask for updates for Lisp packages
;; Copyright (C) 1996 Free Software Foundation, Inc.

View file

@ -23,6 +23,8 @@
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;;; Code:
;; hey, here's a helping hand.

View file

@ -1,4 +1,4 @@
;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands
;; Copyright (C) 1985, 1986, 1999, 2000, 2001 Free Software Foundation, Inc.

View file

@ -1,4 +1,4 @@
;;; regexp-opt.el --- generate efficient regexps to match strings.
;;; regexp-opt.el --- generate efficient regexps to match strings
;; Copyright (C) 1994,95,96,97,98,99,2000 Free Software Foundation, Inc.