mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-19 18:20:22 +02:00
A couple of typing problems (at leat partially) resolved.
This commit is contained in:
parent
f1083dd7d7
commit
f2961ccd8f
4 changed files with 26 additions and 5 deletions
|
@ -71,9 +71,9 @@
|
|||
/* shifts of more than one are done by a library call, single shifts are
|
||||
* performed in registers
|
||||
*/
|
||||
# define SCM_MAKINUM(x) (SCM_PACK (((SCM_UNPACK (x) << 1) << 1) + 2L))
|
||||
# define SCM_MAKINUM(x) (SCM_PACK ((((x) << 1) << 1) + 2L))
|
||||
#else
|
||||
# define SCM_MAKINUM(x) (SCM_PACK ((SCM_UNPACK (x) << 2) + 2L))
|
||||
# define SCM_MAKINUM(x) (SCM_PACK (((x) << 2) + 2L))
|
||||
#endif /* def __TURBOC__ */
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue