search for: trail

Displaying 20 results from an estimated 2865 matches for "trail".

Did you mean: tail
2005 May 22
1
R-exts.texi: nuke-trailing-whitespace has changed name (PR#7888)
...ds of the Writing R Extensions manual, Emacs/ESS users are encouraged to use (add-hook 'ess-mode-hook (lambda () (ess-set-style 'C++) ;; [snip] (add-hook 'local-write-file-hooks (lambda () (nuke-trailing-whitespace))))) However, as of ess-5.2.4 (current is 5.2.8) `nuke-trailing-whitespace' has changed name to `ess-nuke-trailing-whitespace'. In addition: by default, ess-nuke-trailing-whitespace is a no-op (as was nuke-trailing-whitespace). To `activate' it one must set ess-nuke-tra...
2006 Jun 14
1
trailing spaces in code block
It seems that Markdown 1.0.1 strips off trailing spaces at the end of code blocks. Is this really what it's supposed to do? There might be reasons to include trailing spaces in code displayed on a web page -- for example, in demonstrating how to do a hard line break in markdown. Even if the trailing spaces aren't visible, they can be...
2023 Jul 14
2
[PATCH] drm/nouveau/fifo:Fix Nineteen occurrences of the gk104.c error: ERROR: : trailing statements should be on next line
Signed-off-by: ZhiHu <huzhi001 at 208suo.com> --- .../gpu/drm/nouveau/nvkm/engine/fifo/gk104.c | 40 ++++++++++++++----- 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.c b/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.c index d8a4d773a58c..b99e0a7c96bb 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.c +++
2012 Jan 08
2
disable interpretation of trailing slash
Hello, This is a feature request for a command-line option to disable special interpretation of trailing slashes on source directories. I have been using rsync for a couple of years now (what an awesome program!) and the meaning of the trailing slash on a source is always the one aspect of its syntax that slows me down and makes me check and re-check the manual to ensure that I have remembered its...
2013 Dec 10
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On Behalf Of Alp Toker > Subject: Re: [LLVMdev] lit: deprecating trailing \ in RUN lines > //\ > int x=0; > int x=0; > $ gcc-4.9 -fsyntax-only f.c Try gcc with -Wall, and you'll see the appropriate warning. Also try the MS compiler after removing the trailing space after the backslash; I don't have one available to play with, so I don't kn...
2007 May 11
14
Trailing commas [best practice survey]
I''m sure everyone has read and committed the Puppet Best Practice to memory by now (I joke). One of the things I''ve written in there deals with trailing commas, which I adopted from the way I used to do multiline in Perl, but I''ve noticed that most people don''t tend to do that in Puppet. Should I revise this or should we all start using the trailing commas? <https://reductivelabs.com/trac/puppet/wiki/PuppetBestPractice#sy...
2007 Dec 03
3
strsplit on comma, with a trailing comma in input
I have a comma-separated data file in which trailing commas sometimes occur. I am using strsplit to extract the data from this file, and it seems great except in cases with trailing comma characters. The example below illustrates. What I'd like is to get a fourth element in the answer, being an empty string just like the second element. Is...
2005 Feb 19
2
Bug#296017: logcheck: ignore.d.server pure-ftpd user with trailing whitespace
Package: logcheck Version: 1.2.34 Severity: normal the patterns for pure-ftpd in ignore.d.server are not matching a user with a trailing whitespace. here a some examples: Feb 18 13:02:33 web1 pure-ftpd: (stupid-pure-ftpd @84.56.131.73) [NOTICE] /example/example.txt downloaded (5908 bytes, 152196.03KB/sec) Feb 18 13:16:14 web1 pure-ftpd: (stupid-pure-ftpd @84.56.131.73) [INFO] Logout. every rule is affected! i have replaces t...
2013 Dec 08
2
[LLVMdev] lit: deprecating trailing \ in RUN lines
I'd like to propose deprecating and shortly thereafter removing the lit test runner feature that concatenates RUN lines ending in a trailing \ *Rationale:** * * Trailing \ has a special meaning in various language standards that we support nowadays. In the C preprocessor, for example, it's handled _before_ comments. Various compilers handle this differently and it introduces needless incompatibilities. * Forgett...
2013 Dec 10
2
[LLVMdev] lit: deprecating trailing \ in RUN lines
On Dec 10, 2013, at 1:43 PM, Caldarale, Charles R <Chuck.Caldarale at unisys.com> wrote: >> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] >> On Behalf Of Alp Toker >> Subject: Re: [LLVMdev] lit: deprecating trailing \ in RUN lines > >> //\ >> int x=0; >> int x=0; > >> $ gcc-4.9 -fsyntax-only f.c > > Try gcc with -Wall, and you'll see the appropriate warning. Also try the MS compiler after removing the trailing space after the backslash; I don't have one avail...
2012 Feb 11
1
Wine release 1.4-rc3
...ix some typography issues in the Serbian (Latin) translation. po: Fix some typography issues in the Serbian (Cyrillic) translation. po: Remove or fuzzy invalid Turkish shell folder translations. shell32: Fix the name of the 'Application Data' folders. kernel32: Add a trailing full stop to the error messages. Fr?d?ric Delanoy (28): po: Update French translation. po: Fix some trailing ellipses errors in Brazilian Portuguese translation. po: Fix some trailing ellipses errors in Italian translation. po: Fix some trailing ellipses errors in Japane...
2016 Nov 14
2
Highlighting trailing whitespaces on Phab?
I wonder if Phabricator has an ability to highlight trailing whitespaces, because I often find trailing whitespaces after they are submitted. If they were highlighted, they would have been removed before submitting. Does anyone know about this? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/piperm...
2003 Feb 19
3
removing leading/trailing blanks
Hi, What's the best way of dropping leading or trailing blanks from a character string? The only thing I can think of is using sub() to replace blanks with null strings, but I don't know if there is a better way (I also don't know how to represent the trailing blank in a regular expression). Thanks, Doug Grove
2013 Dec 08
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
On Sun, Dec 8, 2013 at 2:11 AM, Alp Toker <alp at nuanti.com> wrote: > I'd like to propose deprecating and shortly thereafter removing the lit > test runner feature that concatenates RUN lines ending in a trailing \ > I'm really opposed to this. Especially for the Clang test suite where run lines are often *very* long and hard to organize, read, and edit without this feature. > > *Rationale:* > > > - Trailing \ has a special meaning in various language standards that > we...
2010 Dec 14
2
How to left or right truncate a character string?
Hi R-helpers, I have a character string, for example: "lm(y ~ X2 + X3 + X4)" from which I would like to strip off the leading and trailing quotation marks resulting in this: lm(y ~ X2 + X3 + X4) I have tried using gsub() but I can't figure out how to specify the quotation mark using a regular expression. Alternatively, I would like a function that lets me delete the leading (or trailing) X characters, and in this case X=1 (...
2012 Jul 19
6
Remove leading and trailing spaces from folder names?
Hi! Anybody got a doveadm script which can remove leading and trailing spaces from folder names? Right now we're migrating mailboxes from dovecot -> Exchange, and Exchange cannot handle leading and trailing spaces in Folder names. -- Ralf Hildebrandt Gesch?ftsbereich IT | Abteilung Netzwerk Charit? - Universit?tsmedizin Berlin Campus Benjamin Frankl...
2016 Nov 14
3
Highlighting trailing whitespaces on Phab?
When I create a patch, I run clang-format-diff, so that's fine. What I want to do is to find trailing whitespaces in others patches. On Mon, Nov 14, 2016 at 2:30 PM, Mehdi Amini <mehdi.amini at apple.com> wrote: > Hi, > > clang-format removes them. > If you are (like me) likely to forget to run "git clang-format HEAD~” > before pushing, adding a pre-commit (or pre-pus...
2010 Oct 12
0
[LLVMdev] Fixing trailing whitespace
I see a lot of commits fixing whitespace, my own included. Trailing whitespace is very annoying and many of us have our editors setup to remove it. This creates a problem when modifying other files that have trailing whitespace on just about every empty line and comment. It requires sifting through the diff and extracting the real changes. Of course we could ju...
2007 Nov 28
1
IMAP --> Creating Folders --> trailing slash
Hello List, i use Dovecot 1.0.7 for pop and imap on Suse Linux 10.1. I need a little help in understanding something. If i want to create a folder with outlook express or thunderbird which can also create subfolders, then i have to create these folders with a trailing slash. folders created with trailing slash are in filesystem created als real folders, "normal" folders are created as file. Is it possible to change this behavior? I want to create a folders just by typing a name without trailing slash. It should be possible to store messages in t...
2003 Mar 14
1
Formatting significant digits with trailing zeros
I need a function like signif(), but returns the rounded values as character strings, formatted with trailing zeros where appropriate. If anyone has one, I would sure appreciate a copy. Thanks -Don Details: signif() rounds a number to a specified number of significant digits, for example: > x <- c(2.503,2.477,0.1204) > signif(x[1],3) [1] 2.5 > signif(x[2],3) [1] 2.48 > sign...