aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorPaul Eggert2011-09-27 09:04:56 -0700
committerPaul Eggert2011-09-27 09:04:56 -0700
commiteee134655504adba0a868dc064078e814d6aa33a (patch)
tree047e75c4381ddb918cd95d798b0616ef95e86e3e /lisp
parent43ad2e9af4e92fa795fb3b1fc5d793a76595a34f (diff)
parent2b1928b8071719a779e7144bcf777d999cd9bbec (diff)
downloademacs-eee134655504adba0a868dc064078e814d6aa33a.tar.gz
emacs-eee134655504adba0a868dc064078e814d6aa33a.zip
Merge from trunk.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/plstore.el10
-rw-r--r--lisp/ido.el11
-rw-r--r--lisp/language/ind-util.el23
5 files changed, 51 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 92324036dc5..ec867fee08b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-09-27 Leo Liu <sdl.web@gmail.com>
2
3 * ido.el (ido-read-internal): Accept cons cell HIST arg.
4
12011-09-25 Michael Albinus <michael.albinus@gmx.de> 52011-09-25 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/dbus.el (dbus-unregister-object): Don't release services for 7 * net/dbus.el (dbus-unregister-object): Don't release services for
@@ -9,6 +13,13 @@
9 function that picks between cfengine 2 and 3 support 13 function that picks between cfengine 2 and 3 support
10 automatically. Update docs accordingly. 14 automatically. Update docs accordingly.
11 15
162011-09-22 Kenichi Handa <handa@m17n.org>
17
18 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
19 ZERO.
20 (indian-itrans-v5-table-for-tamil): New variable.
21 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
22
122011-09-22 Ken Manheimer <ken.manheimer@gmail.com> 232011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
13 24
14 * allout.el (allout-this-command-hid-stuff): Buffer-local variable 25 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index ab324b7cd8b..c535f4a9549 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12011-09-27 Daiki Ueno <ueno@unixuser.org>
2
3 * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
4 documentation.
5
12011-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org> 62011-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 7
3 * nnimap.el (nnimap-wait-for-response): Message less (bug#9540). 8 * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
diff --git a/lisp/gnus/plstore.el b/lisp/gnus/plstore.el
index ab78e508480..340c7255958 100644
--- a/lisp/gnus/plstore.el
+++ b/lisp/gnus/plstore.el
@@ -80,9 +80,10 @@
80 "Control whether or not to pop up the key selection dialog. 80 "Control whether or not to pop up the key selection dialog.
81 81
82If t, always asks user to select recipients. 82If t, always asks user to select recipients.
83If nil, query user only when `plstore-encrypt-to' is not set. 83If nil, query user only when a file's default recipients are not
84If neither t nor nil, doesn't ask user. In this case, symmetric 84known (i.e. `plstore-encrypt-to' is not locally set in the buffer
85encryption is used." 85visiting a plstore file).
86If neither t nor nil, doesn't ask user."
86 :type '(choice (const :tag "Ask always" t) 87 :type '(choice (const :tag "Ask always" t)
87 (const :tag "Ask when recipients are not set" nil) 88 (const :tag "Ask when recipients are not set" nil)
88 (const :tag "Don't ask" silent)) 89 (const :tag "Don't ask" silent))
@@ -90,7 +91,8 @@ encryption is used."
90 91
91(defvar plstore-encrypt-to nil 92(defvar plstore-encrypt-to nil
92 "*Recipient(s) used for encrypting secret entries. 93 "*Recipient(s) used for encrypting secret entries.
93May either be a string or a list of strings.") 94May either be a string or a list of strings. If it is nil,
95symmetric encryption will be used.")
94 96
95(put 'plstore-encrypt-to 'safe-local-variable 97(put 'plstore-encrypt-to 'safe-local-variable
96 (lambda (val) 98 (lambda (val)
diff --git a/lisp/ido.el b/lisp/ido.el
index 4086000e3e9..46ac5784d0e 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -1826,7 +1826,7 @@ This function also adds a hook to the minibuffer."
1826;; e.g. the file name may be ignored or joined with ido-current-directory, and 1826;; e.g. the file name may be ignored or joined with ido-current-directory, and
1827;; the relevant function is called (find-file, write-file, etc). 1827;; the relevant function is called (find-file, write-file, etc).
1828 1828
1829(defun ido-read-internal (item prompt history &optional default require-match initial) 1829(defun ido-read-internal (item prompt hist &optional default require-match initial)
1830 "Perform the `ido-read-buffer' and `ido-read-file-name' functions. 1830 "Perform the `ido-read-buffer' and `ido-read-file-name' functions.
1831Return the name of a buffer or file selected. 1831Return the name of a buffer or file selected.
1832PROMPT is the prompt to give to the user. 1832PROMPT is the prompt to give to the user.
@@ -1984,7 +1984,7 @@ If INITIAL is non-nil, it specifies the initial input string."
1984 (read-from-minibuffer (ido-make-prompt item prompt) 1984 (read-from-minibuffer (ido-make-prompt item prompt)
1985 (prog1 ido-text-init 1985 (prog1 ido-text-init
1986 (setq ido-text-init nil)) 1986 (setq ido-text-init nil))
1987 ido-completion-map nil history)))) 1987 ido-completion-map nil hist))))
1988 (ido-trace "read-from-minibuffer" ido-final-text) 1988 (ido-trace "read-from-minibuffer" ido-final-text)
1989 (if (get-buffer ido-completion-buffer) 1989 (if (get-buffer ido-completion-buffer)
1990 (kill-buffer ido-completion-buffer)) 1990 (kill-buffer ido-completion-buffer))
@@ -2155,7 +2155,12 @@ If INITIAL is non-nil, it specifies the initial input string."
2155 2155
2156 (t 2156 (t
2157 (setq done t)))))) 2157 (setq done t))))))
2158 (add-to-history (or history 'minibuffer-history) ido-selected) 2158 (add-to-history (cond
2159 ((consp hist)
2160 (or (car hist) 'minibuffer-history))
2161 (hist hist)
2162 (t 'minibuffer-history))
2163 ido-selected)
2159 ido-selected)) 2164 ido-selected))
2160 2165
2161(defun ido-edit-input () 2166(defun ido-edit-input ()
diff --git a/lisp/language/ind-util.el b/lisp/language/ind-util.el
index 56893af1479..0e548420383 100644
--- a/lisp/language/ind-util.el
+++ b/lisp/language/ind-util.el
@@ -271,7 +271,7 @@
271 (;; Misc Symbols 271 (;; Misc Symbols
272 nil ?$,1<"(B ?$,1<#(B nil ?$,1<m(B nil nil) 272 nil ?$,1<"(B ?$,1<#(B nil ?$,1<m(B nil nil)
273 (;; Digits 273 (;; Digits
274 nil ?$,1='(B ?$,1=((B ?$,1=)(B ?$,1=*(B ?$,1=+(B ?$,1=,(B ?$,1=-(B ?$,1=.(B ?$,1=/(B) 274 ?$,1=&(B ?$,1='(B ?$,1=((B ?$,1=)(B ?$,1=*(B ?$,1=+(B ?$,1=,(B ?$,1=-(B ?$,1=.(B ?$,1=/(B)
275 (;; Inscript-extra (4) (#, $, ^, *, ]) 275 (;; Inscript-extra (4) (#, $, ^, *, ])
276 "$,1<m<P(B" "$,1<P<m(B" "$,1<D<m<P(B" nil nil))) 276 "$,1<m<P(B" "$,1<P<m(B" "$,1<D<m<P(B" nil nil)))
277 277
@@ -305,6 +305,25 @@
305 (;; misc -- 7 305 (;; misc -- 7
306 ".N" (".n" "M") "H" ".a" ".h" ("AUM" "OM") ".."))) 306 ".N" (".n" "M") "H" ".a" ".h" ("AUM" "OM") "..")))
307 307
308(defvar indian-itrans-v5-table-for-tamil
309 '(;; for encode/decode
310 (;; vowels -- 18
311 "a" ("aa" "A") "i" ("ii" "I") "u" ("uu" "U")
312 ("RRi" "R^i") ("LLi" "L^i") (".c" "e.c") "E" "e" "ai"
313 "o.c" "O" "o" "au" ("RRI" "R^I") ("LLI" "L^I"))
314 (;; consonants -- 40
315 "k" "kh" "g" "gh" ("~N" "N^")
316 "ch" ("Ch" "chh") "j" "jh" ("~n" "JN")
317 "T" "Th" "D" "Dh" "N"
318 "t" "th" "d" "dh" "n" "nh"
319 "p" "ph" "b" "bh" "m"
320 "y" "r" "rh" "l" ("L" "ld") ("J" "z") ("v" "w")
321 "sh" ("Sh" "shh") "s" "h"
322 "q" "K" "G" nil ".D" ".Dh" "f" ("Y" "yh")
323 ("GY" "dny") "x")
324 (;; misc -- 7
325 ".N" (".n" "M") "H" ".a" ".h" ("AUM" "OM") "..")))
326
308(defvar indian-kyoto-harvard-table 327(defvar indian-kyoto-harvard-table
309 '(;; for encode/decode 328 '(;; for encode/decode
310 (;; vowel 329 (;; vowel
@@ -508,7 +527,7 @@
508 527
509(defvar indian-tml-itrans-v5-hash 528(defvar indian-tml-itrans-v5-hash
510 (indian-make-hash indian-tml-base-table 529 (indian-make-hash indian-tml-base-table
511 indian-itrans-v5-table)) 530 indian-itrans-v5-table-for-tamil))
512) 531)
513 532
514(defmacro indian-translate-region (from to hashtable encode-p) 533(defmacro indian-translate-region (from to hashtable encode-p)