* bug#31845: 27.0.50; Error building master on MacOS
@ 2018-06-15 16:05 John Mastro
2018-06-15 16:56 ` John Mastro
0 siblings, 1 reply; 5+ messages in thread
From: John Mastro @ 2018-06-15 16:05 UTC (permalink / raw)
To: 31845
Hello,
I get the following warnings and error when building master at 3e7dff8
on MacOS 10.13.5 (High Sierra).
macfont.m:911:27: warning: passing 'CFStringRef' (aka 'const struct
__CFString *')
to parameter of type 'void *' discards qualifiers
[-Wincompatible-pointer-types-discards-qualifiers]
Fcons (make_mint_ptr (name), make_number (traits)));
^~~~
./lisp.h:2389:22: note: passing argument to parameter 'a' here
make_mint_ptr (void *a)
^
macfont.m:911:47: error: use of undeclared identifier 'traits'
Fcons (make_mint_ptr (name), make_number (traits)));
^
macfont.m:987:35: warning: passing 'CFTypeRef' (aka 'const void *') to parameter
of type 'void *' discards qualifiers
[-Wincompatible-pointer-types-discards-qualifiers]
value = string ? make_mint_ptr (CFRetain (string)) : Qnil;
^~~~~~~~~~~~~~~~~
./lisp.h:2389:22: note: passing argument to parameter 'a' here
make_mint_ptr (void *a)
^
2 warnings and 1 error generated.
make[2]: *** [macfont.o] Error 1
make[1]: *** [src] Error 2
make: *** [bootstrap] Error 2
Thanks
John
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#31845: 27.0.50; Error building master on MacOS
2018-06-15 16:05 bug#31845: 27.0.50; Error building master on MacOS John Mastro
@ 2018-06-15 16:56 ` John Mastro
2018-06-15 17:25 ` Andy Moreton
0 siblings, 1 reply; 5+ messages in thread
From: John Mastro @ 2018-06-15 16:56 UTC (permalink / raw)
To: 31845
John Mastro <john.b.mastro@gmail.com> wrote:
> I get the following warnings and error when building master at 3e7dff8
> on MacOS 10.13.5 (High Sierra).
I just tried again after seeing Paul Eggert pushed a related commit
(850c0c1). The two warnings are gone but this error remains:
macfont.m:911:56: error: use of undeclared identifier 'traits'
Fcons (make_mint_ptr ((void *) name), make_number (traits)));
^
1 error generated.
make[2]: *** [macfont.o] Error 1
make[1]: *** [src] Error 2
Thanks
John
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#31845: 27.0.50; Error building master on MacOS
2018-06-15 16:56 ` John Mastro
@ 2018-06-15 17:25 ` Andy Moreton
2018-06-15 19:12 ` John Mastro
0 siblings, 1 reply; 5+ messages in thread
From: Andy Moreton @ 2018-06-15 17:25 UTC (permalink / raw)
To: 31845
On Fri 15 Jun 2018, John Mastro wrote:
> John Mastro <john.b.mastro@gmail.com> wrote:
>> I get the following warnings and error when building master at 3e7dff8
>> on MacOS 10.13.5 (High Sierra).
>
> I just tried again after seeing Paul Eggert pushed a related commit
> (850c0c1). The two warnings are gone but this error remains:
>
> macfont.m:911:56: error: use of undeclared identifier 'traits'
> Fcons (make_mint_ptr ((void *) name), make_number (traits)));
^
This is a typo from commit 6c04c848. Replacing traits with sym_traits
should fix it.
AndyM
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#31845: 27.0.50; Error building master on MacOS
2018-06-15 17:25 ` Andy Moreton
@ 2018-06-15 19:12 ` John Mastro
0 siblings, 0 replies; 5+ messages in thread
From: John Mastro @ 2018-06-15 19:12 UTC (permalink / raw)
To: 31845; +Cc: andrewjmoreton
[-- Attachment #1: Type: text/plain, Size: 410 bytes --]
Andy Moreton <andrewjmoreton@gmail.com> wrote:
> > macfont.m:911:56: error: use of undeclared identifier 'traits'
> > Fcons (make_mint_ptr ((void *) name), make_number (traits)));
> ^
> This is a typo from commit 6c04c848. Replacing traits with sym_traits
> should fix it.
Indeed; trivial patch attached
Thanks
John
[-- Attachment #2: 0001-Fix-a-typo-from-commit-6c04c848.patch --]
[-- Type: application/octet-stream, Size: 994 bytes --]
From 437820549bd171d3f56e39a69474533259f21dcb Mon Sep 17 00:00:00 2001
From: John Mastro <john.b.mastro@gmail.com>
Date: Fri, 15 Jun 2018 12:08:59 -0700
Subject: [PATCH] ; Fix a typo from commit 6c04c848
---
src/macfont.m | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/macfont.m b/src/macfont.m
index 3a1e9e5f47..ed4e7c9d98 100644
--- a/src/macfont.m
+++ b/src/macfont.m
@@ -908,7 +908,8 @@ static void mac_font_get_glyphs_for_variants (CFDataRef, UTF32Char,
ASET (entity, FONT_EXTRA_INDEX, Fcopy_sequence (extra));
name = CTFontDescriptorCopyAttribute (desc, kCTFontNameAttribute);
font_put_extra (entity, QCfont_entity,
- Fcons (make_mint_ptr ((void *) name), make_number (traits)));
+ Fcons (make_mint_ptr ((void *) name),
+ make_number (sym_traits)));
if (synth_sym_traits & kCTFontTraitItalic)
FONT_SET_STYLE (entity, FONT_SLANT_INDEX,
make_number (FONT_SLANT_SYNTHETIC_ITALIC));
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
[parent not found: <20180517203706.10244-1-ambrevar@gmail.com>]
end of thread, other threads:[~2018-06-16 16:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-15 16:05 bug#31845: 27.0.50; Error building master on MacOS John Mastro
2018-06-15 16:56 ` John Mastro
2018-06-15 17:25 ` Andy Moreton
2018-06-15 19:12 ` John Mastro
[not found] <20180517203706.10244-1-ambrevar@gmail.com>
[not found] ` <376d786a-bd59-2878-22f2-16f4297be1b0@cs.ucla.edu>
[not found] ` <87h8m2ogfo.fsf@gnu.org>
2018-06-16 16:32 ` Paul Eggert
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.