Skip to content

Commit

Permalink
Some bugs fixed
Browse files Browse the repository at this point in the history
Fixed a portability bug. Use browse-url instead of browse-url-generic
Use the customize-group browse-url to choose the browser. Thanks to
Xah Lee for point this out. leaned code for compilation. However
something still remains for suspect compatibily with Xemacs. Please
let me if Xemacs works with this package leaned code and dropped
prehistorical releases of (X)emacs that don't support customization.
Exists the old package. If you stuck with older versions, use the
older version of this package too. ;-)
  • Loading branch information
melmothx committed Nov 27, 2008
1 parent ee4e794 commit e4871ed
Show file tree
Hide file tree
Showing 2 changed files with 207 additions and 177 deletions.
24 changes: 23 additions & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
Please run first the setup.sh, which will ask you where can find the
POV-Ray files and where your lisp files reside, then modify your
.emacs following the instruction in the comments in
"pov-mode.el".
"pov-mode.el" or in the output of this script

If you are a Winzoz user, and you can't exec the setup.sh script, you
*must* edit pov-mode.el manually. So, change all the occurrences of
SHARELIBSPOVRAY with the directory where platform-independent
files of POV-Ray resides.
EMACSLISPLIBRARY with the directory where you unpack this package
POVRAYHTMLDOCDIR with the directory where resides the HTML
documentation of POV-Ray.

Then add this lines to your .emacs configuration file:

(autoload 'pov-mode "\path\to\pov-mode" ; PLEASE EDIT THIS
"PoVray scene file mode" t)
(setq auto-mode-alist
(append '(("\\.pov$" . pov-mode)
("\\.inc$" . pov-mode)
) auto-mode-alist))

Finally, fix the name of the keyword index file via M-x
customize-group pov.
Let me know if it works.
MP
Loading

0 comments on commit e4871ed

Please sign in to comment.