Function: dictionary-set-strategy

dictionary-set-strategy is a byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-set-strategy STRATEGY &rest IGNORED)

Documentation

Select this STRATEGY as new default.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-set-strategy (strategy &rest _ignored)
  "Select this STRATEGY as new default."
  (setq dictionary-default-strategy strategy)
  (dictionary-restore-state)
  (message "Strategy %s has been selected" strategy))