summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/float.el5
-rw-r--r--lisp/emacs-lisp/helper.el7
2 files changed, 7 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/float.el b/lisp/emacs-lisp/float.el
index 3c2921c506f..d01ba1e291d 100644
--- a/lisp/emacs-lisp/float.el
+++ b/lisp/emacs-lisp/float.el
@@ -1,3 +1,5 @@
+;;; float.el --- floating point arithmetic package.
+
;; Copyright (C) 1986 Free Software Foundation, Inc.
;; Author Bill Rosenblatt
@@ -17,8 +19,6 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-;; Floating point arithmetic package.
-;;
;; Floating point numbers are represented by dot-pairs (mant . exp)
;; where mant is the 24-bit signed integral mantissa and exp is the
;; base 2 exponent.
@@ -447,3 +447,4 @@ are recognized."
(provide 'float)
+;;; float.el ends here
diff --git a/lisp/emacs-lisp/helper.el b/lisp/emacs-lisp/helper.el
index 0064bc66e07..e3565856f56 100644
--- a/lisp/emacs-lisp/helper.el
+++ b/lisp/emacs-lisp/helper.el
@@ -1,5 +1,4 @@
-;; helper - utility help package for modes which want to provide help
-;; without relinquishing control, e.g. `electric' modes.
+;;; helper.el --- utility help package supporting help in electric modes
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; Principal author K. Shane Hartman
@@ -147,4 +146,6 @@
(ding)
(setq continue nil))))))
-(provide 'helper) \ No newline at end of file
+(provide 'helper)
+
+;;; helper.el ends here