]> git.eshelyaron.com Git - emacs.git/commitdiff
(cua--extract-rectangle): Undo recent change re. \s in strings.
authorKim F. Storm <storm@cua.dk>
Fri, 9 Dec 2005 09:10:10 +0000 (09:10 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 9 Dec 2005 09:10:10 +0000 (09:10 +0000)
lisp/ChangeLog
lisp/emulation/cua-rect.el

index bc9d5a3ca7a7b0340c67c6b3a3793de4f2f587d7..d6d3a5488c681004fa4c2540fcad8c78d6b13090 100644 (file)
        (cua--init-rectangles): Always bind C-return to toggle rectangle.
        Pass ?\s instead of 'space to cua--M/H-key and cua--rect-M/H-key.
 
-       * emulation/cua-rect.el (cua--extract-rectangle): Don't use \s
-       in strings.
-
        * ido.el: Move Acknowledgements and History after Commentary.
        Minor changes to Commentary.
 
index 46974089dc248a29b17207f8c41f43a6cbd06695..aa82e148aff4a7a41b875505d2e90515fd28ad71 100644 (file)
@@ -641,11 +641,11 @@ If command is repeated at same position, delete the rectangle."
             (if (= (point) (line-end-position))
                 (setq bs (- r l)
                       copy nil)
-              (skip-chars-forward " \t" e)
+              (skip-chars-forward "\s\t" e)
               (setq bs (- (min r (current-column)) l)
                     s (point))
               (move-to-column r)
-              (skip-chars-backward " \t" s)
+              (skip-chars-backward "\s\t" s)
               (setq as (- r (max (current-column) l))
                     e (point)))
                     (setq row (if (and copy (> e s))