diff options
| author | Karl Heuer | 1994-10-04 19:49:16 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-04 19:49:16 +0000 |
| commit | 33b43fa6eed29bb47d932dc8dec4c093700211af (patch) | |
| tree | 8bf31b215bd4ede6fc7a857432590ba497491358 /src/xmenu.c | |
| parent | 90e1eb6f4dbe36d9f71254c685c215f64f9fde04 (diff) | |
| download | emacs-33b43fa6eed29bb47d932dc8dec4c093700211af.tar.gz emacs-33b43fa6eed29bb47d932dc8dec4c093700211af.zip | |
(single_keymap_panes, Fx_popup_menu): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src/xmenu.c')
| -rw-r--r-- | src/xmenu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 4a06c2c1b8d..4e87f706044 100644 --- a/src/xmenu.c +++ b/src/xmenu.c | |||
| @@ -536,7 +536,7 @@ single_keymap_panes (keymap, pane_name, prefix, notreal) | |||
| 536 | for (c = 0; c < len; c++) | 536 | for (c = 0; c < len; c++) |
| 537 | { | 537 | { |
| 538 | Lisp_Object character; | 538 | Lisp_Object character; |
| 539 | XFASTINT (character) = c; | 539 | XSETFASTINT (character, c); |
| 540 | item1 = XVECTOR (item)->contents[c]; | 540 | item1 = XVECTOR (item)->contents[c]; |
| 541 | if (CONSP (item1)) | 541 | if (CONSP (item1)) |
| 542 | { | 542 | { |
| @@ -731,8 +731,8 @@ cached information about equivalent key sequences.") | |||
| 731 | else | 731 | else |
| 732 | { | 732 | { |
| 733 | window = selected_window; | 733 | window = selected_window; |
| 734 | XFASTINT (x) = 0; | 734 | XSETFASTINT (x, 0); |
| 735 | XFASTINT (y) = 0; | 735 | XSETFASTINT (y, 0); |
| 736 | } | 736 | } |
| 737 | } | 737 | } |
| 738 | else | 738 | else |