Just to be sure, I started emacs with emacs -Q, and I did the following:
M-x toggle-debug-on-error
Copy/pasted codepad.el into ~/.emacs.d/elisp/codepad.el
In a buffer, I selected the following lines:
(add-to-list 'load-path "~/.emacs.d/elisp") ;; replace PATH with the path to codepad.el
(autoload 'codepad-paste-region "codepad" "Paste region to codepad.org." t)
(autoload 'codepad-paste-buffer "codepad" "Paste buffer to codepad.org." t)
(autoload 'codepad-fetch-code "codepad" "Fetch code from codepad.org." t)
Then I ran M-x eval-region. All seemed fine (No errors were detected).
I selected some text, and ran M-x codepad-paste-region, and nothing seems to happen. I only get the following message in the *Messages* and mini buffers:
Contacting host: codepad.org:80
Am I missing something, or is this package broken?
Here is my system information, if it helps:
[my-pc]/home/.../.emacs.d/elisp$ uname -a
Linux my-pc 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015 x86_64 GNU/Linux
[my-pc]/home/.../.emacs.d/elisp$ emacs --version
GNU Emacs 24.5.1
Copyright (C) 2015 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
Just to be sure, I started emacs with
emacs -Q
, and I did the following:M-x toggle-debug-on-error
codepad.el
into~/.emacs.d/elisp/codepad.el
In a buffer, I selected the following lines:
Then I ran
M-x eval-region
. All seemed fine (No errors were detected).I selected some text, and ran
M-x codepad-paste-region
, and nothing seems to happen. I only get the following message in the*Messages*
and mini buffers:Am I missing something, or is this package broken?
Here is my system information, if it helps: