Hi,

The function `org-string-width' fails if the selected window is strongly
dedicated.

Here is a way to reproduce this error:

  #+begin_src elisp
    (let ((old-dedicated (window-dedicated-p)))
      (unwind-protect
          (progn 
            (set-window-dedicated-p nil t)
            (org-string-width "a string"))
        (set-window-dedicated-p nil old-dedicated)))
  #+end_src



Emacs  : GNU Emacs 29.0.50 (x86_64-pc-linux-gnu, X toolkit, cairo version 
1.16.0)
Package: Org mode version 9.6-pre (release_9.5.5-1075-g3e010d)


Bruno

Reply via email to