comment-start-skip, since it fails when that uses submatch 1.
Fixes: debbugs:16041
\f
* Changes in Specialized Modes and Packages in Emacs 24.4
+** CUA-mode
+CUA-mode was changed to make use of delete-selection-mode and
+shift-select-mode. So you can now enable it independently from
+transient-mark-mode, delete-selection-mode, and shift-select-mode.
+As a result, cua-highlight-region-shift-only is obsolete
+(you can disable transient-mark-mode to get the same result).
+
** `delete-selection-mode' can be used without transient-mark-mode.
** prolog-use-smie has been removed, along with the non-SMIE indentation code.
2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
+ * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
+ comment-start-skip, since it fails when that uses submatch 1 (bug#16041).
+
* emulation/cua-base.el (cua-paste): Add `delete-selection' property
instead of deleting the selection "by hand" (bug#16098).
Rely on insert-for-yank to yank rectangles.
(forward-char 1))
(skip-chars-forward " \t")
(or (eolp)
- (and (looking-at comment-start-skip)
+ (and ;; (looking-at comment-start-skip) ;(bug#16041).
(forward-comment (point-max))))
(point))))))