diff options
| author | Karl Heuer | 1994-10-04 16:07:23 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-04 16:07:23 +0000 |
| commit | c5802b21e410767644f21142da695a70cf76dff8 (patch) | |
| tree | 8ac58b114c1065de4f96befb07c21528f9456b9f /src | |
| parent | a4773b43feba75567f7e4f913be17386aeac69ab (diff) | |
| download | emacs-c5802b21e410767644f21142da695a70cf76dff8.tar.gz emacs-c5802b21e410767644f21142da695a70cf76dff8.zip | |
(Fmarker_position): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src')
| -rw-r--r-- | src/marker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/marker.c b/src/marker.c index 71e3d0e2b31..6726f42c285 100644 --- a/src/marker.c +++ b/src/marker.c | |||
| @@ -65,7 +65,7 @@ DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0, | |||
| 65 | if (i < BUF_BEG (buf) || i > BUF_Z (buf)) | 65 | if (i < BUF_BEG (buf) || i > BUF_Z (buf)) |
| 66 | abort (); | 66 | abort (); |
| 67 | 67 | ||
| 68 | XFASTINT (pos) = i; | 68 | XSETFASTINT (pos, i); |
| 69 | return pos; | 69 | return pos; |
| 70 | } | 70 | } |
| 71 | return Qnil; | 71 | return Qnil; |