X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/26e06f4464c58704889bdc536edc25b73e8c0179..c69aef14ddc150da07dcd3527b5a9fb99d6cef34:/lisp/reposition.el diff --git a/lisp/reposition.el b/lisp/reposition.el index 834ad86ac3..532c9adb98 100644 --- a/lisp/reposition.el +++ b/lisp/reposition.el @@ -1,11 +1,10 @@ ;;; reposition.el --- center a Lisp function or comment on the screen -;; Copyright (C) 1991, 1994, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1991, 1994, 2001-2016 Free Software Foundation, Inc. ;; Author: Michael D. Ernst ;; Created: Jan 1991 -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. @@ -58,11 +57,11 @@ visible (if point is in code and it could not be made so, or if only comments, including the first comment line, are visible), or to make the first comment line visible (if point is in a comment)." (interactive "P") - (let* (;; (here (save-excursion (beginning-of-line) (point))) + (let* (;; (here (line-beginning-position)) (here (point)) ;; change this name once I've gotten rid of references to ht. ;; this is actually the number of the last screen line - (ht (- (window-height (selected-window)) 2)) + (ht (- (window-height) 2)) (line (repos-count-screen-lines (window-start) (point))) (comment-height ;; The call to max deals with the case of cursor between defuns. @@ -193,5 +192,4 @@ first comment line visible (if point is in a comment)." (provide 'reposition) -;; arch-tag: 79487039-3bd7-4ab5-a3e8-ecf3b4919010 ;;; reposition.el ends here