emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog emulation/pc-select.el


From: Chong Yidong
Subject: [Emacs-diffs] emacs/lisp ChangeLog emulation/pc-select.el
Date: Sat, 12 Sep 2009 00:32:55 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/09/12 00:32:54

Modified files:
        lisp           : ChangeLog 
        lisp/emulation : pc-select.el 

Log message:
        * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
        (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16140&r2=1.16141
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/emulation/pc-select.el?cvsroot=emacs&r1=1.40&r2=1.41

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16140
retrieving revision 1.16141
diff -u -b -r1.16140 -r1.16141
--- ChangeLog   12 Sep 2009 00:02:42 -0000      1.16140
+++ ChangeLog   12 Sep 2009 00:32:49 -0000      1.16141
@@ -1,3 +1,8 @@
+2009-09-12  Chong Yidong  <address@hidden>
+
+       * 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  <address@hidden>
 
        * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.

Index: emulation/pc-select.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emulation/pc-select.el,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- emulation/pc-select.el      5 Jan 2009 03:21:17 -0000       1.40
+++ emulation/pc-select.el      12 Sep 2009 00:32:54 -0000      1.41
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]