help-gnu-emacs archive search

Search String: Display: Description: Sort:

Results:

References: [ emacs (Too many documents hit. Ignored) ] [ float: 354 ]

Total 354 documents matching your query.

101. Re: even elder races get tired of waiting (score: 18)
Author: HIDDEN
Date: Mon, 22 Mar 2021 19:29:25 +0100
OK, well, hit me then, what should the definition be? This is for practical use, how many days till my date with Sandra Bullock - because maybe some things need to be arranged? ... No? Okay, bad exam
/archive/html/help-gnu-emacs/2021-03/msg00175.html (9,100 bytes)

102. Re: even elder races get tired of waiting (score: 18)
Author: HIDDEN
Date: Mon, 22 Mar 2021 10:48:11 +0300
Maybe you should first define what is meant with `days-from-date'. I like that type of functions and I was looking for that in pure Emacs lisp, and found the same what you already implemented that it
/archive/html/help-gnu-emacs/2021-03/msg00170.html (8,744 bytes)

103. Re: even elder races get tired of waiting (score: 18)
Author: HIDDEN
Date: Sun, 21 Mar 2021 23:30:35 +0100
How do you suggest I improve the function? ;;; -*- lexical-binding: t -*- ;;; ;;; this file: ;;; http://user.it.uu.se/~embe8573/emacs-init/time-cmp.el ;;; https://dataswamp.org/~incal/emacs-init/tim
/archive/html/help-gnu-emacs/2021-03/msg00161.html (7,186 bytes)

104. Re: even elder races get tired of waiting (score: 18)
Author: HIDDEN
Date: Sun, 21 Mar 2021 17:01:33 +0300
Great. I use PostgreSQL for that, and there is difference one day: (defun days-from (from-date to-date) "Returns days passed from FROM-DATE to TO-DATE in format YYYY-MM-DD." (string-to-number (string
/archive/html/help-gnu-emacs/2021-03/msg00145.html (7,068 bytes)

105. even elder races get tired of waiting (score: 18)
Author: HIDDEN
Date: Sat, 20 Mar 2021 21:37:59 +0100
;;; this file: ;;; http://user.it.uu.se/~embe8573/emacs-init/time-cmp.el ;;; https://dataswamp.org/~incal/emacs-init/time-cmp.el ;; ... (require 'cl-lib) (defun days-from-date (d1 d2) (let*((sep "-")
/archive/html/help-gnu-emacs/2021-03/msg00129.html (4,892 bytes)

106. Re: not good proposal: "C-z <letter>" reserved for users (score: 18)
Author: HIDDEN
Date: Sat, 13 Feb 2021 15:43:26 +0100
(defun percent (n d) (let ((pct (* 100 (/ n d 1.0)))) (message "%.1f%%" pct))) (percent 13973 204612) ; 6.8% One thing I don't understand tho - from the `format' docstring For %e and %f sequences, th
/archive/html/help-gnu-emacs/2021-02/msg00428.html (8,987 bytes)

107. Re: not good proposal: "C-z <letter>" reserved for users (score: 18)
Author: HIDDEN
Date: Sat, 13 Feb 2021 12:56:51 +0300
That is one that I used, then I have amplified it by the estimated number of Ubuntu users and used the percentage of Emacs users in popularity contest to find about estimated number of total Emacs us
/archive/html/help-gnu-emacs/2021-02/msg00414.html (16,283 bytes)

