# HG changeset patch # User Chong Yidong # Date 1252715569 0 # Node ID 1f376790249ca33877d1f3917aa45fc7091cf723 # Parent 5e36746ef447d44eb5b5be4ec948354db0be3f3b * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark) (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190). diff -r 5e36746ef447 -r 1f376790249c lisp/ChangeLog --- a/lisp/ChangeLog Sat Sep 12 00:03:29 2009 +0000 +++ b/lisp/ChangeLog Sat Sep 12 00:32:49 2009 +0000 @@ -1,3 +1,8 @@ +2009-09-12 Chong Yidong + + * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark) + (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190). + 2009-09-11 Nick Roberts * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete. diff -r 5e36746ef447 -r 1f376790249c lisp/emulation/pc-select.el --- a/lisp/emulation/pc-select.el Sat Sep 12 00:03:29 2009 +0000 +++ b/lisp/emulation/pc-select.el Sat Sep 12 00:32:49 2009 +0000 @@ -382,7 +382,9 @@ "Ensure mark is active; scroll down ARG lines; or near full screen if no ARG. A near full screen is `next-screen-context-lines' less than a full screen. Negative ARG means scroll upward. -When calling from a program, supply a number as argument or nil." +When calling from a program, supply a number as argument or nil. +Attempting to scroll past the edge of buffer does not raise an +error, unless `pc-select-override-scroll-error' is nil." (interactive "P") (pc-select-ensure-mark) (cond (pc-select-override-scroll-error @@ -515,7 +517,9 @@ "Deactivate mark; scroll down ARG lines; or near full screen if no ARG. A near full screen is `next-screen-context-lines' less than a full screen. Negative ARG means scroll upward. -When calling from a program, supply a number as argument or nil." +When calling from a program, supply a number as argument or nil. +Attempting to scroll past the edge of buffer does not raise an +error, unless `pc-select-override-scroll-error' is nil." (interactive "P") (pc-select-maybe-deactivate-mark) (cond (pc-select-override-scroll-error @@ -630,7 +634,9 @@ "Ensure mark is active; scroll upward ARG lines; or near full screen if no ARG. A near full screen is `next-screen-context-lines' less than a full screen. Negative ARG means scroll downward. -When calling from a program, supply a number as argument or nil." +When calling from a program, supply a number as argument or nil. +Attempting to scroll past the edge of buffer does not raise an +error, unless `pc-select-override-scroll-error' is nil." (interactive "P") (pc-select-ensure-mark) (cond (pc-select-override-scroll-error @@ -727,7 +733,9 @@ "Deactivate mark; scroll upward ARG lines; or near full screen if no ARG. A near full screen is `next-screen-context-lines' less than a full screen. Negative ARG means scroll downward. -When calling from a program, supply a number as argument or nil." +When calling from a program, supply a number as argument or nil. +Attempting to scroll past the edge of buffer does not raise an +error, unless `pc-select-override-scroll-error' is nil." (interactive "P") (pc-select-maybe-deactivate-mark) (cond (pc-select-override-scroll-error