emacs-unoffice

Emacs library to reclaim text from office documents (abw, odt, docx).
Log | Files | Refs

commit 7b49b106a716e0f706b407076b955f0bda082dbb
parent 64b1a9f808099a3985a01bf1e76ae516333b550a
Author: Tomas Hlavaty <tom@logand.com>
Date:   Sun, 31 Jan 2021 23:02:56 +0100

fix provide/require

it needs to match el filename

Diffstat:
Memacs-unoffice.el | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/emacs-unoffice.el b/emacs-unoffice.el @@ -14,7 +14,8 @@ ;;; ;;; Example configuration: ;;; -;;; (require 'unoffice) +;;; (add-to-list 'load-path "~/git/emacs-unoffice") +;;; (require 'emacs-unoffice) ;;; and associate file extensions ;;; (add-to-list 'auto-mode-alist '("\\.abw\\'" . unoffice-as-txt)) ;;; (add-to-list 'auto-mode-alist '("\\.docx\\'" . unoffice-as-txt)) @@ -378,4 +379,4 @@ ((equal x "odt") (unoffice-odt-as-org)) ((equal x "docx") (unoffice-docx-as-org))))) -(provide 'unoffice) +(provide 'emacs-unoffice)