From: Jan Djärv Date: Thu, 17 Feb 2011 10:19:29 +0000 (+0100) Subject: Fix KVAR/BVAR, X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~839 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=124c9ff0e5bd3502ab669d7669390fcdc5bd6122;p=emacs.git Fix KVAR/BVAR, * nsfns.m (Fx_create_frame, ns_set_name_as_filename) (Fns_read_file_name): Replace B_ with BVAR. * nsterm.m (ns_term_init): Use KVAR. --- diff --git a/src/ChangeLog b/src/ChangeLog index ff950f4d9fd..048fc7f052d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2011-02-17 Jan Djärv + + * nsfns.m (Fx_create_frame, ns_set_name_as_filename) + (Fns_read_file_name): Replace B_ with BVAR. + + * nsterm.m (ns_term_init): Use KVAR. + 2011-02-16 Eli Zaretskii * msdos.c (internal_terminal_init): Use KVAR. diff --git a/src/nsfns.m b/src/nsfns.m index c480c834602..6a5adbd7bf3 100644 --- a/src/nsfns.m +++ b/src/nsfns.m @@ -605,8 +605,8 @@ ns_set_name_as_filename (struct frame *f) BLOCK_INPUT; pool = [[NSAutoreleasePool alloc] init]; - filename = B_ (XBUFFER (buf), filename); - name = B_ (XBUFFER (buf), name); + filename = BVAR (XBUFFER (buf), filename); + name = BVAR (XBUFFER (buf), name); if (NILP (name)) { @@ -1329,9 +1329,9 @@ be shared by the new frame. */) } if (FRAME_HAS_MINIBUF_P (f) - && (!FRAMEP (kb->Vdefault_minibuffer_frame) - || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))) - kb->Vdefault_minibuffer_frame = frame; + && (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame)) + || !FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame))))) + KVAR (kb, Vdefault_minibuffer_frame) = frame; /* All remaining specified parameters, which have not been "used" by x_get_arg and friends, now go in the misc. alist of the frame. */ @@ -1428,7 +1428,7 @@ Optional arg INIT, if non-nil, provides a default file name to use. */) NSString *promptS = NILP (prompt) || !STRINGP (prompt) ? nil : [NSString stringWithUTF8String: SDATA (prompt)]; NSString *dirS = NILP (dir) || !STRINGP (dir) ? - [NSString stringWithUTF8String: SDATA (B_ (current_buffer, directory))] : + [NSString stringWithUTF8String: SDATA (BVAR (current_buffer, directory))] : [NSString stringWithUTF8String: SDATA (dir)]; NSString *initS = NILP (init) || !STRINGP (init) ? nil : [NSString stringWithUTF8String: SDATA (init)]; diff --git a/src/nsterm.m b/src/nsterm.m index 590a76ba16d..a09c95c7d01 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -3762,7 +3762,7 @@ ns_term_init (Lisp_Object display_name) terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD)); init_kboard (terminal->kboard); - terminal->kboard->Vwindow_system = Qns; + KVAR (terminal->kboard, Vwindow_system) = Qns; terminal->kboard->next_kboard = all_kboards; all_kboards = terminal->kboard; /* Don't let the initial kboard remain current longer than necessary.