1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 08:11:05 -08:00

Avoid compilation warnings

* src/igc.c (Figc_info): Shut up compiler warnings.

* lisp/emacs-lisp/igc.el (igc-stats): Use 'forward-line'.
This commit is contained in:
Eli Zaretskii 2024-07-01 18:34:10 +03:00
parent 1c41df43ed
commit f85760f00a
2 changed files with 7 additions and 1 deletions

View file

@ -130,7 +130,8 @@ the changes to snapshot A. See the modes's help."
0
(abs (/ bytes n)))))))
(sort-lines nil (point-min) (point-max)))
(goto-line old-line)))
(goto-char (point-min))
(forward-line (1- old-line))))
(display-buffer "*igc*"))
(defun igc--roots-diff (i1 i2)