I'm trying to work on a file created on emacs 22 on Debian lenny, on
emacs 21 on RHEL4. The org file in emacs 21 shows up with UTF-8
interpreted as iso-8859-1.
I've tried setting the coding explicitly with
`C-x RET f utf-8-unix RET'
but that didn't seem to make any difference.
Are there lisp an
On Apr 21, 2009, at 2:19 PM, Sebastian Rose wrote:
Hm - the only function we now use from the url package is `url-unhex'.
That is just:
(defun url-unhex (x)
(if (> x ?9)
(if (>= x ?a)
(+ 10 (- x ?a))
(+ 10 (- x ?A)))
(- x ?0)))
As it's only 6 lines of code:
Ho
Hm - the only function we now use from the url package is `url-unhex'.
That is just:
(defun url-unhex (x)
(if (> x ?9)
(if (>= x ?a)
(+ 10 (- x ?a))
(+ 10 (- x ?A)))
(- x ?0)))
As it's only 6 lines of code:
How would we define the function if the package is no
Hi,
I was just notified that Org-mode no longer installs properly on
Emacs 21. The reason for this is that org-protocol.el requires
the url.el package which apparently does not exist in Emacs 21.
While you can
- run uncompiled Org on Emacs 21 without using org-protocol
- try to find url.el for