aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispnew.c
diff options
context:
space:
mode:
authorGlenn Morris2018-12-30 16:57:36 -0800
committerGlenn Morris2018-12-30 16:57:36 -0800
commita8e545ef6b92f6eb5916a6803a5d95256fd9eb6b (patch)
tree38752101a9dcceb10009f017bced8e0a213e21ed /src/dispnew.c
parent83bbb48142e5f9714408dd628d244678eff2dc11 (diff)
parent3abebeb8c3047092763f2d4a61fe7dfc659cd1bf (diff)
downloademacs-a8e545ef6b92f6eb5916a6803a5d95256fd9eb6b.tar.gz
emacs-a8e545ef6b92f6eb5916a6803a5d95256fd9eb6b.zip
Merge from origin/emacs-26
3abebeb * lisp/files.el (cd): Fix last change. (Bug#33791) 7a60a4f Fix remote directories in Eshell on MS-Windows 822a2d0 Fix :type 'group' in defcustom a731c56 Fix NS fringe bitmap drawing bug (bug#33864) 0c52459 Fix commentary in dispnew.c c9fdd1b Improve accept-process-process doc 9578c2a Fix a simple bug in display-buffer-use-some-frame 0f9be72 Clarify thread switching while waiting for process output 24ddea0 Improve process doc. with respect to handling of large input ... 2931016 ; Cosmetic changes in etc/NEWS 85516b8 Minor copyedits in landmark.el # Conflicts: # etc/NEWS
Diffstat (limited to 'src/dispnew.c')
-rw-r--r--src/dispnew.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index b628c694e85..39a91e2d955 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -5099,13 +5099,15 @@ update_frame_line (struct frame *f, int vpos, bool updating_menu_p)
5099 ***********************************************************************/ 5099 ***********************************************************************/
5100 5100
5101/* Determine what's under window-relative pixel position (*X, *Y). 5101/* Determine what's under window-relative pixel position (*X, *Y).
5102 Return the OBJECT (string or buffer) that's there. 5102 Return the object (string or buffer) that's there.
5103 Return in *POS the position in that object. 5103 Return in *POS the position in that object.
5104 Adjust *X and *Y to character positions. 5104 Adjust *X and *Y to character positions.
5105 If an image is shown at the specified position, return
5106 in *OBJECT its image-spec.
5105 Return in *DX and *DY the pixel coordinates of the click, 5107 Return in *DX and *DY the pixel coordinates of the click,
5106 relative to the top left corner of OBJECT, or relative to 5108 relative to the top left corner of object, or relative to
5107 the top left corner of the character glyph at (*X, *Y) 5109 the top left corner of the character glyph at (*X, *Y)
5108 if OBJECT is nil. 5110 if the object at (*X, *Y) is nil.
5109 Return WIDTH and HEIGHT of the object at (*X, *Y), or zero 5111 Return WIDTH and HEIGHT of the object at (*X, *Y), or zero
5110 if the coordinates point to an empty area of the display. */ 5112 if the coordinates point to an empty area of the display. */
5111 5113