Remove unneeded variables

This commit is contained in:
Case Duckworth 2021-09-27 18:17:30 -05:00
parent 6bfdb8d254
commit 0fbccf6e9b
1 changed files with 1 additions and 3 deletions

View File

@ -104,9 +104,7 @@ In short, DO NOT USE THIS FUNCTION!!!"
(s1-require (string-match require-regexp s1))
(s2-require (string-match require-regexp s2))
(s1-straight (string-match straight-regexp s1))
(s2-straight (string-match straight-regexp s2))
(s1-bare (not (or s1-require s1-straight)))
(s2-bare (not (or s2-require s2-straight))))
(s2-straight (string-match straight-regexp s2)))
(cond
;; Straight forms require some weirdness
((and s1-straight s2-straight)