diff options
| author | Dave Love | 2001-02-08 23:25:15 +0000 |
|---|---|---|
| committer | Dave Love | 2001-02-08 23:25:15 +0000 |
| commit | 4681ca3a6ccce6a97b3c0097036cd4cf5a8a03a5 (patch) | |
| tree | 337864bc0b87eeabf919676fed63e0a83a9e8aed | |
| parent | 532f519779adb24828c0235cc8541a2671ede9c4 (diff) | |
| download | emacs-4681ca3a6ccce6a97b3c0097036cd4cf5a8a03a5.tar.gz emacs-4681ca3a6ccce6a97b3c0097036cd4cf5a8a03a5.zip | |
(widget-plist-convert-widget): Replace binding of
widget-plist-value-type.
(widget-alist-convert-widget): Replace binding of
widget-alist-value-type.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/wid-edit.el | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 80f5c801f7b..1f2936282bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,11 @@ | |||
| 5 | 5 | ||
| 6 | 2001-02-08 Dave Love <fx@gnu.org> | 6 | 2001-02-08 Dave Love <fx@gnu.org> |
| 7 | 7 | ||
| 8 | * wid-edit.el (widget-plist-convert-widget): Replace binding of | ||
| 9 | widget-plist-value-type. | ||
| 10 | (widget-alist-convert-widget): Replace binding of | ||
| 11 | widget-alist-value-type. | ||
| 12 | |||
| 8 | * textmodes/paragraphs.el (sentence-end): Doc fix. | 13 | * textmodes/paragraphs.el (sentence-end): Doc fix. |
| 9 | 14 | ||
| 10 | * eshell/em-rebind.el (eshell-cannot-leave-input-list): Remove | 15 | * eshell/em-rebind.el (eshell-cannot-leave-input-list): Remove |
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index bea4a1933c6..c4661ed2331 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el | |||
| @@ -3208,10 +3208,11 @@ To use this type, you must define :match or :match-alternatives." | |||
| 3208 | (defun widget-plist-convert-widget (widget) | 3208 | (defun widget-plist-convert-widget (widget) |
| 3209 | ;; Handle `:options'. | 3209 | ;; Handle `:options'. |
| 3210 | (let* ((options (widget-get widget :options)) | 3210 | (let* ((options (widget-get widget :options)) |
| 3211 | (widget-plist-value-type (widget-get widget :value-type)) | ||
| 3211 | (other `(editable-list :inline t | 3212 | (other `(editable-list :inline t |
| 3212 | (group :inline t | 3213 | (group :inline t |
| 3213 | ,(widget-get widget :key-type) | 3214 | ,(widget-get widget :key-type) |
| 3214 | ,(widget-get widget :value-type)))) | 3215 | ,widget-plist-value-type))) |
| 3215 | (args (if options | 3216 | (args (if options |
| 3216 | (list `(checklist :inline t | 3217 | (list `(checklist :inline t |
| 3217 | :greedy t | 3218 | :greedy t |
| @@ -3252,10 +3253,11 @@ To use this type, you must define :match or :match-alternatives." | |||
| 3252 | (defun widget-alist-convert-widget (widget) | 3253 | (defun widget-alist-convert-widget (widget) |
| 3253 | ;; Handle `:options'. | 3254 | ;; Handle `:options'. |
| 3254 | (let* ((options (widget-get widget :options)) | 3255 | (let* ((options (widget-get widget :options)) |
| 3256 | (widget-alist-value-type (widget-get widget :value-type)) | ||
| 3255 | (other `(editable-list :inline t | 3257 | (other `(editable-list :inline t |
| 3256 | (cons :format "%v" | 3258 | (cons :format "%v" |
| 3257 | ,(widget-get widget :key-type) | 3259 | ,(widget-get widget :key-type) |
| 3258 | ,(widget-get widget :value-type)))) | 3260 | ,widget-alist-value-type))) |
| 3259 | (args (if options | 3261 | (args (if options |
| 3260 | (list `(checklist :inline t | 3262 | (list `(checklist :inline t |
| 3261 | :greedy t | 3263 | :greedy t |