[emacs-w3m:13792] [emacs-w3m/emacs-w3m] What does 'no such anchor' means and how-to sort it out? (#97)
touxstone <[email protected]> Tue, 13 Jul 2021 11:50:04 -0700
| Newsgroups | gmane.emacs.w3m |
|---|---|
| Message-ID | <emacs-w3m/emacs-w3m/issues/[email protected]> |
Hi, everyone. I got the following lines of code I wish someone could do help on this. There is a (corpora for collocations) [search engine](https://skell.sketchengine.eu/#home) I wanted to add to my `w3m-search` function but unsuccessful, whenever a try I got the following output which I ignore what it means so sorting it out, any help?
```src
No such anchor: result?query=inquired&lang=en&f=concordance
```
here my lines of code:
```lisp
(global-set-key (kbd "s-g") (lambda ()
(interactive)
(let ((current-prefix-arg t))
(call-interactively 'w3m-search))))
(require 'w3m-search)
(add-to-list 'w3m-search-engine-alist
'("skell" "https://skell.sketchengine.eu/#result?query=%s&lang=en&f=concordance"))
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/emacs-w3m/emacs-w3m/issues/97