+2007-01-09 martin rudalics <rudalics@gmx.at>
+
+ * wdired.el (wdired-xcase-word): Skip non-word read-only
+ characters.
+
2007-01-09 Kenichi Handa <handa@m17n.org>
* international/mule-cmds.el
(funcall command 1)
(setq arg (1- arg)))
(error
- (if (not (forward-word 1))
- (setq arg 0)))))))
+ (if (forward-word)
+ ;; Skip any non-word characters to avoid triggering a read-only
+ ;; error which would cause skipping the next word characters too.
+ (skip-syntax-forward "^w")
+ (setq arg 0)))))))
(defun wdired-downcase-word (arg)
"WDired version of `downcase-word'.