emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [BUG] "Not enough arguments for format string" from failed fuzzy search containing % [9.6.19]
@ 2024-02-24 20:45 Corwin Kerr
  2024-02-25 10:18 ` Ihor Radchenko
  0 siblings, 1 reply; 2+ messages in thread
From: Corwin Kerr @ 2024-02-24 20:45 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

When a search link with a fuzzy expression contains the % character
and is not found in the file, the error message is burried by format
error. This affects ~org-link-search~, ~org-open-file~, etc.

Expected message:
: No match for fuzzy expression: % search bad
Actual message:
: Not enough arguments for format string

I ended up with this search term by storing a link to a comment in a tex file.

Here is the backtrace from how I originally discovered it:
#+begin_src elisp
  Debugger entered--Lisp error: (error "Not enough arguments for format string")
  format-message("No match for fuzzy expression: % search bad")
  apply(format-message "No match for fuzzy expression: % search bad")
  error("No match for fuzzy expression: % search bad")
  org-open-file(".../bad-file.tex" nil nil "% search bad")
  apply(org-open-file ".../bad-file.tex" nil (nil "% search bad"))
  org-link-open-as-file(".../bad-file.tex::% how thi..." nil)
  org-link-open((link (:type "file" :path ".../bad-file.tex" :format bracket :raw-link "file:.../bad-file.tex::% ho..." :application nil :search-option "% search bad" :begin 8347 :end 8450 :contents-begin 8432 :contents-end 8447 :post-blank 1 :parent (paragraph (:begin 8347 :end 8461 :contents-begin 8347 :contents-end 8460 :post-blank 1 :post-affiliated 8347 :mode nil :granularity element :cached t :parent (section (:begin 8312 :end 8461 :contents-begin 8312 :contents-end 8460 :robust-begin 8312 :robust-end 8458 :post-blank 1 :post-affiliated 8312 :mode section :granularity element :cached t :parent (headline ...) :org-element--cache-sync-key nil)) :org-element--cache-sync-key nil)))) nil)
  org-open-at-point()
  org-open-at-mouse((mouse-2 (#<window 3 on projects.org> 8438 (138 . 355) 272166805 nil 8438 (14 . 16) nil (5 . 5) (11 . 22))))
  funcall-interactively(org-open-at-mouse (mouse-2 (#<window 3 on projects.org> 8438 (138 . 355) 272166805 nil 8438 (14 . 16) nil (5 . 5) (11 . 22))))
  call-interactively(org-open-at-mouse nil nil)
  command-execute(org-open-at-mouse)
#+end_src

* Versions
GNU Emacs 28.2 (build 1, x86_64-apple-darwin18.7.0, NS appkit-1671.60 Version 10.14.6 (Build 18G95)) of 2023-02-22
Org mode version 9.6.19 (release_9.6.19 @ /Users/Corwin/.emacs.d/straight/repos/org/lisp/)

* Minimal reproduction
#+begin_src tex :tangle bad-file.tex
  \begin{document}
  % search attempt
  \end{document}
#+end_src

#+begin_src elisp :tangle minimal.el
  (setq debug-on-error t
	debug-on-signal nil
	debug-on-quit nil)

  ;; Add latest Org mode to load path.
  (add-to-list 'load-path (expand-file-name "~/.emacs.d/straight/repos/org/lisp"))
  
  (org-open-file "bad-file.tex" nil nil "% search attempt") ;; works
  (org-open-file "bad-file.tex" nil nil "% search bad") ;; error
#+end_src

Running emacs with
: /Applications/Emacs.app/Contents/MacOS/Emacs -Q -l /path/to/minimal.el

Generates this backtrace:
#+begin_src elisp
  Debugger entered--Lisp error: (error "Not enough arguments for format string")
  format-message("No match for fuzzy expression: % search bad")
  apply(format-message "No match for fuzzy expression: % search bad")
  error("No match for fuzzy expression: % search bad")
  (condition-case err (org-link-search search) (error (funcall save-position-maybe) (error (nth 1 err))))
  (cond (line (org-goto-line line) (if (derived-mode-p 'org-mode) (progn (org-fold-reveal)))) (search (condition-case err (org-link-search search) (error (funcall save-position-maybe) (error (nth 1 err))))))
  (cond ((org-string-nw-p cmd) (setq cmd (org--open-file-format-command cmd file link link-match-data)) (let ((wconfig (current-window-configuration))) (unwind-protect (progn (message "Running %s...done" cmd) (let ((process-connection-type nil)) (start-process-shell-command cmd nil cmd)) (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))) (set-window-configuration wconfig)))) ((or (stringp cmd) (eq cmd 'emacs)) (funcall (cdr (assq 'file org-link-frame-setup)) file) (widen) (cond (line (org-goto-line line) (if (derived-mode-p 'org-mode) (progn (org-fold-reveal)))) (search (condition-case err (org-link-search search) (error (funcall save-position-maybe) (error (nth 1 err))))))) ((functionp cmd) (let ((save-match-data-internal (match-data))) (unwind-protect (progn (set-match-data link-match-data) (condition-case nil (funcall cmd file link) ((debug wrong-number-of-arguments wrong-type-argument invalid-function) (user-error "Please see Org News for version 9.0 about `org-fil..." cmd)))) (set-match-data save-match-data-internal 'evaporate)))) ((consp cmd) (user-error "Please see Org News for version 9.0 about `org-fil..." cmd)) (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
  (let* ((file (if (equal path "") buffer-file-name (substitute-in-file-name (expand-file-name path)))) (file-apps (append org-file-apps (org--file-default-apps))) (apps (cl-remove-if #'org--file-apps-entry-locator-p file-apps)) (apps-locator (cl-remove-if-not #'org--file-apps-entry-locator-p file-apps)) (remp (and (assq 'remote apps) (file-remote-p file))) (dirp (if remp nil (file-directory-p file))) (file (if (and dirp org-open-directory-means-index-dot-org) (concat (file-name-as-directory file) "index.org") file)) (a-m-a-p (assq 'auto-mode apps)) (dfile (downcase file)) (link (cond (line (concat file "::" (number-to-string line))) (search (concat file "::" search)) (t file))) (ext (and (string-match "\\`.*?\\.\\([a-zA-Z0-9]+\\(\\.gz\\)?\\)\\'" dfile) (match-string 1 dfile))) (save-position-maybe (let ((old-buffer (current-buffer)) (old-pos (point)) (old-mode major-mode)) #'(lambda nil (and (derived-mode-p ...) (eq old-mode ...) (or ... ...) (org-mark-ring-push old-pos old-buffer))))) cmd link-match-data) (cond ((member in-emacs '((16) system)) (setq cmd (cdr (assq 'system apps)))) (in-emacs (setq cmd 'emacs)) (t (setq cmd (or (and remp (cdr (assq ... apps))) (and dirp (cdr (assq ... apps))) (let* ((case-fold-search t) (match ...)) (if match (progn ... match) (progn ... nil))) (assoc-default dfile (org--file-apps-regexp-alist apps a-m-a-p) 'string-match) (cdr (assoc ext apps)) (cdr (assq t apps)))))) (if (eq cmd 'system) (progn (setq cmd (cdr (assq 'system apps))))) (if (eq cmd 'default) (progn (setq cmd (cdr (assoc t apps))))) (if (eq cmd 'mailcap) (progn (require 'mailcap) (mailcap-parse-mailcaps) (let* ((mime-type (mailcap-extension-to-mime (or ext ""))) (command (mailcap-mime-info mime-type))) (if (stringp command) (setq cmd command) (setq cmd 'emacs))))) (if (and (not (eq cmd 'emacs)) (not (file-exists-p file)) (not org-open-non-existing-files)) (progn (user-error "No such file: %s" file))) (cond ((org-string-nw-p cmd) (setq cmd (org--open-file-format-command cmd file link link-match-data)) (let ((wconfig (current-window-configuration))) (unwind-protect (progn (message "Running %s...done" cmd) (let (...) (start-process-shell-command cmd nil cmd)) (and (boundp ...) (numberp org-wait) (sit-for org-wait))) (set-window-configuration wconfig)))) ((or (stringp cmd) (eq cmd 'emacs)) (funcall (cdr (assq 'file org-link-frame-setup)) file) (widen) (cond (line (org-goto-line line) (if (derived-mode-p 'org-mode) (progn (org-fold-reveal)))) (search (condition-case err (org-link-search search) (error (funcall save-position-maybe) (error ...)))))) ((functionp cmd) (let ((save-match-data-internal (match-data))) (unwind-protect (progn (set-match-data link-match-data) (condition-case nil (funcall cmd file link) (... ...))) (set-match-data save-match-data-internal 'evaporate)))) ((consp cmd) (user-error "Please see Org News for version 9.0 about `org-fil..." cmd)) (t (funcall (cdr (assq 'file org-link-frame-setup)) file))) (funcall save-position-maybe))
  org-open-file("bad-file.tex" nil nil "% search bad")
  eval-buffer(#<buffer  *load*> nil "/Users/Corwin/projects/comp-lang/emacs/minimal.el" nil t)  ; Reading at buffer position 315
  load-with-code-conversion("/Users/Corwin/projects/comp-lang/emacs/minimal.el" "/Users/Corwin/projects/comp-lang/emacs/minimal.el" nil t)
  load("/Users/Corwin/projects/comp-lang/emacs/minimal.el" nil t)
  command-line-1(("-l" "/Users/Corwin/projects/comp-lang/emacs/minimal.el"))
  command-line()
  normal-top-level()
#+end_src



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [BUG] "Not enough arguments for format string" from failed fuzzy search containing % [9.6.19]
  2024-02-24 20:45 [BUG] "Not enough arguments for format string" from failed fuzzy search containing % [9.6.19] Corwin Kerr
@ 2024-02-25 10:18 ` Ihor Radchenko
  0 siblings, 0 replies; 2+ messages in thread
From: Ihor Radchenko @ 2024-02-25 10:18 UTC (permalink / raw)
  To: Corwin Kerr; +Cc: emacs-orgmode

"Corwin Kerr" <corwin@corwinkerr.com> writes:

> When a search link with a fuzzy expression contains the % character
> and is not found in the file, the error message is burried by format
> error. This affects ~org-link-search~, ~org-open-file~, etc.
>
> Expected message:
> : No match for fuzzy expression: % search bad
> Actual message:
> : Not enough arguments for format string
> ...
> * Minimal reproduction

Thanks for reporting!
Fixed, on main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=af9100382

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-02-25 10:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-24 20:45 [BUG] "Not enough arguments for format string" from failed fuzzy search containing % [9.6.19] Corwin Kerr
2024-02-25 10:18 ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).