[Lldb-commits] [lldb] [lldb] Fix typos in various help messages. (PR #109851)

2024-09-24 Thread Ryan Mansfield via lldb-commits
rjmansfield wrote: Could someone with commit access please merge on my behalf? Thanks. https://github.com/llvm/llvm-project/pull/109851 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commi

[Lldb-commits] [lldb] [lldb] Fix typos in various help messages. (PR #109851)

2024-09-24 Thread Ryan Mansfield via lldb-commits
https://github.com/rjmansfield created https://github.com/llvm/llvm-project/pull/109851 None >From 7152beddd387b5d4ccef7653edaf2238999a2cfa Mon Sep 17 00:00:00 2001 From: Ryan Mansfield Date: Tue, 24 Sep 2024 15:29:05 -0400 Subject: [PATCH] [lldb] Fix typos in various help messa

[clang] [clang] Fix various typos and whitespace in HelpText. (PR #108527)

2024-09-13 Thread Ryan Mansfield via cfe-commits
rjmansfield wrote: Could someone with commit access please merge on my behalf? Thanks. https://github.com/llvm/llvm-project/pull/108527 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Fix various typos and whitespace in HelpText. (PR #108527)

2024-09-13 Thread Ryan Mansfield via cfe-commits
https://github.com/rjmansfield created https://github.com/llvm/llvm-project/pull/108527 None >From 8bea5472c6be19664b4c044f510b757b88ec441f Mon Sep 17 00:00:00 2001 From: Ryan Mansfield Date: Fri, 13 Sep 2024 06:31:50 -0400 Subject: [PATCH] [clang] Fix various typos and whitespace in HelpT

[Lldb-commits] [PATCH] D109508: [lldb] Fix format string in Communication::Write

2021-09-09 Thread Ryan Mansfield via Phabricator via lldb-commits
rmansfield added a comment. Thanks. Could someone please apply on my behalf? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D109508/new/ https://reviews.llvm.org/D109508 ___ lldb-commits mailing list lldb-

[Lldb-commits] [PATCH] D109508: [lldb] Fix format string in Communication::Write

2021-09-09 Thread Ryan Mansfield via Phabricator via lldb-commits
rmansfield created this revision. rmansfield added a reviewer: JDevlieghere. rmansfield added a project: LLDB. rmansfield requested review of this revision. Herald added a subscriber: lldb-commits. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D109508 Files: lldb/source/Core/C

[PATCH] D106889: [examples] Fix the clang-interpreter example for changes in 2487db1f2862

2021-08-13 Thread Ryan Mansfield via Phabricator via cfe-commits
rmansfield abandoned this revision. rmansfield added a comment. This got fixed by b4c0307d598004cfd96c770d2a4a84a37c838ba9 Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D106889/ne

[PATCH] D106889: [examples] Fix the clang-interpreter example for changes in 2487db1f2862

2021-07-27 Thread Ryan Mansfield via Phabricator via cfe-commits
rmansfield created this revision. rmansfield added a reviewer: lhames. rmansfield requested review of this revision. Herald added a project: clang. Herald added a subscriber: cfe-commits. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D106889 Files: clang/examples/clang-interpr

[Lldb-commits] [PATCH] D79953: [lldb] Update stop info override callback comment.

2020-05-14 Thread Ryan Mansfield via Phabricator via lldb-commits
rmansfield added a comment. Yes, if you can commit it I'd appreciate it. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D79953/new/ https://reviews.llvm.org/D79953 ___ lldb-commits mailing list lldb-comm

[Lldb-commits] [PATCH] D79953: [lldb] Update stop info override callback comment.

2020-05-14 Thread Ryan Mansfield via Phabricator via lldb-commits
rmansfield created this revision. rmansfield added a reviewer: LLDB. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. In https://reviews.llvm.org/D31172 GetStopInfoOverrideCallback was moved and renamed. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D7995

[PATCH] D79293: [clang-format] [PR45218] Fix an issue where < and > and >> in a for loop gets incorrectly interpreted at a TemplateOpener/Closer

2020-05-02 Thread Ryan Mansfield via Phabricator via cfe-commits
rmansfield added a comment. They're overly reduced examples ;) but embedded programmers tend to make heavy use of shift operators, including within for loops and if stmts CHANGES SINCE LAST ACTION https://reviews.llvm.org/D79293/new/ https://reviews.llvm.org/D79293 ___

[PATCH] D79293: [clang-format] [PR45218] Fix an issue where < and > and >> in a for loop gets incorrectly interpreted at a TemplateOpener/Closer

2020-05-02 Thread Ryan Mansfield via Phabricator via cfe-commits
rmansfield added a comment. Couple examples: void foo(int x) { for (unsigned int i = 0; i < x >> 1; i++) { } } and int i = 0; if (i < x >> 1) {} } CHANGES SINCE LAST ACTION https://reviews.llvm.org/D79293/new/ https://reviews.llvm.org/D79293 _

Re: [Patch] Add OPT_Wattributes to ignored attributes on template args

2015-10-19 Thread Ryan Mansfield
Ping: https://gcc.gnu.org/ml/gcc-patches/2015-09/msg02256.html Regards, Ryan Mansfield On 15-09-29 04:21 PM, Ryan Mansfield wrote: Hi, In canonicalize_type_argument attributes are being discarded with a warning. Should it be added to OPT_Wattributes? 2015-09-29 Ryan Mansfield

[Patch] Add OPT_Wattributes to ignored attributes on template args

2015-09-29 Thread Ryan Mansfield
Hi, In canonicalize_type_argument attributes are being discarded with a warning. Should it be added to OPT_Wattributes? 2015-09-29 Ryan Mansfield * pt.c (canonicalize_type_argument): Use OPT_Wattributes in warning. Index: cp/pt.c

[Patch][testsuite,i386]: Remove include of values.h from avx512

2015-04-15 Thread Ryan Mansfield
x-gnu has no regressions with the include removed. I wasn't able to determine which target, if any, required values.h. 2015-04-15 Ryan Mansfield * gcc.target/i386/avx512bw-vpermi2w-2.c: Remove values.h include. * gcc.target/i386/avx512bw-vpermt2w-2.c: Ditto. *

Re: [Patch][testsuite] Fix a few test cases

2014-12-12 Thread Ryan Mansfield
On 14-12-12 04:29 PM, Mike Stump wrote: On Dec 12, 2014, at 11:38 AM, Ryan Mansfield wrote: Here are a few test tweaks. In 921202-1.c, if STACK_SIZE is used then VLEN will blow the stack with 64bit longs. e.g. if STACK_SIZE == 512K then 3 arrays of 32767 longs means at a minimum 767K of

Re: [Patch]: Check __gthread_setspecific return

2014-12-12 Thread Ryan Mansfield
On 14-12-05 05:53 PM, Jeff Law wrote: On 12/02/14 10:53, Ryan Mansfield wrote: Hi, Underlying pthread_setspecific can return non-zero with ENOMEM or EINVAL. 2014-12-02 Ryan Mansfield * emutls.c (__emutls_get_address): Check __gthread_setspecific returns. OK? OK. Thanks Jeff

[Patch][testsuite] Fix a few test cases

2014-12-12 Thread Ryan Mansfield
main's caller, which can cause test case crashes on return. 2014-12-12 Ryan Mansfield * gcc.c-torture/execute/921202-1.c: Adjust VLEN. * gcc.c-torture/execute/pr51447.c: Restore rbx for x86-64. * gcc.dg/cpp/trad/include.c: Exclude QNX targets. OK? Regards,

[Patch]: Check __gthread_setspecific return

2014-12-02 Thread Ryan Mansfield
Hi, Underlying pthread_setspecific can return non-zero with ENOMEM or EINVAL. 2014-12-02 Ryan Mansfield * emutls.c (__emutls_get_address): Check __gthread_setspecific returns. OK? Regards, Ryan Mansfield Index: libgcc/emutls.c

[aarch64] Remove aarch64_function_profiler prototype

2014-04-30 Thread Ryan Mansfield
aarch64_function_profiler was removed in rev203028 but the prototype was left behind. If OK, can someone apply? Thanks. Regards, Ryan Mansfield 2014-04-30 Ryan Mansfield * config/aarch64/aarch64-protos.h (aarch64_function_profiler): Remove. Index: config/aarch64/aarch64

Re: [Committed][ARM][AArch64] Patches previously ok'd for stage1

2014-04-24 Thread Ryan Mansfield
On 14-04-24 12:12 PM, Kyrill Tkachov wrote: On 24/04/14 14:44, Ryan Mansfield wrote: On 14-04-23 11:38 AM, Kyrill Tkachov wrote: http://gcc.gnu.org/ml/gcc-patches/2014-03/msg00934.html (http://gcc.gnu.org/ml/gcc-patches/2014-03/msg01634.html) This patch breaks building arm-eabi with a 32bit

Re: [Committed][ARM][AArch64] Patches previously ok'd for stage1

2014-04-24 Thread Ryan Mansfield
-common.c:198: error: integer constant is too large for 'long' type ../../gcc/config/arm/aarch-common.c:205: error: integer constant is too large for 'long' type ../../gcc/config/arm/t-arm:83: recipe for target 'aarch-common.o' failed make[2]: *** [aarch-comm

gcc 4.8.2 online docs broken

2014-01-08 Thread Ryan Mansfield
w3c validator page says there's 54 broken links. It looks like anything with a "-" in the URL is affected. Regards, Ryan Mansfield

Re: [PATCH, preprocessor] Fix 56896

2014-01-07 Thread Ryan Mansfield
On 13-12-10 01:47 PM, Ryan Mansfield wrote: Fixes missing DIR_SEPARATOR if --with-gxx-include-dir configured as subdir of sysroot. 2013-12-10 Ryan Mansfield PR preprocessor/56896 * incpath.c (add_standard_paths): Strip trailing sysroot DIR_SEPARATOR only if

Re: Fix bootstrap with -mno-accumulate-outgoing-args

2014-01-02 Thread Ryan Mansfield
reported in PR, too. FWIW, I tested your patch and it doesn't address the ICE on ARM. Regards, Ryan Mansfield

Re: [PATCH, testsuite] Fix alignment in movapd tests

2013-12-11 Thread Ryan Mansfield
On 13-12-10 01:13 PM, Uros Bizjak wrote: Hello! 2013-12-10 Ryan Mansfield PR testsuite/59442 * gcc.target/i386/sse2-movapd-1.c: Fix alignment attributes. * gcc.target/i386/sse2-movapd-2.c: Likewise. * gcc.target/i386/avx-vmovapd-256-1.c: Likewise. * gcc.target/i386/avx-vmovapd-256-2.c

[PATCH, preprocessor] Fix 56896

2013-12-10 Thread Ryan Mansfield
Fixes missing DIR_SEPARATOR if --with-gxx-include-dir configured as subdir of sysroot. 2013-12-10 Ryan Mansfield PR preprocessor/56896 * incpath.c (add_standard_paths): Strip trailing sysroot DIR_SEPARATOR only if appended path begins with DIR_SEPARATOR. Regards

[PATCH, testsuite] Fix alignment in movapd tests

2013-12-10 Thread Ryan Mansfield
The movapd tests in the i386 testsuite fail if built with -fstack-protector-strong or -fstack-protector-all, due to 8byte alignment instead of 16, or 32byte alignment. 2013-12-10 Ryan Mansfield PR testsuite/59442 * gcc.target/i386/sse2-movapd-1.c: Fix alignment

doc: Add -fuse-ld to option index

2013-12-01 Thread Ryan Mansfield
I noticed there wasn't an entry in the option index for -fuse-ld. If OK, can someone apply? Thanks. Regards, Ryan Mansfield 2013-12-01 Ryan Mansfield * doc/invoke.texi (-fuse-ld): Add index entry. Index: gcc/doc/invoke

Re: C++ PATCH for c++/54277 (wrong cv-quals in lambda)

2013-03-19 Thread Ryan Mansfield
cc-patches but bugzilla is currently offline. Regards, Ryan Mansfield namespace std __attribute__ ((__visibility__ ("default"))) { template < typename _Tp > struct remove_reference { typedef _Tp type; }; template < typename _Tp > constexpr _Tp &&

Re: Backtrace library [1/3]

2012-09-19 Thread Ryan Mansfield
On 12-09-19 06:58 PM, Ian Lance Taylor wrote: Thanks for the additional info. I have committed this patch, which should fix the problem. Bootstrapped and ran libbacktrace tests on x86_64-unknown-linux-gnu. Thanks Ian. This patch fixes the issue. Regards, Ryan Mansfield 2012-09-19 Ian

Re: Backtrace library [1/3]

2012-09-19 Thread Ryan Mansfield
On 12-09-19 06:17 PM, Ian Lance Taylor wrote: On Wed, Sep 19, 2012 at 1:56 PM, Ryan Mansfield wrote: I'm hitting the following build issue /bin/sh ./libtool --tag=CC --mode=compile i686-unknown-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libbacktrace -I ../../libbacktrace/../inclu

Re: Backtrace library [1/3]

2012-09-19 Thread Ryan Mansfield
../libbacktrace/backtrace.c:69: warning: implicit declaration of function '_Unwind_GetIPInfo' make[3]: *** [backtrace.lo] Error 1 Regards, Ryan Mansfield

Re: Diagnostics from GCC_DRIVER_HOST_INITIALIZATION

2012-07-27 Thread Ryan Mansfield
On 12-07-27 03:41 AM, Dodji Seketeli wrote: 2012-07-20 Ryan Mansfield * gcc.c (main): Move GCC_DRIVER_HOST_INITIALIZATION after diagnostic_initialize. Could someone please apply the change? The change seems small and obvious enough to not require copyright assignment on

Re: Diagnostics from GCC_DRIVER_HOST_INITIALIZATION

2012-07-20 Thread Ryan Mansfield
On 12-07-19 06:06 PM, Gabriel Dos Reis wrote: On Thu, Jul 19, 2012 at 4:13 PM, Ryan Mansfield wrote: GCC_DRIVER_HOST_INITIALIZATION happens before diagnostic_initialize, this can cause crashes if it call diagnostics such as warning, or fatal_error are used in the macro. One example would be in

Re: Commit: ARM: Document -munaligned-access

2012-07-20 Thread Ryan Mansfield
codes generates code that accesses memory on unaligned +adresses. This will require the kernel of those systems to enable adresses -> addresses. Regards, Ryan Mansfield

Diagnostics from GCC_DRIVER_HOST_INITIALIZATION

2012-07-19 Thread Ryan Mansfield
TIALIZATION; +#endif + if (atexit (delete_temp_files) != 0) fatal_error ("atexit failed"); Regards, Ryan Mansfield

Re: Fix crash in vect_is_slp_reduction

2011-05-20 Thread Ryan Mansfield
On 11-05-20 10:17 AM, Richard Guenther wrote: On Fri, May 20, 2011 at 4:06 PM, Ryan Mansfield wrote: There is a crash in vect_is_slp_reduction where use_stmt doesn't get initialized in the FOR_EACH_IMM_USE_FAST loop. 1718 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, lhs) (gdb)

Fix crash in vect_is_slp_reduction

2011-05-20 Thread Ryan Mansfield
imple_assign (use_stmt) Regards, Ryan Mansfield

Re: GCC 4.4.2 Status Report (2009-10-15)

2009-10-15 Thread Ryan Mansfield
is a permission issue accessing onlinedocs/gcc-4.4.2/gcc/ (i.e. 403) Regards, Ryan Mansfield

Re: Add my name to Write-after-Approval List

2009-09-14 Thread Ryan Mansfield
self from the MAINTAINERS file: http://gcc.gnu.org/ml/gcc-patches/2006-08/msg00513.html Regards, Ryan Mansfield

Re: [lto] Reader-writer compatibility?

2009-09-01 Thread Ryan Mansfield
Diego Novillo wrote: On Tue, Sep 1, 2009 at 11:42, Ryan Mansfield wrote: Is it required that the same compiler that generated lto objects be used to read them? I've come across a couple ICEs with the current revision reading lto objects created by a slightly older version but

[lto] Reader-writer compatibility?

2009-09-01 Thread Ryan Mansfield
Is it required that the same compiler that generated lto objects be used to read them? I've come across a couple ICEs with the current revision reading lto objects created by a slightly older version but same configuration. Is this simply invalid usage of my part? Regards, Ryan Mansfield

Re: GCC 4.3 target deprecation proposals

2008-01-29 Thread Ryan Mansfield
d this target. We intend to update this target and post test results in the very near future. Regards, Ryan Mansfield

RE: C++, export for templates (was: C++ standard)

2006-02-06 Thread Ryan Mansfield
of export for C++.) > > -- Gaby Well, my point was that Herb Sutter had just written a paper on it, and it was the EDG guys who had done the implementation. Even though Sutter's paper was debunked, do EDG no longer stand behind their 2.5-3yr estimate? Regards, Ryan Mansfield

RE: C++, export for templates (was: C++ standard)

2006-02-06 Thread Ryan Mansfield
ook EDG 1.5 years of planning and 3 person years to implement export. EDG estimates elapsed time for other implementers approximately 2.5 to 3 years, start to finish. [1] http://std.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1426.pdf Regards, Ryan Mansfield

RE: What are the differences between 2.95.3 and 3.2.3?

2005-11-02 Thread Ryan Mansfield
http://gcc.gnu.org/gcc-3.0/features.html http://gcc.gnu.org/gcc-3.0/caveats.html http://gcc.gnu.org/gcc-3.1/changes.html http://gcc.gnu.org/gcc-3.2/changes.html Regards, Ryan Mansfield -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pascal Aschwanden

RE: Complier not giving warning/error in this scenario.. Please h elp..

2005-09-28 Thread Ryan Mansfield
andard for more information Regards, Ryan Mansfield -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Soujanya Gundlapalli Sent: Wednesday, September 28, 2005 11:06 PM To: [EMAIL PROTECTED] Cc: gcc-bugs@gcc.gnu.org Subject: FW: Complier not giving warnin

Re: [THESLIP] Another chapter ...

2005-03-31 Thread Ryan Mansfield
am i gonna see anyone in burlington on saturday? peace out everyone, thanks for the list Moshe there was a time when it made the work day less lame. later -ryan On Thu, 31 Mar 2005, Marcus Jaynes wrote: Hey Moshe: Thanks for keeping this going for so long! It was once a lively forum, but is no lon

sigsegv in _dl_sym()

2004-12-01 Thread Ryan Mansfield
-o test.so test.c"); void* handle = dlopen("./test.so", RTLD_LAZY); if (!handle) { printf("Cannot open library: %s\n",dlerror()); [EMAIL PROTECTED]:~/503$ gcc -ldl -g reducedgcc.c [EMAIL PROTECTED]:~/503$ ./a.out hello Thanks in advance, Regards, Ryan Mansfield -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

[THESLIP] dates

2004-03-12 Thread Ryan Mansfield
Wow. The list is alive. Nice to hear from you all again. Check it out. I've got a whole boatload of folks touring around with me at the end of the month followin the dudes. We'll be at 03.30, 03.31, 04.01, 04.02, and possibly 04.04. Thats Athens, Cleveland, Columbus, Pittsburgh, and Plains (fyi).

Re: [THESLIP] testing

2004-03-11 Thread Ryan Mansfield
Greetings inhabitantes of slip land i will be on a 4 show tour at the end of the month. come drink and be merry. On Thu, 11 Mar 2004, Moshe Weitzman wrote: > awakening this list from deep slumber Hello world ... > > --- > ** Theslip.net just got better -

Re: [THESLIP] upcoming shows

2004-01-16 Thread Ryan Mansfield
Anyone going to be at the pittsburgh show? I'll be front and center SHAKING MY ASS OFF keep it real -ryan On Fri, 16 Jan 2004, Donny Grieco wrote: > Anyone heard about this. I found this on Jambands. > > The Slip, Nathan Moore Vow to Surprise Me, Mr Davis > > Thursday February 26 will mark the

Re: [THESLIP] The excitement builds...and a question

2003-09-25 Thread Ryan Mansfield
I imagine if the live album isn't available there, it'll be available to order on the website. Welcome to the list. Peace -Ryan On Thu, 25 Sep 2003, Adam Hess wrote: > My first time posting here. First of all, I'd just > like to thank Stanley for his show and album review. > Your quality of wri

[THESLIP] I'm ready 2 shake the rump

2003-09-19 Thread Ryan Mansfield
Hey there peepz I'm going to the 11.06.03 and 11.07.03 shows in charlottesville and norfolk. Anyone gonna be there to hang out and get wild? I'll be there, but i'm flying SOLO. Hope to see some of you folks around there Peace -Ryan --- ** Theslip.net just got

Re: [THESLIP] West Coast Setlists

2003-09-12 Thread Ryan Mansfield
It's nice to see Pictures of Calysto back on the list there. On Fri, 12 Sep 2003, Ted Kartzman wrote: > Setlists for the last few nights... > > I: Ambrosia Drunk >Pictures of Calysto >(Tonight We Leave) Chicago >Something Learned >Improv -> >Ten Fold >The 00's (December's

[THESLIP] ideal set

2003-08-19 Thread Ryan Mansfield
Hi folks i'm gonna dust off a great oldie to drum up some talk on here. its always interesting to see what folks would say. what would your ideal slip set consist of, in order, from beginning to end w/ encores? I'd say: Invocation > Love & Tears > Spice Groove > Honey Melon > Flight of the Peruv

[THESLIP] [Sunlight] "A hundred regrets for lost opportunities" (fwd)

2003-08-14 Thread Ryan Mansfield
Float, Trust, Enjoy Muhammad said no one looks back and regrets leaving the world. What's regretted is how real we though it was! How much we worried about phenomena and how little we considered what moves through form. "Why did I spend my life denying death? Death is the key to truth!" Wh

[THESLIP] 10.25.02

2003-08-14 Thread Ryan Mansfield
Did anyone ever get a copy of the 10.25.02 show in LA at the 1650 club? If anyone has a copy i'd like to get it, I went to that show with Sean. My list is on phishhook: slipping_away thanks -Ryan --- ** Theslip.net just got better - http://www.theslip.net ** W

Re: [THESLIP] 10.25.02

2003-08-14 Thread Ryan Mansfield
Is there any way to rip it onto a couple of blanks? On Thu, 14 Aug 2003, Derek Baker wrote: > If you sign up for Rhapsody, an online streaming music site, you can listen to it > there. > > I know jambase.com offers a free month if you sign up from their page. I have been > signed up for a few m

Re: [THESLIP] RIP - OMVibration Sean

2003-08-14 Thread Ryan Mansfield
Tim & All -- I'm afraid that all of this is very true. On Tuesday night at 10:55pm, they found our brother Sean on the sidewalk on 37th street in North Park after he had been stabbed. He was a close friend to me, almost like a brother. Its all still so shocking and unbelievable. So many nights we

[THESLIP] all quiet?

2003-01-01 Thread Ryan Mansfield
Hey all I've been eagerly awaiting a post about 12.30 & 31. Nothing yet though. Anyone who went know what was played? Namaste -ryan --- ** Theslip.net just got better - http://www.theslip.net ** Web archive at http://email.theslip.net ** To unsubscribe: Send a

[THESLIP] a slip friend in need

2002-12-20 Thread Ryan Mansfield
Hey all U folks I need some help from a kind soul. I want to get my hot little mitts on a show from way back in 1997. Zor's Luminum Particles - Planet of Gorktie Forktoe, District 216, 12.31.1997. Anyone out there who has it: i will grovel for this one. B&P? Trade? Want my left shoe? Any of the a

[THESLIP] ho ho ho merry xmas b&p -- CLOSED

2002-12-20 Thread Ryan Mansfield
Right on. Everyone who's in is in, that's it folks. i'll contact you all with the addy info. peace -ryan --- ** Theslip.net just got better - http://www.theslip.net ** Web archive at http://email.theslip.net ** To unsubscribe: Send an e-mail to [EMAIL PROTECTE

[THESLIP] ho ho ho merry xmas bnp

2002-12-18 Thread Ryan Mansfield
Hey all I'm in the xmas spirit now, feel like spreading some joy. What better way to spread joy than a slip bnp offer? contact me thru email. my list is on phishhook under: slipping_away peace -ryan --- ** How do you enjoy the Pleasant Presence of the Present

Re: [THESLIP] SoftWarmSimpleWonder

2002-12-13 Thread Ryan Mansfield
Right on man. What are ya doin on sunday night? :P On Fri, 13 Dec 2002, Sean Augustad wrote: > Ryan- > You got it fer yer 04.25.01 show with the throat singer and the crowd throat > singin workshop with BAM. That shit was sweeter than cherry pie. > > --- > **

Re: [THESLIP] SoftWarmSimpleWonder

2002-12-13 Thread Ryan Mansfield
This is an amazing song. That's all I can say about it. I'm speechless. Can I get a copy of that show from ya? I have a feeling what that song is about. I believe that you told me a story about some underlying chemistry between brad and a girl that was touring around with them. Go ahead with your t

Re: [THESLIP] fav. slip - retrospect

2002-12-13 Thread Ryan Mansfield
I think that's one of the things that makes this band a magnificent thing. I think all three of these musicians were touched by the hand of god and given the ability to create poetry through musical interpretation. Personally, they've opened my eyes to the magificence of the world around me and the

Re: [THESLIP] fav slip (revised)

2002-12-13 Thread Ryan Mansfield
Okay. I've twisted and turmoiled over this today here's a revised list: Pictures of Callisto Gemini (Kingdom of Light) Eube Ernie Mickey (VOTW) Air is the body So Dope Spice Groove Beetle to the Badlands *AMBROSIA* Tinderbox On Fri, 13 Dec 2002, Sean Augustad wrote: > Nellie Jean > You Might Say

Re: [THESLIP] fav slip

2002-12-13 Thread Ryan Mansfield
I haven't been able to give this song a good listen yet. I was sitting here thinking about the title of the song. I wonder, did one of the guys have a baby born into his life recently? I don't know if this is true or, not, mere speculation. However, I do have a one disc show from the allgood music

Re: [THESLIP] fav slip

2002-12-13 Thread Ryan Mansfield
Oh yeah Retrospectively. I need a copy of this peruvian dragonfly. Anyone have a show with it on there? Someone hook me up! :) Peace thru music -ryan On Fri, 13 Dec 2002, Ben Kamen wrote: > things that kill me when i hear them live: > > flight of the peruvian dragonfly (though i've only heard i

Re: [THESLIP] fav slip

2002-12-13 Thread Ryan Mansfield
Agh! I forgot about the tinderbox! Damnit. :P Like I said before, i would be hard pressed to choose one. I don't think it's humanly possible. I barely was able to pick 5, and I'm starting to think that I should've included the tinderbox. hahaha. i love these guys. -ryan On Fri, 13 Dec 2002, Ben

Re: [THESLIP] fav slip

2002-12-13 Thread Ryan Mansfield
Moral Decay is the ass shakin' romp jam. I luv that one. Air is the body is great too I have spent alot of time thinking about what that song means. It's sort of transcendental, i think. -Ryan On Fri, 13 Dec 2002, Jerel Fish wrote: > Good, fun topic > > For me it'd have to be: > Nellie Jean > Ai

Re: [THESLIP] Fav. slip

2002-12-13 Thread Ryan Mansfield
Kitchen > Gnellie Jean > Alsoa > Nashua Rose > Cumulus > Flight of the Peruvian Dragonfly > Lucky Dragon > Air of the Body > Mt. Zion > Lazilee > Six Sided > > Oops - this one went to 11. > > Ryan Mansfield wrote: > > >Hi all > > > >

[THESLIP] Fav. slip

2002-12-13 Thread Ryan Mansfield
Hi all In intrest of drumming up some talk on the list, i've got a topic for us. It's been done a million times probably. This morning I was thinking about which song I feel is my favorite. It's a hard decision to make. I thought it would be easy. I can't narrow it down to one song even, since the

[THESLIP] question RE: 12/09/01

2002-12-10 Thread Ryan Mansfield
Hi folks. I thought you guys could help me out. I was listening to the 12/09/01 from the AS220 in Providence, RI. In the second set, there is a song sung by Stanley Kimmel in spanish (i think). I wonder if anyone knows the name of this song and has the words to it. I think this song is magnificent