diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-10-07 15:48:02 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-10-07 15:48:02 -0400 |
commit | 795b1482a9e314cda32d62ac2988f573d359366e (patch) | |
tree | cf564c0e20916f00e333c34d507d92823797c329 /lisp/newcomment.el | |
parent | f27c99dc7ef8f19e7a378001d8b3d906ca907dae (diff) | |
download | emacs-795b1482a9e314cda32d62ac2988f573d359366e.tar.gz |
* lisp/subr.el (read-passwd-map): Don't use `defconst'.
(read-passwd): Remove a few more potential sources of leaks.
Fixes: debbugs:12597
Diffstat (limited to 'lisp/newcomment.el')
-rw-r--r-- | lisp/newcomment.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el index a7fedf20f53..6d2eed71948 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -327,8 +327,8 @@ terminated by the end of line (i.e. `comment-end' is empty)." ;;;###autoload (defun comment-normalize-vars (&optional noerror) "Check and setup the variables needed by other commenting functions. -Functions autoloaded from newcomment.el, being entry points, should call -this function before any other, so the rest of the code can assume that +Any command calling functions from newcomment.el, being entry points, should +call this function before any other, so the rest of the code can assume that the variables are properly set." (unless (and (not comment-start) noerror) (unless comment-start |