tagging: reformat comments (#17)

syntax_id
Anton Vodonosov 2023-06-09 05:06:36 +07:00 committed by GitHub
parent 747a6e161e
commit ff0c1850cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

@ -14,7 +14,7 @@
;; ;;
;; (defun my-func (arg1 arg2) ...) ;; (defun my-func (arg1 arg2) ...)
;; ;;
;; do not treat (arg1 arg2) as a call for function arg1 ;; do not treat (arg1 arg2) as a call of function arg1
;; ;;
(defun_header (defun_header
lambda_list: (list_lit . [(sym_lit) (package_lit)] @ignore)) lambda_list: (list_lit . [(sym_lit) (package_lit)] @ignore))
@ -32,8 +32,10 @@
;; - (let ((var ...) (var2 ...)) ...) ;; - (let ((var ...) (var2 ...)) ...)
;; exclude var, var2 ;; exclude var, var2
;; - the same for let* ;; - the same for let*
;; - (defclass name (parent parent2) ...) ;; - (defclass name (parent parent2)
;; exclude the parent ;; ((slot1 ...)
;; (slot2 ...))
;; exclude the parent, slot1, slot2
;; - what else? ;; - what else?
;; Inlclude all other cases - list literal with symbol as the ;; Inlclude all other cases - list literal with symbol as the