From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master 61a312ba0c: Update last event time during DND operations Date: Fri, 17 Jun 2022 09:57:05 +0300 Message-ID: <83fsk3pyke.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="30234"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Po Lu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Jun 17 09:05:23 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1o262l-0007go-B7 for ged-emacs-devel@m.gmane-mx.org; Fri, 17 Jun 2022 09:05:23 +0200 Original-Received: from localhost ([::1]:33924 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o262b-0002Ip-6t for ged-emacs-devel@m.gmane-mx.org; Fri, 17 Jun 2022 03:05:18 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:56926) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o25uq-0008Ly-TK for emacs-devel@gnu.org; Fri, 17 Jun 2022 02:57:17 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:57620) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o25uq-0002jm-Li; Fri, 17 Jun 2022 02:57:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=Subject:To:From:Date:mime-version:in-reply-to: references; bh=PJ/39nq0KLFUvSEiRTwZ5lQdI6LfSRJtmoLdFPBhGas=; b=S21vz76Xo0gLKl fUFMMX4Kp4wWvFTUS2lQXjMqebDH5wzS2W4xELSyIuUFHckvt+CIi23HMt5GDQkosb6bNDxSTqwA+ GKpF4nbchyFDlbDhX+/aNqo9lrugTKwfnzlJ7ffTFrDsoOIyrD+xCfCePzrgae3DmeSb8rKyU3kbb Us8AIhT+KWy6K/fzpSn1/ImyjAXDIXfPmcX4dC4GudwiSVuo+bAtS4PXqAKANREhejyuv0gTvNNZ/ PRDrf87VcvHlGDMB1XCpv0AhlBvKcLDtJdtyTLvD9Y8mj2CdzMGuJa2e00V6KnPFXGlXRBL4ttiwK q0pD+nLgypI3c+dQW2og==; Original-Received: from [87.69.77.57] (port=1710 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o25un-0007Y4-JL; Fri, 17 Jun 2022 02:57:09 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:291277 Archived-At: > +DEFUN ("x-display-set-last-user-time", Fx_display_last_user_time, > + Sx_display_set_last_user_time, 1, 2, 0, > + doc: /* Set the last user time of TERMINAL to TIME-OBJECT. > +TIME-OBJECT is the X server time, in milliseconds, of the last user > +interaction. This is the timestamp that `x-get-selection-internal' > +will use by default to fetch selection data. > +TERMINAL is the terminal on which the user interaction occurred. */) This doesn't tell the details about what object could TERMINAL be, like the other callers of check_x_display_info do. Is this intentional? doesn't this function support all the possible types of TERMINAL argument the other callers do?