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.

61. Re: How to use calc functions in own lisp program? (score: 35)
Author: HIDDEN
Date: Mon, 01 Jun 2009 11:18:29 +0200
Andreas Röhler schrieb: As I see it is a another implementation of Emacs. But I work mit GNU Emacs and don't want to switch to another version. Anyway, thanks for this hint! reagrds Marc
/archive/html/help-gnu-emacs/2009-06/msg00037.html (5,073 bytes)

62. Re: How to use calc functions in own lisp program? (score: 35)
Author: HIDDEN
Date: Fri, 29 May 2009 21:39:50 +0200
Beside of the excellent calc-tool here, if it pertains to pure math-programming, my impression is, sxemacs has the most for it. At sxemacs-devel@sxemacs.org you should got an answer. Cheers Andreas
/archive/html/help-gnu-emacs/2009-05/msg00686.html (4,667 bytes)

63. Re: Problem with position and find (cl) (score: 35)
Author: HIDDEN
Date: Sat, 21 Jun 2008 14:38:32 +0200
Is it something like that you are looking for ? ,-- `-- -- A + Thierry Pub key: http://pgp.mit.edu
/archive/html/help-gnu-emacs/2008-06/msg00628.html (9,728 bytes)

64. Re: Date manangement. (score: 35)
Author: HIDDEN
Date: Tue, 25 Mar 2008 12:18:35 +0100
Hello, may be we meet us on planner mailing-list, i sent you there some code doing what you want, there is a function incrementing date, you can easily modify it for your need. here is the function:
/archive/html/help-gnu-emacs/2008-03/msg00699.html (6,259 bytes)

65. Re: adding holidays to calendar (score: 35)
Author: HIDDEN
Date: Mon, 19 Nov 2007 02:53:21 -0800
Thanks for replying, Rene! If I steal some of the holidays from you, for example "Gronings Ontzet", they show up fine. There are no other holidays on that day. However, "Dierendag" seems to be clobb
/archive/html/help-gnu-emacs/2007-11/msg00375.html (7,375 bytes)

66. Re: diary sexp (score: 35)
Author: HIDDEN
Date: 19 Nov 2006 12:09:21 -0600
RK> %%(diary-float '(11 12 1 2 3 4 5 6 7 8 9 10) 4 1) "The Easy Way RK> Discourses", Mannheim RK> BUT: I would like to have Emacs telling me the Discourse number ... RK> something like RK> "The Easy
/archive/html/help-gnu-emacs/2006-11/msg00370.html (5,315 bytes)

67. Re: questions about elisp with diary (score: 35)
Author: HIDDEN
Date: Mon, 24 Jul 2006 13:36:42 +0100
diary-float only takes an integer, not a list for the N argument. You would have to have something like %%(or (diary-float t 3 1) (diary-float t 3 3)) 10:30 Uhr Something Regards, -- Jim Ottaway
/archive/html/help-gnu-emacs/2006-07/msg00423.html (4,557 bytes)

68. RE: [External] : Re: Text scale mode and additional fonts (score: 27)
Author: HIDDEN
Date: Sat, 30 Dec 2023 21:17:59 +0000
Thanks for clarifying. That makes sense.
/archive/html/help-gnu-emacs/2023-12/msg00093.html (5,896 bytes)

69. Re: [External] : Re: Text scale mode and additional fonts (score: 27)
Author: HIDDEN
Date: Sat, 30 Dec 2023 20:54:20 +0200
Sorry, I was confused. What I wrote is true for the :height attribute of a face, not about :size in a font-spec. IOW, to get what he wants, the OP should define a face with :height attribute a float
/archive/html/help-gnu-emacs/2023-12/msg00091.html (5,530 bytes)

70. Re: math (was: Re: not good proposal: "C-z <letter>" reserved for users) (score: 27)
Author: HIDDEN
Date: Sat, 13 Feb 2021 18:08:43 +0300
Thanks, I knew somebody will improve it for free. Now I will use: (defun pct-of-number-in-total (number total) "Return the percentage that NUMBER represents in a TOTAL." (/ number total 0.01))
/archive/html/help-gnu-emacs/2021-02/msg00433.html (9,425 bytes)

71. math (was: Re: not good proposal: "C-z <letter>" reserved for users) (score: 27)
Author: HIDDEN
Date: Sat, 13 Feb 2021 15:55:52 +0100
The 1.0 and (float) just don't look good. Maybe one should do it onee time and be done with it. (defun // (n d) (/ n d 1.0) ) ;; (// 8 256) ; 0.03125 ;; (/ 8 256) ; 0 But maybe then people would thi
/archive/html/help-gnu-emacs/2021-02/msg00429.html (9,407 bytes)

72. Re: tex-mode.el (score: 27)
Author: HIDDEN
Date: Tue, 9 Feb 2021 21:26:41 +0100
Have tried your suggestion, but once the typeface is activated, re-setting tex-font-script-display and tex-suscript-height-ratio does not revert to the original (i.e. equivalent to disabling the tex
/archive/html/help-gnu-emacs/2021-02/msg00231.html (8,857 bytes)

73. Re: tex-mode.el (score: 27)
Author: HIDDEN
Date: Tue, 9 Feb 2021 21:13:15 +0100
Perhaps you're better off by tweaking those variables: (defcustom tex-font-script-display '(-0.2 0.2) "How much to lower and raise subscript and superscript content. This is a list of two floats. The
/archive/html/help-gnu-emacs/2021-02/msg00228.html (8,094 bytes)

74. Re: How to get time difference with Elisp? (score: 27)
Author: HIDDEN
Date: Tue, 12 Jul 2016 13:48:09 +0200
I have two functions to that end only I think bigger than in hours and minutes :) But I think it can be modified to do what you want by modifying the input arguments, the output format, and possibly
/archive/html/help-gnu-emacs/2016-07/msg00110.html (6,420 bytes)

75. Re: How to read a timestamp? (score: 27)
Author: HIDDEN
Date: Wed, 12 Aug 2015 04:56:52 +0200
I wrote something to that extent a while back: http://user.it.uu.se/~embe8573/conf/emacs-init/time-my.el Here is the relevant Elisp. (To add "time", change the arguments to `encode-time'.) (defun tim
/archive/html/help-gnu-emacs/2015-08/msg00312.html (5,968 bytes)

