diff options
| author | Ken Raeburn | 2001-10-16 09:09:51 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2001-10-16 09:09:51 +0000 |
| commit | f3fbd1553534bb85c75baf891c0ca9aaa4c3fa6f (patch) | |
| tree | 43eb51ff0ca4af1705387403827ef210098f2da8 /src/minibuf.c | |
| parent | 018ba359ab456f6a43f3acea0c15df616aa0ad02 (diff) | |
| download | emacs-f3fbd1553534bb85c75baf891c0ca9aaa4c3fa6f.tar.gz emacs-f3fbd1553534bb85c75baf891c0ca9aaa4c3fa6f.zip | |
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
with lisp system changes.
Diffstat (limited to 'src/minibuf.c')
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 9af0c0b0fe5..655a6061aaa 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -723,7 +723,7 @@ get_minibuffer (depth) | |||
| 723 | enabled in it. */ | 723 | enabled in it. */ |
| 724 | Fbuffer_enable_undo (buf); | 724 | Fbuffer_enable_undo (buf); |
| 725 | 725 | ||
| 726 | XCAR (tail) = buf; | 726 | XSETCAR (tail, buf); |
| 727 | } | 727 | } |
| 728 | else | 728 | else |
| 729 | { | 729 | { |