Skip to content

Commit

Permalink
Merge pull request #1705 from SequentialDesign/change-verbose-style-i…
Browse files Browse the repository at this point in the history
…n-compute-line

fix verbose style in `compute-line`
  • Loading branch information
cxxxr authored Dec 10, 2024
2 parents d8dca87 + 5398170 commit fdd9ec8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ext/line-numbers.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ With a positive universal argument, use relative line numbers. Also obey the glo
(line (line-number-at-point point))
(custom-line (variable-value 'custom-current-line :default buffer)))
(if (= cursor-line line)
(if custom-line
custom-line
line)
(or custom-line line)
(abs (- cursor-line line))))
(line-number-at-point point)))

Expand Down

0 comments on commit fdd9ec8

Please sign in to comment.