aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.h
Commit message (Collapse)AuthorAgeFilesLines
* (struct frame): New member already_hscrolled_p.Kim F. Storm2005-07-181-2/+6
|
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (struct frame): New member space_width.Kenichi Handa2004-12-301-1/+8
| | | | (FRAME_SPACE_WIDTH): New macro.
* (struct frame): New member force_flush_display_p.Kim F. Storm2004-02-081-0/+4
|
* (get_specified_cursor_type, get_window_cursor_type):Kim F. Storm2003-11-271-3/+0
| | | | Remove prototypes.
* * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,Jan Djärv2003-10-051-1/+0
| | | | | | | | | | | | | | | that function is removed. * xterm.c (x_set_offset): Use move_offset_left/top instead of x/y_pixels_outer_diff. (x_check_expected_move): Calculate move_offset_left/top. * xterm.h (struct x_output): New members: move_offset_top/left. * frame.c (x_set_frame_parameters): x_fullscreen_move removed, call x_set_offset directly. * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
* Add arch taglinesMiles Bader2003-09-011-0/+3
|
* Fix some of the font/face problems.Jan Djärv2003-06-261-0/+5
|
* (struct frame): Rename members height to text_lines,Kim F. Storm2003-05-241-100/+229
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | width to text_cols, window_height to total_lines, window_width to total_cols, new_height to new_text_lines, new_width to new_text_cols. All uses changed. (struct frame): New members which consolidate common members of x_output, w32_output, and mac_output structures: left_pos, top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff, win_gravity, size_hint_flags, border_width, internal_border_width, line_height, fringe_cols, left_fringe_width, right_fringe_width, want_fullscreen. All uses changed. (struct frame): New member column_width contaning the canonical column width, analogue to line_height. All uses changed. (struct frame): Rename members scroll_bar_pixel_width to config_scroll_bar_width, and scroll_bar_cols to config_scroll_bar_cols. All uses changed. (struct frame): New member scroll_bar_actual_width which consolidates and renames the vertical_scroll_bar_extra member of x_output, w32_output, and mac_output structures. All uses changed. (FRAME_PIXEL_HEIGHT): Renamed from PIXEL_HEIGHT and moved from x/w32/macterm.h files. All uses changed. Also change code which referred to f->output_data...->pixel_height. (FRAME_PIXEL_WIDTH): Renamed from PIXEL_WIDTH and moved from x/w32/macterm.h files. All uses changed. Also change code which referred to f->output_data...->pixel_width. (FRAME_LINES): Renamed from FRAME_HEIGHT. All uses changed. Also change code which referred to f->height. (FRAME_COLS): Renamed from FRAME_WIDTH. All uses changed. Also change code which referred to f->width. (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses to update new_text_lines and new_text_cols members directly. (FRAME_CONFIG_SCROLL_BAR_WIDTH): Renamed from FRAME_SCROLL_BAR_PIXEL_WIDTH. All uses changed. (FRAME_CONFIG_SCROLL_BAR_COLS): Renamed from FRAME_SCROLL_BAR_COLS. All uses changed. (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS): Renamed from FRAME_LEFT_SCROLL_BAR_WIDTH and FRAME_RIGHT_SCROLL_BAR_WIDTH, resp. All uses changed. (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH) (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros. (FRAME_TOTAL_COLS): Renamed from FRAME_WINDOW_WIDTH. (SET_FRAME_COLS): Renamed from SET_FRAME_WIDTH. (FRAME_TOTAL_COLS_ARG): Renamed from FRAME_WINDOW_WIDTH_ARG. (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro. (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro. (FRAME_LINE_HEIGHT): Renamed from CANON_Y_UNIT. Unconditionally return line_height member (it now has proper value also for non-window frames). (FRAME_COLUMN_WIDTH): Renamed from CANON_X_UNIT. Unconditionally return new column_width member (rather than the default font width). (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH) (FRAME_RIGHT_FRINGE_WIDTH): Renamed from FRAME_X_... and moved from x/w32/macterm.h files. Unconditionally return corresponding member of frame structure (they now have proper values also for non-window frames). (FRAME_TOTAL_FRINGE_WIDTH): Renamed from FRAME_FRINGE_WIDTH. Calculate return value from left and right widths. (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return internal_border_width member (has proper value for non-window frame). (FRAME_PIXEL_X_FROM_CANON_X): Renamed from PIXEL_X_FROM_CANON_X. (FRAME_PIXEL_Y_FROM_CANON_Y): Renamed from PIXEL_Y_FROM_CANON_Y. (FRAME_CANON_X_FROM_PIXEL_X): Renamed from CANON_X_FROM_PIXEL_X. (FRAME_CANON_Y_FROM_PIXEL_Y): Renamed from CANON_Y_FROM_PIXEL_Y. (FRAME_LINE_TO_PIXEL_Y): Renamed from CHAR_TO_PIXEL_ROW, consolidated from xterm.h, macterm.h, and w32term.h. (FRAME_COL_TO_PIXEL_X): Renamed from CHAR_TO_PIXEL_COL, consolidated from xterm.h, macterm.h, and w32term.h. (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Renamed from CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h. (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Renamed from CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h. (FRAME_PIXEL_Y_TO_LINE): Renamed from PIXEL_TO_CHAR_ROW consolidated from x/mac/w32term.h. (FRAME_PIXEL_X_TO_COL): Renamed from PIXEL_TO_CHAR_COL consolidated from x/mac/w32term.h. (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Renamed from PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h. (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Renamed from PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
* (Qauto_raise, Qauto_lower, ...): Declare extern all frameKim F. Storm2003-03-311-2/+107
| | | | | | | | | | | | | | | parameter related vars defined in frame.c. (EMACS_CLASS): Define here. (enum FULLSCREEN_*): Define here. (x_set_scroll_bar_default_width, x_wm_set_icon_position) (x_set_offset, x_new_font, x_new_fontset): Add prototypes. (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params) (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font) (x_set_fringe_width, x_set_border_width, x_set_internal_border_width) (x_set_visibility, x_set_autoraise, x_set_autolower) (x_set_unsplittable, x_set_vertical_scroll_bars) (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name) (x_figure_window_size): Add prototypes.
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-17/+17
|
* GTK versionJan Djärv2003-01-191-2/+18
|
* (get_specified_cursor_type, get_window_cursor_type):Dave Love2002-11-141-0/+3
| | | | Declare.
* (enum text_cursor_kinds): Consolidated here.Kim F. Storm2002-08-301-0/+29
| | | | | | | | | Added DEFAULT_CURSOR value. (struct frame) <desired_cursor, cursor_width> <blink_off_cursor, blink_off_cursor_width>: New fields. Consolidated from output_x, output_w32 and output_mac structs. (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR) (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
* Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,Andrew Choi2002-04-261-5/+5
| | | | lisp/ChangeLog, and src/ChangeLog for list of changes.
* (Vmouse_highlight): Declare extern.Kim F. Storm2002-02-161-0/+2
|
* (struct frame): Remove trunc_area_pixel_width and trunc_area_cols fields.Kim F. Storm2001-12-011-3/+4
| | | | | (Qleft_fringe, Qright_fringe): Declare. (FRAME_RIGHT_FRINGE_WIDTH): New macro.
* Fringe cleanup.Kim F. Storm2001-11-161-10/+10
| | | | | | (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS. (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH. (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
* (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros.Pavel Janík2001-11-021-2/+2
|
* (struct frame) <resized_p>: New member.Gerd Moellmann2001-10-301-0/+4
|
* Change the include blocker to the same form as in other headerGerd Moellmann2001-01-311-3/+3
| | | | files.
* (EMACS_FRAME_H_INCLUDED): Use an include blockerGerd Moellmann2001-01-311-5/+7
| | | | identifier which is not reserved by Standard C.
* Update copyright.Gerd Moellmann2001-01-311-6/+6
|
* (FRAME_RIGHT_SCROLL_BAR_WIDTH): New define.Gerd Moellmann2001-01-311-5/+15
|
* (output_method): Remove output_w32_console method.Andrew Innes2001-01-201-2/+0
| | | | (FRAME_W32_CONSOLE_P): Remove macro.
* (output_method): Add output_w32_console method.Andrew Innes2001-01-021-0/+2
| | | | (FRAME_W32_CONSOLE_P): New macro.
* (struct frame): Members desired_tool_bar_items,Gerd Moellmann2000-11-221-4/+3
| | | | | | current_tool_bar_items, n_desired_tool_bar_items, n_current_tool_bar_items removed. Add tool_bar_items and n_tool_bar_items.
* Initial check-in: changes for building Emacs under Mac OS.Andrew Choi2000-10-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-10-23 Andrew Choi <[email protected]> * dispextern.h [macintosh]: Include macgui.h instead of macterm.h. * dispnew.c [macintosh]: Include macterm.h. (init_display) [macintosh]: initialization for window system. * emacs.c (main) [macintosh]: Call syms_of_textprop, syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search, x_term_init, and init_keyboard before calling init_window_once. Also, call syms_of_xmenu. * fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of default fontset to Monaco. * frame.c [macintosh]: Include macterm.h. Remove declarations of NewMacWindow and DisposeMacWindow. (make_terminal_frame) [macintosh]: Call make_mac_terminal_frame instead of calling NewMacWindow and setting fields of f->output_data.mac directly. Call init_frame_faces. (Fdelete_frame) [macintosh]: Remove unused code. (Fmodify_frame_parameters) [macintosh]: Call x_set_frame_parameters instead of mac_set_frame_parameters. * frame.h [macintosh]: Define menu_bar_lines field in struct frame. Define FRAME_EXTERNAL_MENU_BAR macro. * keyboard.c [macintosh]: Include macterm.h. (kbd_buffer_get_event) [macintosh]: Generate delete_window_event and menu_bar_activate_event type events as for X and NT. (make_lispy_event) [macintosh]: Construct lisp events of type MENU_BAR_EVENT as for X and NT. * sysdep.c [macintosh]: Remove declaration for sys_signal. Include stdlib.h. Remove definition of Vx_bitmap_file_path. (sys_subshell) [macintosh]: Remove definition entirely. (init_sys_modes) [macintosh]: Do not initialize Vwindow_system and Vwindow_system_version here. Remove initialization of Vx_bitmap_file_path. (read_input_waiting): Correct the number of parameters passed to read_socket_hook. Move all Macintosh functions to mac/mac.c. * term.c [macintosh]: Include macterm.h. * window.c [macintosh]: Include macterm.h. * xdisp.c [macintosh]: Include macterm.h. Declare set_frame_menubar and pending_menu_activation. (echo_area_display) [macintosh]: Do not return if terminal frame is the selected frame. (update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f). Allow only the selected frame to set menu bar. (redisplay_window) [macintosh]: Obtain menu bar to redisplay by calling FRAME_EXTERNAL_MENU_BAR (f). (display_menu_bar) [macintosh]: Check FRAME_MAC_P (f). * xfaces.c [macintosh]: Include macterm.h. Define x_display_info and check_x. Declare XCreateGC. Define x_create_gc and x_free_gc. Initialize font_sort_order. (x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT, but call x_list_fonts instead of w32_list_fonts. (Finternal_face_x_get_resource) [macintosh]: Do not call display_x_get_resource. (prepare_face_for_display) [macintosh]: Set xgcv.font. (realize_x_face) [macintosh]: Load the font if it is specified in ATTRS. (syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed to Qt. * cus-edit.el (custom-button-face): Use 3D look for mac. (custom-button-pressed-face): Likewise. * faces.el (set-face-attributes-from-resources): Handle mac frames in the same way as x and w32 frames. (face-valid-attribute-values): Likewise. (read-face-attribute): Likewise. (defined-colors): Likewise. (color-defined-p): Likewise. (color-values): Likewise. (display-grayscale-p): Likewise. (face-set-after-frame-default): Likewise. (mode-line): Same default face as for x and w32. (tool-bar): Likewise. * frame.el: Remove call to frame-notice-user-settings at end of the file. * info.el (Info-fontify-node): make underlines invisible for mac as for x, pc, and w32 frame types. * term/mac-win.el: New file.
* (struct frame): Make the `nothing' member of unionGerd Moellmann2000-09-261-1/+1
| | | | output_data an EMACS_INT.
* (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)Gerd Moellmann2000-08-241-5/+10
| | | | | (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is a graphical frame.
* (struct frame): Use volatile unconditionally.Dave Love2000-06-051-9/+3
|
* (struct frame): Add member extra_line_spacing.Gerd Moellmann2000-04-241-0/+3
|
* (SELECTED_FRAME): Change definition to compile cleanlyGerd Moellmann2000-04-191-1/+1
| | | | on 64-bit systems where NULL is defined as `0'.
* * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):Ken Raeburn2000-03-301-1/+1
| | | | | | | | | | | | | | | | | | Verify correct object type before returning pointer, using eassert. * frame.h (XFRAME): Likewise. * buffer.c (Frename_buffer, Fset_buffer_multibyte, swap_out_buffer_local_variables, Fmove_overlay): Don't apply XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong type. * data.c (set_internal): Likewise. * dispextern.h (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P): Likewise. * fileio.c (auto_save_1): Likewise. * insdel.c (check_markers): Likewise. * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise. * undo.c (record_insert): Likewise. * vmsproc.c (child_sig): Likewise. * window.c (unshow_buffer, window_loop): Likewise. * xterm.c (x_erase_phys_cursor): Likewise.
* (struct frame): Member `fontset_data' removed.Kenichi Handa2000-03-211-6/+0
| | | | (FRAME_FONTSET_DATA): Macro removed.
* (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.Gerd Moellmann2000-03-051-0/+2
|
* (SELECTED_FRAME): Use NULL, not 0 to avoid warnings onDave Love2000-02-121-1/+1
| | | | Alpha.
* (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)Gerd Moellmann1999-12-101-0/+4
| | | | [!MSDOS && !WINDOWSNT && !macintosh]: Moved here from xterm.h.
* (PIX_TYPE) [! HAVE_X_WINDOWS]: Define PIX_TYPE.Dave Love1999-12-091-0/+2
|
* Changes for automatic remapping of X colors on terminal frames:Eli Zaretskii1999-12-061-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X frames. (Vface_tty_color_alist): Remove. (tty_defined_color): New function. (defined_color): Rewrite to support any type of frame. (tty_color_name): New function. (face_color_supported_p, Fface_color_gray_p, Fface_color_supported_p): Support non-X frames. (load_color): Enclose the color name in quotes, in the log messages. Remove DOS-specific version of load_color. (realize_tty_face): Take the supported colors from tty-color-alist. Support translation of X colors to the closest tty color, for both MSDOS and tty frames. [MSDOS]: Don't invert face colors if they were taken from the frame colors. (Fface_register_tty_color, Fface_clear_tty_colors): Remove. * frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]: Define a mostly empty surrogate. (tty_display): Declare. * frame.c (make_terminal_frame) [!macintosh]: Don't use tty_display. (Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P frames when the frame's param_alist includes 'reverse. (tty_display): Define. (make_terminal_frame) [!MSDOS]: Assign &tty_display to the output_data.x member. (Fframe_parameters): Return foreground and background color names on tty frames as well, in addition to MSDOS frames. * msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object selected_frame. (struct x_output): Remove unused members; document who uses each member. (FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE, FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES, FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES, FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove unused macro definintions. * msdos.c (IT_set_frame_parameters): Don't call recompute_basic_faces, the next redisplay will, anyway. (x_current_display): Remove unused variable. Many functions: changes for Lisp_object selected_frame. (IT_set_face): If the tty_reverse_p flag is set for the face, reverse the foreground and background colors. (Fmsdos_remember_default_colors): New function. (syms_of_msdos): Defsubr it. (IT_set_frame_parameters): Use initial_screen_colors[] when creating a new frame. If the frame parameters include 'reverse, swap the foreground and background colors. (internal_terminal_init): Initialize initial_screen_colors to -1. (syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up cus-start.el. * Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc. * xfns.c (x_defined_color): Rename from defined_color. All callers changed. (Fxw_color_defined_p): Renamed from Fx_color_defined_p; all callers changed. (Fxw_color_values): Renamed from Fx_color_values; all callers changed. (Fxw_display_color_p): Renamed from Fx_display_color_p; all callers changed. (x_window_to_frame, x_any_window_to_frame, x_non_menubar_window_to_frame, x_menubar_window_to_frame, x_top_window_to_frame): Use !FRAME_X_P instead of f->output_data.nothing. * xterm.h (x_defined_color): Rename from defined_color. * w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of f->output_data.nothing. (Fxw_color_defined_p): Renamed from Fx_color_defined_p; all callers changed. (Fxw_color_values): Renamed from Fx_color_values; all callers changed. (Fxw_display_color_p): Renamed from Fx_display_color_p; all callers changed. * dispextern.h (tty_color_name): Add prototype. * xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of f->output_data.nothing. * w32menu.c (menubar_id_to_frame): Likewise. * w32term.h (w32_output): Declare. * dosfns.c (Qmsdos_color_translate): Remove. (msdos_stdcolor_name): Now returns a Lisp_Object. * dosfns.h (Qmsdos_color_translate): Remove. * s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
* (CHECK_FRAME, CHECK_LIVE_FRAME): Put code in do-while.Gerd Moellmann1999-09-141-11/+10
|
* (SELECTED_FRAME): New.Gerd Moellmann1999-09-131-1/+12
|
* (FOR_EACH_FRAME): Use XCAR and XCDR.Ken Raeburn1999-09-111-4/+4
| | | | (PIXEL_X_FROM_CANON_X, PIXEL_Y_FROM_CANON_Y): Use XFLOAT_DATA.
* Change spelling of `toolbar' to `tool_bar' or `tool-bar'.Gerd Moellmann1999-09-051-13/+13
| | | | Likewise for upper-case etc.
* (struct frame): New member `gamma'.Gerd Moellmann1999-09-031-0/+5
|
* Do nothing if included a second time.Richard M. Stallman1999-09-031-1/+13
| | | | | | (enum output_method): Add mac_output frame type. (union output_data): Add new alternative `mac'. (FRAME_MAC_P): New macro.
* (FRAME_WINDOW_WIDTH_ARG): Add in FRAME_FLAGS_AREA_COLSGerd Moellmann1999-08-301-5/+6
| | | | | once instead of twice. (FRAME_LEFT_FLAGS_AREA_WIDTH): New.
* (FRAME_TOOLBAR_LINES): New.Gerd Moellmann1999-07-211-61/+178
| | | | | | | | | | | | | | | | | | | | (FRAME_TOP_MARGIN): New. (struct frame): Add toolbar-related members. (FRAME_WINDOW_WIDTH_ARG): Add bitmap area widths. (CHECK_FRAME): Give this macro a C-statement form! (CHECK_LIVE_FRAME): Ditto. (FRAME_FACE_CACHE): New. (struct frame): Add member face_cache. (FRAME_FLAGS_AREA_COLS): New. (FRAME_FLAGS_AREA_WIDTH): New. (struct frame): New member menu_bar_window. (struct frame): Add trunc_area_pixel_width, and _cols. (struct frame): Cursor-related stuff removed. (FRAME_SCROLL_BAR_WIDTH): Removed. (FRAME_WINDOW_WIDTH_ARG): Don't add scroll bar width. (FRAME_CURSOR_X): Removed. (FRAME_CURSOR_Y): Ditto. (struct frame): Remove old glyphs, add new.
* Comment changes.Richard M. Stallman1998-04-281-7/+97
|
* (FRAME_CURSOR_X_LIMIT): New macro.Richard M. Stallman1998-04-251-0/+3
|