Currently, I want my output to kill-ring, so I have the current line:
(setq google-translate-output-destination 'kill-ring)
But I want it to output to both kill-ring and echo-area. I tried the following:
(setq google-translate-output-destination (quote (kill-ring echo-area)))
but it doesn't work.
This is interesting, I have saw similar feature request now. I will consider to add an interactive way to select multiple output targets. If you have any idea of code prototype. PR welcome.
Currently, I want my output to
kill-ring
, so I have the current line:(setq google-translate-output-destination 'kill-ring)
But I want it to output to both kill-ring and echo-area. I tried the following:
(setq google-translate-output-destination (quote (kill-ring echo-area)))
but it doesn't work.Could you please show me how to make this work?