76. Fancy C/C++ Code Coloring: Useable but too slow for large buffers. Wanted: Optimization! (score: 27)
Author: HIDDEN
Date: Mon, 17 Mar 2008 05:43:00 -0700 (PDT)
To increase readabily for C/C++ code I have extended my font-locking with font-lock-add-keywords() to also colorize function calls, number literals, operators and more. But the performance is really
/archive/html/help-gnu-emacs/2008-03/msg00484.html (50,579 bytes)

77. Re: adding holidays to calendar (score: 27)
Author: HIDDEN
Date: 18 Nov 2007 12:42:22 +0100
Hi Stuart, This works for the Dutch local holidays (setq other-holidays '((holiday-fixed 8 28 "Gronings Ontzet") (holiday-fixed 4 30 "Koninginnedag") (holiday-fixed 5 14 "Valentijnsdag") (holiday-fix
/archive/html/help-gnu-emacs/2007-11/msg00356.html (5,563 bytes)

78. adding time to floating dates in calender (score: 27)
Author: HIDDEN
Date: Thu, 08 Sep 2005 09:56:32 +0200
Hi, I wonder how I can add the time to a float date in calender. To have, e.g., ever second thursday of every month appointment foo the entry in the diary file would be %%(diary-float t 4 2) foo ok,
/archive/html/help-gnu-emacs/2005-09/msg00168.html (4,557 bytes)

79. sql-mode and LaTeX (score: 27)
Author: HIDDEN
Date: Wed, 25 Feb 2004 10:58:48 -0330
Hello, I have written some lisp functions that allow the output from an SQL buffer to be redirected to another buffer. It is designed to work with Alex Schroeder's sql-mode and Postgres. The original
/archive/html/help-gnu-emacs/2004-02/msg00649.html (6,815 bytes)

80. Re: How to parse a string? (score: 27)
Author: HIDDEN
Date: Thu, 1 May 2003 11:02:24 -0700
Not as standard Emacs Lisp, but no doubt someone has written their own. I'm surprised nobody has replied by giving you a web page where you could find one. It wouldn't be hard to write one for yourse
/archive/html/help-gnu-emacs/2003-05/msg00029.html (6,489 bytes)


This search system is powered by Namazu