Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jim committed Mar 25, 2024
1 parent 9e59239 commit 302287c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ac-php-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -2209,11 +2209,12 @@ although in fact they may not be."
(ac-php--debug "member %s class=%s, %S" member opt-class class-member-list)
(let ((i 0) (list-length (length class-member-list)) member-info member-name)
(ac-php--debug "55")
(while (and (< i list-length) (not ret))
(setq i (1- list-length) )
(while (and (>= i 0) (not ret))
(setq member-info (aref class-member-list i))
(when(ac-php--string=-ignore-care (aref member-info 1) member)
(setq ret member-info))
(setq i (1+ i))))
(setq i (1- i))))
(if ret (cl-return))))

(ac-php--debug "ac-php-get-class-member-info ret=%S" ret)
Expand Down

0 comments on commit 302287c

Please sign in to comment.