# HG changeset patch # User Stefan Monnier # Date 1120027477 0 # Node ID 5448f90c05f7ca448ba514c5fc70d3cb8f85d95d # Parent 8c653abf3d8b28529d65da80f47523acf9003785 (comment-indent-default): Don't get fooled by an early end of buffer. diff -r 8c653abf3d8b -r 5448f90c05f7 lisp/newcomment.el --- a/lisp/newcomment.el Wed Jun 29 02:16:08 2005 +0000 +++ b/lisp/newcomment.el Wed Jun 29 06:44:37 2005 +0000 @@ -502,7 +502,7 @@ (or (match-end 1) (/= (current-column) (current-indentation)))) 0 (when (or (/= (current-column) (current-indentation)) - (and (> comment-add 0) (looking-at "\\s<\\S<"))) + (and (> comment-add 0) (looking-at "\\s<\\(\\S<\\|\\'\\)"))) comment-column))) ;;;###autoload