wok-next annotate emacs-pkg-text-translator/stuff/text-translator-load.el @ rev 21272
updated gammu (1.27.0 -> 1.41.0)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Dec 07 14:51:03 2019 +0100 (2019-12-07) |
parents | |
children |
rev | line source |
---|---|
domcox@8451 | 1 ;;; text-translator-load.el --- Text Translator |
domcox@8451 | 2 |
domcox@8451 | 3 ;; Copyright (C) 2007-2009 khiker |
domcox@8451 | 4 |
domcox@8451 | 5 ;; Author: khiker <khiker.mail+elisp@gmail.com> |
domcox@8451 | 6 ;; plus <MLB33828@nifty.com> |
domcox@8451 | 7 |
domcox@8451 | 8 ;; This file is free software; you can redistribute it and/or modify |
domcox@8451 | 9 ;; it under the terms of the GNU General Public License as published by |
domcox@8451 | 10 ;; the Free Software Foundation; either version 3, or (at your option) |
domcox@8451 | 11 ;; any later version. |
domcox@8451 | 12 |
domcox@8451 | 13 ;; This file is distributed in the hope that it will be useful, |
domcox@8451 | 14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
domcox@8451 | 15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
domcox@8451 | 16 ;; GNU General Public License for more details. |
domcox@8451 | 17 |
domcox@8451 | 18 ;; You should have received a copy of the GNU General Public License |
domcox@8451 | 19 ;; along with GNU Emacs; see the file COPYING. If not, write to |
domcox@8451 | 20 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
domcox@8451 | 21 ;; Boston, MA 02110-1301, USA. |
domcox@8451 | 22 |
domcox@8451 | 23 ;;; Commentary: |
domcox@8451 | 24 |
domcox@8451 | 25 ;; autoload for text-translator |
domcox@8451 | 26 |
domcox@8451 | 27 ;;; Code: |
domcox@8451 | 28 |
domcox@8451 | 29 (autoload 'text-translator "text-translator" nil t) |
domcox@8451 | 30 (autoload 'text-translator-translate-last-string "text-translator" nil t) |
domcox@8451 | 31 (autoload 'text-translator-translate-by-auto-selection "text-translator" nil t) |
domcox@8451 | 32 (autoload 'text-translator-toggle-leave-string "text-translator" nil t) |
domcox@8451 | 33 (autoload 'text-translator-translate-recent-type "text-translator" nil t) |
domcox@8451 | 34 (autoload 'text-translator-translate-default "text-translator" nil t) |
domcox@8451 | 35 |
domcox@8451 | 36 (provide 'text-translator-load) |
domcox@8451 | 37 ;;; text-translator-load.el ends here |
domcox@8451 | 38 |
domcox@8451 | 39 ;; Local Variables: |
domcox@8451 | 40 ;; Coding: iso-2022-7bit |
domcox@8451 | 41 ;; End: |