]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_set_line_spacing, x_set_screen_gamma): Use signal_error.
authorKim F. Storm <storm@cua.dk>
Tue, 18 Jul 2006 13:28:09 +0000 (13:28 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 18 Jul 2006 13:28:09 +0000 (13:28 +0000)
src/frame.c

index 6e2a1a21e5530d6692fdf21076dfa77c8819a9b6..1fdeb129f8980123de1d4a133e5c30483556407e 100644 (file)
@@ -3030,8 +3030,7 @@ x_set_line_spacing (f, new_value, old_value)
   else if (NATNUMP (new_value))
     f->extra_line_spacing = XFASTINT (new_value);
   else
-    Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
-                           Fcons (new_value, Qnil)));
+    signal_error ("Invalid line-spacing", new_value);
   if (FRAME_VISIBLE_P (f))
     redraw_frame (f);
 }
@@ -3051,8 +3050,7 @@ x_set_screen_gamma (f, new_value, old_value)
     /* The value 0.4545 is the normal viewing gamma.  */
     f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
   else
-    Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
-                           Fcons (new_value, Qnil)));
+    signal_error ("Invalid screen-gamma", new_value);
 
   clear_face_cache (0);
 }