108. Re: Elisp - tag in list (score: 18)
Author: HIDDEN
Date: Mon, 18 Jan 2021 22:20:11 +0100
Easy customisation. Cool. In it correct to use "face inferior-vshift display" in the code below? (defun subinf-font-lock (pos) (unless (or (memq (get-text-property pos 'face) '(font-lock-constant-fac
/archive/html/help-gnu-emacs/2021-01/msg00357.html (5,482 bytes)

109. Re: Elisp - tag in list (score: 18)
Author: HIDDEN
Date: Mon, 18 Jan 2021 22:01:48 +0100
Do M-x customize-variable [ENTER] subinf-typeface-display [ENTER] try setting a value and the answer to your question should be obvious.
/archive/html/help-gnu-emacs/2021-01/msg00356.html (4,220 bytes)

110. Elisp - tag in list (score: 18)
Author: HIDDEN
Date: Mon, 18 Jan 2021 21:28:54 +0100
Can people explain me the tag used in list below? (defcustom subinf-typeface-display '(-0.2 0.2) (float :tag "superior-glyph")) )
/archive/html/help-gnu-emacs/2021-01/msg00354.html (3,705 bytes)

111. Re: Floating Point computations in elisp (score: 18)
Author: HIDDEN
Date: Sun, 20 Dec 2020 04:43:25 +0100
The ultimate question is then, how much will it cost. :)
/archive/html/help-gnu-emacs/2020-12/msg00810.html (7,523 bytes)

112. Re: Floating Point computations in elisp (score: 18)
Author: HIDDEN
Date: Sun, 20 Dec 2020 01:45:08 +0100
How about: 2 548 584 years (defun tau-ceti (speed) (let*((dist (* 11.8 9.46 (expt 10 12))) (time (/ dist speed) ) (days (/ time 24)) (whole-days (round days)) ) (format-seconds "%y years" (- (float-t
/archive/html/help-gnu-emacs/2020-12/msg00801.html (6,646 bytes)

113. Re: Floating Point computations in elisp (score: 18)
Author: HIDDEN
Date: Sun, 20 Dec 2020 01:38:25 +0100
I don't know, 215 981 years? (defun tau-ceti (speed) (let*((dist (* 9.46 (expt 10 12))) (time (/ dist speed) ) (hours (round time)) ) (format-seconds "%y years" (- (float-time (encode-time 0 0 hours
/archive/html/help-gnu-emacs/2020-12/msg00799.html (6,129 bytes)

114. Elisp - Elements in tlist is not being updated with the new values (score: 18)
Author: HIDDEN
Date: Sat, 19 Dec 2020 00:54:25 +0100
Am trying to use more let constructs. The problem is that the elements in tlist is not being updated with the new values. (defun timgrid (tstr tend tpd) (let* ( (timu tstr) (tfr tstr) (tlist (list ts
/archive/html/help-gnu-emacs/2020-12/msg00752.html (4,767 bytes)

115. Re: Understanding the "let" construct and the setting of variables (score: 18)
Author: HIDDEN
Date: Fri, 18 Dec 2020 21:45:37 +0300
Maybe. But I have got a feeling that is unused search. What I was meaning but did not express it that search should be exposed to public. I am not sure if that namazu search engine provides good rele
/archive/html/help-gnu-emacs/2020-12/msg00736.html (8,970 bytes)

116. Re: Expanding list into string within a command (score: 18)
Author: HIDDEN
Date: Sun, 6 Dec 2020 23:30:43 +0300
Thank you. I had to use `apply' when passing `args' that I get from &rest Now I have made the function better that takes input as string, processes outside command and returns output as string: (defu
/archive/html/help-gnu-emacs/2020-12/msg00323.html (9,300 bytes)

117. dms2dd Re: Expanding list into string within a command (score: 18)
Author: HIDDEN
Date: Sun, 6 Dec 2020 23:34:52 +0300
I have actually forgot that I have already transitioned Common Lisp to Emacs Lisp to convert DMS to DD coordinates. (defun geo/dms-parse (dms) (let* ((cardinal (cond ((string-match "N" dms) "N") ((st
/archive/html/help-gnu-emacs/2020-12/msg00324.html (6,327 bytes)

118. time between time (score: 18)
Author: HIDDEN
Date: Sat, 29 Jun 2019 16:48:32 +0200
Is this any good? (defun wall-clock-time (h1 m1 s1 h2 m2 s2) (let*((d 08) ; bonus points if anyone knows what happened then (m 05) (y 1978) (total-seconds-1 (float-time (encode-time s1 m1 h1 d m y)))
/archive/html/help-gnu-emacs/2019-06/msg00347.html (4,722 bytes)

119. Re: using setq to create lists based on other lists... (score: 18)
Author: HIDDEN
Date: Mon, 3 Dec 2018 02:21:05 +0900
Thank you for the comments :) The Introduction doesn't even mention that... I will. No reference to setf in the Introduction, and it's buried under tons of reference in the Reference... Thank you aga
/archive/html/help-gnu-emacs/2018-12/msg00024.html (10,475 bytes)

120. Re: using setq to create lists based on other lists... (score: 18)
Author: HIDDEN
Date: Sun, 02 Dec 2018 12:02:50 -0500
So you're back to using `setcar` :-( Those date/time thingies are indeed rather annoying to construct. copy-sequence + in-place modification is probably the best you can use, indeed :-( You're using
/archive/html/help-gnu-emacs/2018-12/msg00023.html (8,812 bytes)


This search system is powered by Namazu