org-ehtml icon indicating copy to clipboard operation
org-ehtml copied to clipboard

Caught Error: (wrong-type-argument integer-or-marker-p nil)

Open map7 opened this issue 9 months ago • 2 comments

In Emacs 30.1 when using org-ehtml I get the following error

Caught Error: (wrong-type-argument integer-or-marker-p nil)

How do I fix this, it works under Emacs 29.4 with the same config

Here is how I have it configured

(use-package web-server :ensure t)
(use-package org-ehtml
  :ensure t
  :config
  (setq org-ehtml-docroot (expand-file-name "~/org/business"))
  (setq org-ehtml-everything-editable t)
  (ws-start org-ehtml-handler 8888 nil :host "0.0.0.0"))

map7 avatar May 11 '25 23:05 map7