blob: 6947f827303fa261a0a1277ec292c0a80046750c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(add-to-list 'load-path "@SITELISP@")
(autoload 'http-get "http-get"
"Get URL in a buffer, and return the process." t)
(autoload 'http-post "http-post"
"Post to a URL in a buffer using HTTP 1.1, and return the process." t)
(autoload 'swc-emacswiki-browse "simple-wiki-completion" nil t)
(autoload 'simple-wiki-edit "simple-wiki-edit")
;;; The following are an attempt at some reasonable defaults based on
;;; the EmacsWiki page:
;;; http://emacswiki.org/cgi-bin/wiki.pl?SimpleWikiEditMode
;; (add-hook 'simple-wiki-edit-mode-hooks 'pcomplete-simple-wiki-setup)
;; (add-hook 'simple-wiki-edit-mode-hooks 'turn-off-auto-fill)
|