Skip to content

Commit

Permalink
lint: Enforce 80-char column limit
Browse files Browse the repository at this point in the history
  • Loading branch information
efimerspan authored and josegpt committed Sep 7, 2022
1 parent b5f07f3 commit 3b3eb94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion display-wttr.el
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ Argument LOCATION holds the location to fetch info from."
(when (= (length display-wttr-locations) (length display-wttr-list))
(let ((wttr-string (string-join display-wttr-list " ")))
(setq display-wttr-string
(concat (unless (string-match (rx (: bol "Unknown location;")) wttr-string)
(concat (unless (string-match (rx (: bol "Unknown location;"))
wttr-string)
wttr-string)
" ")))
(run-hooks 'display-wttr-hook)
Expand Down

0 comments on commit 3b3eb94

Please sign in to comment.