* progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first line.
authorJohn Yates <john@yates-sheets.org>
Wed, 21 Mar 2012 17:02:09 +0000 (01:02 +0800)
committerChong Yidong <cyd@gnu.org>
Wed, 21 Mar 2012 17:02:09 +0000 (01:02 +0800)
Fixes: debbugs:10855

lisp/ChangeLog
lisp/progmodes/hideshow.el

index db86097..5a82dd4 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
+
+       * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
+       line (Bug#10855).
+
 2012-03-21  Drew Adams  <drew.adams@oracle.com>
 
        * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
index 104a8f9..26db60d 100644 (file)
@@ -607,6 +607,7 @@ as cdr."
     ;; forward comment, and see if we are inside, then extend
     ;; forward and backward as long as we have comments
     (let ((q (point)))
+      (skip-chars-forward "[:blank:]")
       (when (or (looking-at hs-c-start-regexp)
                 (re-search-backward hs-c-start-regexp (point-min) t))
         ;; first get to the beginning of this comment...