Author Topic: Stupid little patch: manpage typo  (Read 4413 times)

Offline BentFX

  • Multiple posting newcomer
  • *
  • Posts: 18
    • BentFX
Stupid little patch: manpage typo
« on: September 27, 2011, 08:24:12 am »
I don't know the regular drill, but I've recently worked through how to capture a simple diff/patch file.

The last example in the Codeblocks manpage has a simple typo. It references a .cpp file, that the context would suggest was meant to be a .cbp file.

If someone would be interested in commiting the change it would make my first patch file seem just a little bit more special. Like I said I don't know the Codeblocks drill. I have worked with technical drawings and the system for tracking and documenting changes made the little changes like this, the most hateful thing, because the overhead of documenting it actually made the fix non-productive.

From within the trunk folder...
Code
patch -p0 < manpage.patch

http://bentfx.com/manpage.patch
Code
--- src/src/codeblocks.1	2011-09-26 06:59:41.700778880 -0700
+++ src/src/codeblocks.1.fixed 2011-09-26 07:03:11.188781482 -0700
@@ -57,7 +57,7 @@
 .nf
 codeblocks \-\-build \-\-target="Debug" \-\-no\-batch\-window\-close myproject.cbp
 
-Batch rebuild everything in myproject.cpp:
+Batch rebuild everything in myproject.cbp:
 .nf
 codeblocks \-\-rebuild myproject.cbp
 .SH AUTHOR
Whenever I go to Walmart I always request an intrusive pat-down from the greeter. It looks good on his resume, and it makes us all just a little bit safer.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13406
    • Travis build status
Re: Stupid little patch: manpage typo
« Reply #1 on: September 27, 2011, 08:40:06 am »
It was already committed, yesterday.

http://svn.berlios.de/wsvn/codeblocks/?op=log&rev=0&sc=0&isdir=1

rev7466
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline BentFX

  • Multiple posting newcomer
  • *
  • Posts: 18
    • BentFX
Re: Stupid little patch: manpage typo
« Reply #2 on: September 27, 2011, 09:01:11 am »
It was already committed, yesterday.

http://svn.berlios.de/wsvn/codeblocks/?op=log&rev=0&sc=0&isdir=1

rev7466

Thank you Sir!

and Thank You @MortenMacFly
« Last Edit: September 27, 2011, 09:04:17 am by BentFX »
Whenever I go to Walmart I always request an intrusive pat-down from the greeter. It looks good on his resume, and it makes us all just a little bit safer.