Function: dictionary-do-select-strategy
dictionary-do-select-strategy is a byte-compiled function defined in
dictionary.el.gz.
Signature
(dictionary-do-select-strategy)
Documentation
The workhorse for doing the strategy selection.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-do-select-strategy ()
"The workhorse for doing the strategy selection."
(message "Request existing matching algorithm")
(dictionary-send-command "show strat")
(let ((reply (dictionary-read-reply-and-split)))
(message nil)
(if (dictionary-check-reply reply 555)
(error "No strategies available")
(unless (dictionary-check-reply reply 111)
(error "Unknown server answer: %s"
(dictionary-reply reply)))
(dictionary-display-strategies))))