File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ POS is the index of the currently highlighted argument."
72
72
(prog1
73
73
(if (or (= (1+ i) pos)
74
74
(and rest-pos
75
- (> (+ 1 i) rest-pos)
75
+ (> (1+ i) rest-pos)
76
76
(> pos rest-pos)))
77
77
(propertize argstr 'face
78
78
'eldoc-highlight-function-argument )
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ hidden count."
281
281
(unless (get-text-property (point ) 'collapsed )
282
282
(let* ((flags (get-text-property (point ) 'flags ))
283
283
(hide (if (seq-intersection filters flags) t nil )))
284
- (when hide (setq hidden ( + 1 hidden) ))
284
+ (when hide (cl-incf hidden))
285
285
(put-text-property (point ) (line-beginning-position 2 ) 'invisible hide)))
286
286
(forward-line 1 ))
287
287
(setq cider-stacktrace-hidden-frame-count hidden)))
You can’t perform that action at this time.
0 commit comments