+2009-07-14 Chong Yidong <cyd@stupidchicken.com>
+
+ * simple.el (line-move): Call line-move-1 if lines are truncated.
+
2009-07-14 Glenn Morris <rgm@gnu.org>
* emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
(not executing-kbd-macro)
(line-move-partial arg noerror to-end))
(set-window-vscroll nil 0 t)
- (if line-move-visual
+ (if (and line-move-visual
+ ;; Currently, line-move-visual does not work well with
+ ;; truncation/hscrolling. This is a stop-gap measure for
+ ;; Emacs 23.1.
+ (null truncate-lines)
+ (null (truncated-partial-width-window-p)))
(line-move-visual arg noerror)
(line-move-1 arg noerror to-end))))