Skip to content

Commit

Permalink
Doing my best
Browse files Browse the repository at this point in the history
  • Loading branch information
alexispurslane committed Jun 8, 2024
1 parent 4bb0858 commit b5e83a3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tads3-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ keywords list."
tads3--last-source-update-time
(file-attribute-modification-time (file-attributes file)))))
(tads3--get-source-files))))
(tag-output (generate-new-buffer "*TADS tag generation*"))
(tag-output (get-buffer-create "*TADS tag generation*"))
(tag-process (apply #'start-process
`("tag-generation-process"
,tag-output
Expand Down Expand Up @@ -1353,7 +1353,7 @@ keywords list."
tads3--identifiers))

Check warning on line 1353 in tads3-mode.el

View workflow job for this annotation

GitHub Actions / Run MELPA checks (28.1)

‘message’ called with 1 args to fill 0 format field(s)
(_ (message "Unexpected tag line format: %s" tag))))
(message "TADS completion tags refreshed."))
(message "TADS tag reading process exited with message: " (buffer-string))))))
(message "TADS tag reading process exited unsuccessfully with message: " (buffer-string))))))

Check warning on line 1356 in tads3-mode.el

View workflow job for this annotation

GitHub Actions / Run MELPA checks (29.3)

‘message’ called with 1 args to fill 0 format field(s)

Check warning on line 1356 in tads3-mode.el

View workflow job for this annotation

GitHub Actions / Run MELPA checks (release-snapshot)

‘message’ called with 1 args to fill 0 format field(s)

Check warning on line 1356 in tads3-mode.el

View workflow job for this annotation

GitHub Actions / Run MELPA checks (snapshot)

‘message’ called with 1 argument to fill 0 format fields
;; This function is run when a file is saved, so the current file (which
;; was the one just saved) is always going to be the latest-modified one,
;; so that's the time we'll use for when this run happened
Expand All @@ -1371,8 +1371,7 @@ keywords list."
(maphash (lambda (keyword props)
(when (or (and (= (char-before (car bounds)) ?\.)
(memq (car props) '(property method action verb sub-object)))
(and (not (= (char-before (car bounds)) ?\.))
(not (memq (car props) '(property method sub-object)))))
(not (= (char-before (car bounds)) ?\.)))
(push (propertize keyword 'meta props) alist)))
tads3--identifiers)
alist)
Expand Down

0 comments on commit b5e83a3

Please sign in to comment.