Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
31c45e79
Commit
31c45e79
authored
Feb 03, 1995
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(do_symval_forwarding): Use current_perdisplay, not get_perdisplay.
(store_symval_forwarding, find_symbol_value): Likewise.
parent
c04f7d65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
src/data.c
src/data.c
+9
-4
No files found.
src/data.c
View file @
31c45e79
...
...
@@ -644,9 +644,10 @@ do_symval_forwarding (valcontents)
return
*
(
Lisp_Object
*
)(
offset
+
(
char
*
)
current_buffer
);
case
Lisp_Misc_Display_Objfwd
:
if
(
!
current_perdisplay
)
abort
();
offset
=
XDISPLAY_OBJFWD
(
valcontents
)
->
offset
;
return
*
(
Lisp_Object
*
)(
offset
+
(
char
*
)
get_perdisplay
(
selected_frame
));
return
*
(
Lisp_Object
*
)(
offset
+
(
char
*
)
current_perdisplay
);
}
return
valcontents
;
}
...
...
@@ -694,7 +695,9 @@ store_symval_forwarding (sym, valcontents, newval)
break
;
case
Lisp_Misc_Display_Objfwd
:
(
*
(
Lisp_Object
*
)((
char
*
)
get_perdisplay
(
selected_frame
)
if
(
!
current_perdisplay
)
abort
();
(
*
(
Lisp_Object
*
)((
char
*
)
current_perdisplay
+
XDISPLAY_OBJFWD
(
valcontents
)
->
offset
))
=
newval
;
break
;
...
...
@@ -798,8 +801,10 @@ find_symbol_value (sym)
+
(
char
*
)
current_buffer
);
case
Lisp_Misc_Display_Objfwd
:
if
(
!
current_perdisplay
)
abort
();
return
*
(
Lisp_Object
*
)(
XDISPLAY_OBJFWD
(
valcontents
)
->
offset
+
(
char
*
)
ge
t_perdisplay
(
selected_frame
)
);
+
(
char
*
)
curren
t_perdisplay
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment