· 5 years ago · May 17, 2020, 07:56 AM
1(defun pastebin-unique-developer-api-key-from-file (filename)
2 "A way to set the API key from the contents of a text file."
3 (interactive)
4 (setq pastebin-unique-developer-api-key
5 (and (file-exists-p filename)
6 (pastebin--trim-trailing-newlines
7 (with-temp-buffer
8 (insert-file-contents filename)
9 (buffer-substring-no-properties (point-min) (point-max)))))))