Files
emacs/lisp
Alan Third e683a2570b Implement horizontal scroll bars on NS
* lisp/scroll-bar.el (horizontal-scroll-bars-available-p): Remove NS
check.
* lisp/term/ns-win.el: Remove custom NS scroll-bar handlers and bind
scroll-bar mouse clicks to standard handlers.
* src/nsterm.h (EmacsScroller): Add 'horizontal' property and rename
pixel_height to pixel_length.
* src/nsterm.m (x_set_window_size): Remove left-hand scroll-bar code. It
caused scroll-bars to be over-drawn and the best working solution
appears to be complete removal.
(ns_set_horizontal_scroll_bar): Rewrite to handle horizontal scrollers
correctly.
(ns_set_vertical_scroll_bar): Set width to actual scroller width.
(setFrame): Handle horizontal case.
(dealloc): Handle horizontal case.
(judge): Handle horizontal case.
(setPosition): Rename pixel_height to pixel_length.
(sendScrollEventAtLoc): Handle horizontal case.
(mouseDown): Handle horizontal case and general tidy up of code.
(mouseDragged): Handle horizontal case. Call sendScrollEventAtLoc with
absolute pixel size instead of ratio.
* src/window.h: Remove NS check.
2016-05-01 13:04:07 +02:00
..
2016-04-12 08:50:47 -07:00
2016-05-01 01:08:23 +02:00
2016-04-21 14:45:01 -07:00
2016-04-19 01:22:39 +03:00
2016-04-21 14:45:01 -07:00
2016-04-11 09:07:16 -07:00
2016-04-30 02:37:26 +02:00
2016-01-11 22:48:07 -08:00
2016-04-29 22:14:05 +02:00
2016-04-30 21:13:48 +02:00
2016-01-11 22:48:07 -08:00
2016-02-24 22:35:18 +02:00
2016-02-14 19:45:12 -08:00
2016-04-10 23:55:05 -07:00
2016-04-22 18:54:52 +02:00
2016-04-30 21:43:18 +02:00
2016-02-21 13:32:22 +11:00
2016-03-02 17:21:38 +00:00
2016-04-30 00:37:31 +02:00
2016-04-24 12:49:22 -07:00
-
2016-03-22 11:01:30 -07:00
2016-04-24 12:48:34 -07:00
2016-01-12 20:06:49 -05:00
2016-01-11 22:48:07 -08:00
2016-02-21 07:57:17 +09:00
2016-02-21 07:57:17 +09:00
2016-04-11 09:07:16 -07:00
2016-03-02 10:24:55 +00:00
2016-03-07 08:26:36 -08:00
2016-04-29 15:37:08 +02:00
2016-04-29 23:53:12 +02:00
2016-03-18 08:55:26 -07:00
2016-01-11 22:48:07 -08:00
2016-04-29 22:53:42 +02:00
-
2016-01-30 11:27:34 -08:00
2016-02-23 20:17:21 +11:00
2016-04-29 22:44:13 +02:00
2016-04-29 15:23:38 +02:00
2016-05-01 06:26:12 -04:00
2016-01-11 22:48:07 -08:00
-
2016-03-22 11:01:30 -07:00
2016-03-07 08:26:36 -08:00
2016-03-07 08:26:36 -08:00
2016-03-23 11:27:22 -07:00
2016-04-30 00:11:15 +02:00
2016-03-07 18:55:20 -08:00
2016-04-30 17:50:09 +02:00
2016-02-26 16:01:46 +10:30
2016-01-11 22:48:07 -08:00
2016-04-30 00:08:07 +02:00
2016-02-03 23:56:08 -08:00
2016-04-03 23:17:09 -07:00
2016-02-22 11:33:54 -08:00
2016-03-02 10:24:11 -08:00
2016-04-29 22:28:02 +02:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
'term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.