This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (eval-after-load 'gist | |
| '(progn | |
| (defadvice gh-api-run-request (around | |
| su/advice/gist/gh-api-run-request/around/set-tls-program a c pre) | |
| "Set `tls-program' to favor openssl, otherwise url-retrieve-synchronously | |
| hangs" | |
| (let ((tls-program '( | |
| "openssl s_client -connect %h:%p -no_ssl2 -ign_eof" | |
| "gnutls-cli --insecure -p %p %h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Author: Damien Cassou | |
| # | |
| # This is the script I use to build https://launchpad.net/~cassou/+archive/emacs/ | |
| # from http://emacs.naquadah.org/. | |
| MAIN_VERSION=20120410 | |
| SUB_VERSION=1 |
NewerOlder