diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 15:58:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 15:58:09 +0000 |
commit | 1281134abed3f933af16eb78863f19d0fadc8d22 (patch) | |
tree | 5978354572eeed479b1e5bfb6cc4b0990ff6dd81 /lisp/hippie-exp.el | |
parent | 87742f0063dc5fba514410ac46d4838d8233de21 (diff) | |
download | emacs-1281134abed3f933af16eb78863f19d0fadc8d22.tar.gz |
Add standard library headers.
Diffstat (limited to 'lisp/hippie-exp.el')
-rw-r--r-- | lisp/hippie-exp.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index 1d2f647ecf2..0080136c8e4 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el @@ -1,4 +1,8 @@ -;; Expand a word trying various ways to find its expansion. +;;; hippie.el --- expand a word trying various ways to find its expansion. + +;; Author: Anders Holst <aho@sans.kth.se> +;; Keywords: extensions + ;; Copyright (C) 1992 Free Software Foundation, Inc. ;; ;; This file is part of GNU Emacs. @@ -17,12 +21,9 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. ;; -;; Author: Anders Holst (aho@sans.kth.se) -;; ;; Last change: 4 January 1993 -;; -;; DESCRIPTION +;; Commentary: ;; ;; `hippie-expand' is a single function for a lot of different kinds ;; of completions and expansions. Called repeatedly it tries all @@ -124,6 +125,7 @@ ;; how to improve it. ;; +;; Code: (defvar he-num -1) @@ -672,3 +674,4 @@ string). It returns t if a new expansion is found, nil otherwise." (skip-chars-forward "-_.") (point)))) +;;; hippie.el ends here |