Skip to content

Commit 32fa831

Browse files
committed
package-build--extract-from-library: Fix previous commit
1 parent 79cff85 commit 32fa831

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package-build.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,10 +1262,10 @@ is the same as the value of `export_file_name'."
12621262
(package-read-from-string
12631263
(string-join require-lines " ")))))))
12641264
(oset rcp webpage
1265-
(or (let ((site (cond ((fboundp 'lm-website)
1266-
(lm-website))
1267-
((fboundp 'lm-homepage)
1268-
(lm-homepage)))))
1265+
(or (and-let* ((site (cond ((fboundp 'lm-website)
1266+
(lm-website))
1267+
((fboundp 'lm-homepage)
1268+
(lm-homepage)))))
12691269
(if (string-match package-build--http-regexp site)
12701270
(replace-match "https" t t site 1)
12711271
site))

0 commit comments

Comments
 (0)