comparison lisp/emacs-lisp/elint.el @ 59506:3da5314608ab

Fixed typo in Commentary section.
author Reiner Steib <Reiner.Steib@gmx.de>
date Wed, 12 Jan 2005 16:07:42 +0000
parents f3ac898990de
children 964ef053b1bc cb67264d6096
comparison
equal deleted inserted replaced
59505:19b4e3d63aed 59506:3da5314608ab
27 27
28 ;; This is a linter for Emacs Lisp. Currently, it mainly catches 28 ;; This is a linter for Emacs Lisp. Currently, it mainly catches
29 ;; mispellings and undefined variables, although it can also catch 29 ;; mispellings and undefined variables, although it can also catch
30 ;; function calls with the wrong number of arguments. 30 ;; function calls with the wrong number of arguments.
31 31
32 ;; Before using, call `elint-initialize' to set up som argument 32 ;; Before using, call `elint-initialize' to set up some argument
33 ;; data. This takes a while. Then call elint-current-buffer or 33 ;; data. This takes a while. Then call elint-current-buffer or
34 ;; elint-defun to lint a buffer or a defun. 34 ;; elint-defun to lint a buffer or a defun.
35 35
36 ;; The linter will try to "include" any require'd libraries to find 36 ;; The linter will try to "include" any require'd libraries to find
37 ;; the variables defined in those. There is a fair amount of voodoo 37 ;; the variables defined in those. There is a fair amount of voodoo