Description: Perfer pager over more.
Author: Francesco Paolo Lovergine <frankie@debian.org>

--- a/lib/init/init.sh
+++ b/lib/init/init.sh
@@ -301,10 +301,12 @@ export GRASS_LD_LIBRARY_PATH
 
 # Set some environment variables if they are not set
 if [ ! "$GRASS_PAGER" ] ; then
-    if [ -x /bin/more ] || [ -x /usr/bin/more ] ; then
-        GRASS_PAGER=more
+    if [ -x /usr/bin/pager ] ; then
+      	GRASS_PAGER=pager
     elif [ -x /bin/less ] || [ -x /usr/bin/less ] ; then
         GRASS_PAGER=less
+    elif [ -x /bin/more ] || [ -x /usr/bin/more ] ; then
+         GRASS_PAGER=more
     elif [ "$MINGW" ] ; then
         GRASS_PAGER=more
     else
