diff options
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2006-12-04 15:04:00 +0000 |
---|---|---|
committer | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2006-12-04 15:04:00 +0000 |
commit | 36222e78c68d2536091ff95122a06af264457026 (patch) | |
tree | 73f9f3a688fb27e8aaef096299eb2e72c2f07c5c /lisp/printing.el | |
parent | 758e48a0d10ab5e464b45e89706c47046ca15290 (diff) | |
download | emacs-36222e78c68d2536091ff95122a06af264457026.tar.gz emacs-36222e78c68d2536091ff95122a06af264457026.tar.bz2 emacs-36222e78c68d2536091ff95122a06af264457026.zip |
Replace easy-menu-change by easy-menu-add-item.
Diffstat (limited to 'lisp/printing.el')
-rw-r--r-- | lisp/printing.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/printing.el b/lisp/printing.el index 9423df972df..4a41dac8dc4 100644 --- a/lisp/printing.el +++ b/lisp/printing.el @@ -3112,7 +3112,9 @@ Calls `pr-update-menus' to adjust menus." (pr-get-symbol (nth 1 menu-file)) (pr-get-symbol "Print")))) (t - (easy-menu-change (cdr menu-file) "Print" pr-menu-spec)))))))) + (easy-menu-add-item global-map menu-file + (easy-menu-create-menu "Print" pr-menu-spec))) + )))))) (pr-update-menus t)) |