From c59bad4bb704f46d665d7200312f71ca7cd6893f Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 31 Jul 2025 11:48:35 +0200 Subject: [PATCH] Fix some indentation in editor --- editor/editor.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/editor.lisp b/editor/editor.lisp index 1dade3b..90c89cc 100644 --- a/editor/editor.lisp +++ b/editor/editor.lisp @@ -815,9 +815,9 @@ Additionally ensures correct line numbers on the way, as a bonus." (force-output *eio*) (let ((key (get-input-sequence))) (if (and (integerp line) (integerp col) - (equal '(:C . #\j) key)) - (cursor-go-to (cursor *editor*) line col) - (redisplay-view (current-view *editor*))))) + (equal '(:C . #\j) key)) + (cursor-go-to (cursor *editor*) line col) + (redisplay-view (current-view *editor*))))) (defparameter *refresh-asm-functions-p* #+swank t #-swank nil "If non-NIL, reload asm function addresses from listing before every compile.")