From 1d077e000eb0efa265c4393de3a9a2ac843c74f1 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 10 Dec 1991 16:58:10 +0000 Subject: [PATCH] Fixed indentation for FLET&c to check that we are actually in the first arg form before doing funny indentation. --- hemlock/lispmode.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hemlock/lispmode.lisp b/hemlock/lispmode.lisp index 5ad644801..18d464127 100644 --- a/hemlock/lispmode.lisp +++ b/hemlock/lispmode.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/lispmode.lisp,v 1.1.1.14 1991/11/18 15:27:08 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/lispmode.lisp,v 1.1.1.15 1991/12/10 16:58:10 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1070,7 +1070,10 @@ ;; We know this succeeds from LISP-INDENTATION. (backward-up-list (move-mark temp1 mark)) ;Paren for local definition. (cond ((and (backward-up-list temp1) ;Paren opening the list of defs - (backward-up-list temp1)) ;Paren for FLET or MACROLET. + (form-offset (move-mark temp2 temp1) -1) + (mark-before temp2) + (backward-up-list temp1) ;Paren for FLET or MACROLET. + (mark= temp1 temp2)) ;Must be in first arg form. ;; See if the containing form is named FLET or MACROLET. (mark-after temp1) (unless (and (scan-char temp1 :lisp-syntax -- GitLab